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 34ef64f..739278f 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 @@ -7,6 +7,7 @@ namespace Drupal\design_test\Controller; use Drupal\Core\ControllerInterface; +use Symfony\Component\DependencyInjection\ContainerInterface; /** * Controller routines for design_test routes. @@ -16,7 +17,7 @@ class DesignTestController implements ControllerInterface { /** * {@inheritdoc} */ - public static function create() { + public static function create(ContainerInterface $container) { return new static(); }