aboutsummaryrefslogtreecommitdiff
path: root/vendor/phpunit/php-invoker/src/exceptions
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/phpunit/php-invoker/src/exceptions')
-rw-r--r--vendor/phpunit/php-invoker/src/exceptions/Exception.php16
-rw-r--r--vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php16
-rw-r--r--vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php16
3 files changed, 0 insertions, 48 deletions
diff --git a/vendor/phpunit/php-invoker/src/exceptions/Exception.php b/vendor/phpunit/php-invoker/src/exceptions/Exception.php
deleted file mode 100644
index 6ecbf5dd3..000000000
--- a/vendor/phpunit/php-invoker/src/exceptions/Exception.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php declare(strict_types=1);
-/*
- * This file is part of phpunit/php-invoker.
- *
- * (c) Sebastian Bergmann <sebastian@phpunit.de>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-namespace SebastianBergmann\Invoker;
-
-use Throwable;
-
-interface Exception extends Throwable
-{
-}
diff --git a/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php b/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php
deleted file mode 100644
index ef42fd195..000000000
--- a/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php declare(strict_types=1);
-/*
- * This file is part of phpunit/php-invoker.
- *
- * (c) Sebastian Bergmann <sebastian@phpunit.de>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-namespace SebastianBergmann\Invoker;
-
-use RuntimeException;
-
-final class ProcessControlExtensionNotLoadedException extends RuntimeException implements Exception
-{
-}
diff --git a/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php b/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php
deleted file mode 100644
index 2f7631c0e..000000000
--- a/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php declare(strict_types=1);
-/*
- * This file is part of phpunit/php-invoker.
- *
- * (c) Sebastian Bergmann <sebastian@phpunit.de>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-namespace SebastianBergmann\Invoker;
-
-use RuntimeException;
-
-final class TimeoutException extends RuntimeException implements Exception
-{
-}