public static function Handle::register in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Assertion/Handle.php \Drupal\Component\Assertion\Handle::register()
Ensures exceptions are thrown when an assertion fails.
4 calls to Handle::register()
- bootstrap.php in core/
tests/ bootstrap.php - Autoloader for Drupal PHPUnit testing.
- DrupalKernel::bootEnvironment in core/
lib/ Drupal/ Core/ DrupalKernel.php - Setup a consistent PHP environment.
- example.settings.local.php in sites/
example.settings.local.php - Local development override configuration feature.
- example.settings.local.php in core/
assets/ scaffold/ files/ example.settings.local.php - Local development override configuration feature.
File
- core/
lib/ Drupal/ Component/ Assertion/ Handle.php, line 17
Class
- Handle
- Handler for runtime assertion failures.
Namespace
Drupal\Component\AssertionCode
public static function register() {
// Since we're using exceptions, turn error warnings off.
assert_options(ASSERT_WARNING, FALSE);
// Turn exception throwing on.
assert_options(ASSERT_EXCEPTION, TRUE);
}