From b16ac70d3e1d4be7e812ced67df5fae55f62f55f Mon Sep 17 00:00:00 2001 From: Alexander Rhodes <ironsizide@787980.no-reply.drupal.org> Date: Tue, 28 Feb 2017 16:07:24 -0500 Subject: [PATCH] Fixes a dependency injecties service reference in MappedObjectForm --- .../salesforce_mapping/src/Form/MappedObjectForm.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/salesforce_mapping/src/Form/MappedObjectForm.php b/modules/salesforce_mapping/src/Form/MappedObjectForm.php index f62b3f64..fdcf438c 100644 --- a/modules/salesforce_mapping/src/Form/MappedObjectForm.php +++ b/modules/salesforce_mapping/src/Form/MappedObjectForm.php @@ -5,13 +5,14 @@ namespace Drupal\salesforce_mapping\Form; use Drupal\Core\Entity\ContentEntityForm; use Drupal\Core\Entity\EntityManagerInterface; use Drupal\Core\Form\FormStateInterface; +use Drupal\Core\Logger\LoggerChannelFactory; use Drupal\Core\Routing\RouteMatchInterface; +use Drupal\Core\Utility\Error; +use Drupal\salesforce_mapping\SalesforceMappingStorage; use Drupal\salesforce\Exception; use Drupal\salesforce\Rest\RestClient; -use Drupal\salesforce_mapping\SalesforceMappingStorage; -use Symfony\Component\DependencyInjection\ContainerInterface; -use Drupal\Core\Utility\Error; use Psr\Log\LogLevel; +use Symfony\Component\DependencyInjection\ContainerInterface; /** * Salesforce Mapping Form base. @@ -81,12 +82,12 @@ class MappedObjectForm extends ContentEntityForm { * The entity manager. * @param RestClient $rest * The Rest Client. - * @param LoggerChannelFactoryInterface $logger_factory + * @param LoggerChannelFactory $logger_factory * Logging service factory. * @param RouteMatchInterface $route_match * Route matching service. */ - public function __construct(EntityManagerInterface $entity_manager, RestClient $rest, LoggerChannelFactoryInterface $logger_factory, RouteMatchInterface $route_match) { + public function __construct(EntityManagerInterface $entity_manager, RestClient $rest, LoggerChannelFactory $logger_factory, RouteMatchInterface $route_match) { $this->entityManager = $entity_manager; $this->mapping_storage = $entity_manager->getStorage('salesforce_mapping'); $this->rest = $rest; -- GitLab