You are here

class MockContainerAware in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockContainerAware

Hierarchy

  • class \Drupal\Tests\Core\Controller\MockContainerAware implements \Symfony\Component\DependencyInjection\ContainerAwareInterface uses \Symfony\Component\DependencyInjection\ContainerAwareTrait

Expanded class hierarchy of MockContainerAware

File

core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php, line 236
Contains \Drupal\Tests\Core\Controller\ControllerResolverTest.

Namespace

Drupal\Tests\Core\Controller
View source
class MockContainerAware implements ContainerAwareInterface {
  use ContainerAwareTrait;
  public function getResult() {
    return 'This is container aware.';
  }

}

Members