Files
apimacro/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php

18 lines
368 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php declare(strict_types=1);
namespace PhpParser\ErrorHandler;
use PhpParser\Error;
use PhpParser\ErrorHandler;
/**
* Error handler that handles all errors by throwing them.
*
* This is the default strategy used by all components.
*/
2024-05-17 12:24:19 +00:00
class Throwing implements ErrorHandler {
public function handleError(Error $error): void {
2024-05-07 12:17:25 +02:00
throw $error;
}
}