diff --git a/core/lib/Drupal/Core/Entity/Controller/EntityViewController.php b/core/lib/Drupal/Core/Entity/Controller/EntityViewController.php index 5738052..4b185c9 100644 --- a/core/lib/Drupal/Core/Entity/Controller/EntityViewController.php +++ b/core/lib/Drupal/Core/Entity/Controller/EntityViewController.php @@ -15,7 +15,7 @@ /** * Defines a generic controller to render a single entity. */ -class EntityViewController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class EntityViewController implements ContainerInjectionInterface { /** * The entity manager diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php b/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php index b7e93e2..e809abc 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php @@ -22,7 +22,7 @@ /** * Returns responses for aggregator module routes. */ -class AggregatorController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class AggregatorController implements ContainerInjectionInterface { /** * Stores the Entity manager. diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Controller/CustomBlockController.php b/core/modules/block/custom_block/lib/Drupal/custom_block/Controller/CustomBlockController.php index f8300cd..b23fc8a 100644 --- a/core/modules/block/custom_block/lib/Drupal/custom_block/Controller/CustomBlockController.php +++ b/core/modules/block/custom_block/lib/Drupal/custom_block/Controller/CustomBlockController.php @@ -14,7 +14,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\HttpFoundation\Request; -class CustomBlockController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class CustomBlockController implements ContainerInjectionInterface { /** * The entity manager. diff --git a/core/modules/book/lib/Drupal/book/Controller/BookController.php b/core/modules/book/lib/Drupal/book/Controller/BookController.php index 9dabd45..7b64e82 100644 --- a/core/modules/book/lib/Drupal/book/Controller/BookController.php +++ b/core/modules/book/lib/Drupal/book/Controller/BookController.php @@ -14,7 +14,7 @@ /** * Controller routines for book routes. */ -class BookController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class BookController implements ContainerInjectionInterface { /** * Book Manager Service. diff --git a/core/modules/comment/lib/Drupal/comment/Controller/CommentController.php b/core/modules/comment/lib/Drupal/comment/Controller/CommentController.php index be3be99..f7ee85b 100644 --- a/core/modules/comment/lib/Drupal/comment/Controller/CommentController.php +++ b/core/modules/comment/lib/Drupal/comment/Controller/CommentController.php @@ -23,7 +23,7 @@ * * @see \Drupal\comment\Entity\Comment. */ -class CommentController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class CommentController implements ContainerInjectionInterface { /** * The url generator service. diff --git a/core/modules/config/lib/Drupal/config/Controller/ConfigController.php b/core/modules/config/lib/Drupal/config/Controller/ConfigController.php index 4e5c53f..d476931 100644 --- a/core/modules/config/lib/Drupal/config/Controller/ConfigController.php +++ b/core/modules/config/lib/Drupal/config/Controller/ConfigController.php @@ -18,7 +18,7 @@ /** * Returns responses for config module routes. */ -class ConfigController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class ConfigController implements ContainerInjectionInterface { /** * The target storage. diff --git a/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php b/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php index 44aec88..a271655 100644 --- a/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php +++ b/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php @@ -20,7 +20,7 @@ /** * Returns responses for dblog routes. */ -class DbLogController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class DbLogController implements ContainerInjectionInterface { /** * The database service. diff --git a/core/modules/forum/lib/Drupal/forum/Controller/ForumController.php b/core/modules/forum/lib/Drupal/forum/Controller/ForumController.php index 1627932..2a8a694 100644 --- a/core/modules/forum/lib/Drupal/forum/Controller/ForumController.php +++ b/core/modules/forum/lib/Drupal/forum/Controller/ForumController.php @@ -16,7 +16,7 @@ /** * Controller routines for forum routes. */ -class ForumController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class ForumController implements ContainerInjectionInterface { /** * Entity Manager Service. diff --git a/core/modules/help/lib/Drupal/help/Controller/HelpController.php b/core/modules/help/lib/Drupal/help/Controller/HelpController.php index a88070e..e41e6d5 100644 --- a/core/modules/help/lib/Drupal/help/Controller/HelpController.php +++ b/core/modules/help/lib/Drupal/help/Controller/HelpController.php @@ -14,7 +14,7 @@ /** * Controller routines for help routes. */ -class HelpController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class HelpController implements ContainerInjectionInterface { /** * Stores the module handler. diff --git a/core/modules/locale/lib/Drupal/locale/Controller/LocaleController.php b/core/modules/locale/lib/Drupal/locale/Controller/LocaleController.php index ca1d672..4549025 100644 --- a/core/modules/locale/lib/Drupal/locale/Controller/LocaleController.php +++ b/core/modules/locale/lib/Drupal/locale/Controller/LocaleController.php @@ -14,7 +14,7 @@ /** * Return response for manual check translations. */ -class LocaleController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class LocaleController implements ContainerInjectionInterface { /** * The module handler. diff --git a/core/modules/menu/lib/Drupal/menu/Controller/MenuController.php b/core/modules/menu/lib/Drupal/menu/Controller/MenuController.php index 8ad2de5..e1087bb 100644 --- a/core/modules/menu/lib/Drupal/menu/Controller/MenuController.php +++ b/core/modules/menu/lib/Drupal/menu/Controller/MenuController.php @@ -18,7 +18,7 @@ /** * Returns responses for Menu routes. */ -class MenuController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class MenuController implements ContainerInjectionInterface { /** * The menu link storage. diff --git a/core/modules/overlay/lib/Drupal/overlay/Controller/OverlayController.php b/core/modules/overlay/lib/Drupal/overlay/Controller/OverlayController.php index 38e5181..98d568b 100644 --- a/core/modules/overlay/lib/Drupal/overlay/Controller/OverlayController.php +++ b/core/modules/overlay/lib/Drupal/overlay/Controller/OverlayController.php @@ -20,7 +20,7 @@ * @todo keeping the controllerInterface since we should be injecting * something to take care of the overlay_render_region() call. */ -class OverlayController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class OverlayController implements ContainerInjectionInterface { /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/common_test/lib/Drupal/common_test/Controller/CommonTestController.php b/core/modules/system/tests/modules/common_test/lib/Drupal/common_test/Controller/CommonTestController.php index 2692060..b8e103f 100644 --- a/core/modules/system/tests/modules/common_test/lib/Drupal/common_test/Controller/CommonTestController.php +++ b/core/modules/system/tests/modules/common_test/lib/Drupal/common_test/Controller/CommonTestController.php @@ -13,7 +13,7 @@ /** * Controller routines for common_test routes. */ -class CommonTestController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class CommonTestController implements ContainerInjectionInterface { /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/design_test/lib/Drupal/design_test/Controller/DesignTestController.php b/core/modules/system/tests/modules/design_test/lib/Drupal/design_test/Controller/DesignTestController.php index 5b28f01..c0694cb 100644 --- a/core/modules/system/tests/modules/design_test/lib/Drupal/design_test/Controller/DesignTestController.php +++ b/core/modules/system/tests/modules/design_test/lib/Drupal/design_test/Controller/DesignTestController.php @@ -11,7 +11,7 @@ /** * Controller routines for design_test routes. */ -class DesignTestController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class DesignTestController implements ContainerInjectionInterface { /** * {@inheritdoc} diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TermAutocompleteController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TermAutocompleteController.php index 31ed191..8588fb0 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TermAutocompleteController.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TermAutocompleteController.php @@ -22,7 +22,7 @@ /** * Returns autocomplete responses for taxonomy terms. */ -class TermAutocompleteController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class TermAutocompleteController implements ContainerInjectionInterface { /** * Taxonomy term entity query interface. diff --git a/core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Controller/TourTestController.php b/core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Controller/TourTestController.php index aa97264..126be87 100644 --- a/core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Controller/TourTestController.php +++ b/core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Controller/TourTestController.php @@ -12,7 +12,7 @@ /** * Controller routines for tour_test routes. */ -class TourTestController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class TourTestController implements ContainerInjectionInterface { /** * {@inheritdoc} diff --git a/core/modules/user/lib/Drupal/user/Controller/UserAutocompleteController.php b/core/modules/user/lib/Drupal/user/Controller/UserAutocompleteController.php index 2ee4407..6021843 100644 --- a/core/modules/user/lib/Drupal/user/Controller/UserAutocompleteController.php +++ b/core/modules/user/lib/Drupal/user/Controller/UserAutocompleteController.php @@ -16,7 +16,7 @@ /** * Controller routines for taxonomy user routes. */ -class UserAutocompleteController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class UserAutocompleteController implements ContainerInjectionInterface { /** * The user autocomplete helper class to find matching user names. diff --git a/core/modules/views/lib/Drupal/views/Controller/ViewAjaxController.php b/core/modules/views/lib/Drupal/views/Controller/ViewAjaxController.php index 4afe07f..dc68e51 100644 --- a/core/modules/views/lib/Drupal/views/Controller/ViewAjaxController.php +++ b/core/modules/views/lib/Drupal/views/Controller/ViewAjaxController.php @@ -21,7 +21,7 @@ /** * Defines a controller to load a view via AJAX. */ -class ViewAjaxController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class ViewAjaxController implements ContainerInjectionInterface { /** * The entity storage controller for views. diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php b/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php index a2be198..59ed016 100644 --- a/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php +++ b/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php @@ -25,7 +25,7 @@ /** * Returns responses for Views UI routes. */ -class ViewsUIController implements \Drupal\Core\DependencyInjection\ContainerInjectionInterface { +class ViewsUIController implements ContainerInjectionInterface { /** * Stores the Entity manager.