You are here

public function ErrorTestController::generateFatals in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php \Drupal\error_test\Controller\ErrorTestController::generateFatals()

Generate fatals to test the error handler.

1 string reference to 'ErrorTestController::generateFatals'
error_test.routing.yml in core/modules/system/tests/modules/error_test/error_test.routing.yml
core/modules/system/tests/modules/error_test/error_test.routing.yml

File

core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php, line 58

Class

ErrorTestController
Controller routines for error_test routes.

Namespace

Drupal\error_test\Controller

Code

public function generateFatals() {
  $function = function (array $test) {
  };
  $function("test-string");
  return [];
}