You are here

public function ErrorContainer::get in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Bootstrap/ErrorContainer.php \Drupal\FunctionalTests\Bootstrap\ErrorContainer::get()
  2. 9 core/tests/Drupal/FunctionalTests/Bootstrap/ErrorContainer.php \Drupal\FunctionalTests\Bootstrap\ErrorContainer::get()

File

core/tests/Drupal/FunctionalTests/Bootstrap/ErrorContainer.php, line 16

Class

ErrorContainer
Container base class which triggers an error.

Namespace

Drupal\FunctionalTests\Bootstrap

Code

public function get($id, $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE) : ?object {
  if ($id === 'http_kernel') {

    // Enforce a recoverable error.
    $callable = function (ErrorContainer $container) {
    };
    return $callable(1);
  }
  return parent::get($id, $invalidBehavior);
}