summaryrefslogtreecommitdiff
path: root/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php')
-rw-r--r--vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php b/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php
new file mode 100644
index 000000000..aeee989b1
--- /dev/null
+++ b/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php
@@ -0,0 +1,18 @@
+<?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.
+ */
+class Throwing implements ErrorHandler
+{
+ public function handleError(Error $error) {
+ throw $error;
+ }
+}