function ErrorTestController::generateFatalErrors
Same name in other branches
- 10 core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php \Drupal\error_test\Controller\ErrorTestController::generateFatalErrors()
Generate fatal errors to test the error handler.
1 string reference to 'ErrorTestController::generateFatalErrors'
- 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 63
Class
- ErrorTestController
- Controller routines for error_test routes.
Namespace
Drupal\error_test\ControllerCode
public function generateFatalErrors() {
$function = function (array $test) {
};
// Use an incorrect parameter type, string, for testing a fatal error.
$function("test-string");
return [];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.