diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php b/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php index 96ee221..6d376af 100644 --- a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php +++ b/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php @@ -7,11 +7,11 @@ namespace Drupal\field_ui; +use Drupal\Core\Entity\EntityManager; +use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\field_ui\OverviewBase; use Symfony\Component\DependencyInjection\ContainerInterface; use Drupal\field\Plugin\Core\Entity\Field; -use Drupal\Core\Extension\ModuleHandlerInterface; -use Drupal\Core\Entity\EntityManager; /** * Field UI field overview form. @@ -31,7 +31,9 @@ class FieldOverview extends OverviewBase { * Constructs a new field overview. * * @param \Drupal\Core\Entity\EntityManager $entity_manager + * The entity manager. * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler + * The module handler to invoke hooks on. */ public function __construct(EntityManager $entity_manager, ModuleHandlerInterface $module_handler) { $this->entityManager = $entity_manager;