Skip to content

Commit

Permalink
Merge branch 'apigee:3.x' into dependabot_express
Browse files Browse the repository at this point in the history
  • Loading branch information
shishir-intelli authored Sep 24, 2024
2 parents 61efed7 + 841bf9f commit 56fa3ca
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace Drupal\apigee_kickstart_customizer\EventSubscriber;

use Drupal\apigee_kickstart_customizer\CustomizerInterface;
use Drupal\Core\Config\ConfigCrudEvent;
use Drupal\Core\Config\ConfigEvents;
use Drupal\apigee_kickstart_customizer\CustomizerInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

namespace Drupal\apigee_kickstart_customizer\Form;

use Drupal\apigee_kickstart_customizer\CustomizerInterface;
use Drupal\Core\Ajax\AjaxFormHelperTrait;
use Drupal\Core\Ajax\AjaxResponse;
use Drupal\Core\Ajax\RedirectCommand;
Expand All @@ -29,6 +28,7 @@
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Routing\RedirectDestinationInterface;
use Drupal\Core\Url;
use Drupal\apigee_kickstart_customizer\CustomizerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace Drupal\apigee_kickstart_enhancement;

use Drupal\apigee_edge\Entity\AppInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\apigee_edge\Entity\AppInterface;

/**
* Defines the 'apigee_kickstart.enhancer` service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@

namespace Drupal\apigee_kickstart_enhancement\Plugin\Condition;

use Drupal\block\BlockInterface;
use Drupal\block_content\BlockContentUuidLookup;
use Drupal\Core\Condition\ConditionPluginBase;
use Drupal\Core\Entity\EntityFormInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\block\BlockInterface;
use Drupal\block_content\BlockContentUuidLookup;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

namespace Drupal\apigee_kickstart_enhancement\Routing;

use Drupal\Core\Routing\RouteSubscriberBase;
use Drupal\apigee_edge\Entity\ListBuilder\DeveloperAppListBuilderForDeveloper;
use Drupal\apigee_edge_teams\Entity\ListBuilder\TeamAppListByTeam;
use Drupal\apigee_kickstart_enhancement\ApigeeKickStartEnhancerInterface;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Installer/ApigeeDevportalKickstartTasksManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace Drupal\apigee_devportal_kickstart\Installer;

use Drupal\Core\Form\FormState;
use Drupal\apigee_m10n_add_credit\AddCreditConfig;
use Drupal\commerce_price\Price;
use Drupal\Core\Form\FormState;
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Installer/Form/ApigeeEdgeConfigurationForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace Drupal\apigee_devportal_kickstart\Installer\Form;

use Drupal\apigee_edge\Form\AuthenticationForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\apigee_edge\Form\AuthenticationForm;

/**
* Configuration form for Apigee Edge.
Expand Down
8 changes: 4 additions & 4 deletions src/Installer/Form/ApigeeMonetizationConfigurationForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
use CommerceGuys\Addressing\AddressFormat\AddressField;
use CommerceGuys\Addressing\Subdivision\SubdivisionRepositoryInterface;
use CommerceGuys\Intl\Currency\CurrencyRepository;
use Drupal\address\FieldHelper;
use Drupal\address\LabelHelper;
use Drupal\apigee_edge\SDKConnectorInterface;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Language\LanguageManagerInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\address\FieldHelper;
use Drupal\address\LabelHelper;
use Drupal\apigee_edge\SDKConnectorInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
Expand Down Expand Up @@ -114,7 +114,7 @@ class ApigeeMonetizationConfigurationForm extends FormBase {
* @param \CommerceGuys\Addressing\Subdivision\SubdivisionRepositoryInterface $subdivision_repository
* The subdivision repository.
*/
public function __construct(SDKConnectorInterface $sdk_connector, LanguageManagerInterface $language_manager, SubdivisionRepositoryInterface $subdivision_repository = NULL) {
public function __construct(SDKConnectorInterface $sdk_connector, LanguageManagerInterface $language_manager, ?SubdivisionRepositoryInterface $subdivision_repository = NULL) {
$this->sdkConnector = $sdk_connector;
$this->languageManager = $language_manager;
$this->subdivisionRepository = $subdivision_repository;
Expand Down
2 changes: 1 addition & 1 deletion themes/custom/apigee_kickstart/includes/form.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
* Theme and preprocess functions for forms.
*/

use Drupal\apigee_m10n_add_credit\AddCreditConfig;
use Drupal\Component\Utility\Html;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Link;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Url;
use Drupal\apigee_m10n_add_credit\AddCreditConfig;

/**
* Implements hook_theme_suggestions_HOOK_alter().
Expand Down

0 comments on commit 56fa3ca

Please sign in to comment.