4 | Below are the source code lines that represent each code branch as identified by Xdebug. Please note a branch is not
5 | necessarily coterminous with a line, a line may contain multiple branches and therefore show up more than once.
6 | Please also be aware that some branches may be implicit rather than explicit, e.g. an if statement
7 | always has an else as part of its logical flow even if you didn't write one.
8 |
4 | Below are the source code lines that represent each code path as identified by Xdebug. Please note a path is not
5 | necessarily coterminous with a line, a line may contain multiple paths and therefore show up more than once.
6 | Please also be aware that some paths may include implicit rather than explicit branches, e.g. an if statement
7 | always has an else as part of its logical flow even if you didn't write one.
8 |
9 | {{paths}}
10 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Report\Xml;
11 |
12 | /**
13 | * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
14 | */
15 | final class Directory extends Node
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/TestSize/Known.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Test\TestSize;
11 |
12 | /**
13 | * @immutable
14 | */
15 | abstract class Known extends TestSize
16 | {
17 | public function isKnown(): true
18 | {
19 | return true;
20 | }
21 |
22 | abstract public function isGreaterThan(self $other): bool;
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/TestSize/Unknown.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Test\TestSize;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final class Unknown extends TestSize
16 | {
17 | public function isUnknown(): true
18 | {
19 | return true;
20 | }
21 |
22 | public function asString(): string
23 | {
24 | return 'unknown';
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/TestStatus/Failure.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Test\TestStatus;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final class Failure extends Known
16 | {
17 | public function isFailure(): true
18 | {
19 | return true;
20 | }
21 |
22 | public function asString(): string
23 | {
24 | return 'failure';
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/TestStatus/Known.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Test\TestStatus;
11 |
12 | /**
13 | * @immutable
14 | */
15 | abstract class Known extends TestStatus
16 | {
17 | public function isKnown(): true
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/TestStatus/Success.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Test\TestStatus;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final class Success extends Known
16 | {
17 | public function isSuccess(): true
18 | {
19 | return true;
20 | }
21 |
22 | public function asString(): string
23 | {
24 | return 'success';
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/TestStatus/Unknown.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeCoverage\Test\TestStatus;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final class Unknown extends TestStatus
16 | {
17 | public function isUnknown(): true
18 | {
19 | return true;
20 | }
21 |
22 | public function asString(): string
23 | {
24 | return 'unknown';
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-invoker/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Invoker;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Invoker;
11 |
12 | use RuntimeException;
13 |
14 | final class TimeoutException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-text-template/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-text-template/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-text-template/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Template;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Template;
11 |
12 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-text-template/src/exceptions/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Template;
11 |
12 | use InvalidArgumentException;
13 |
14 | final class RuntimeException extends InvalidArgumentException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-timer/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Timer;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Timer;
11 |
12 | use LogicException;
13 |
14 | final class NoActiveTimerException extends LogicException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Timer;
11 |
12 | use RuntimeException;
13 |
14 | final class TimeSinceStartOfRequestNotAvailableException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Application/FinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Application;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface FinishedSubscriber extends Subscriber
18 | {
19 | public function notify(Finished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Application/StartedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Application;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface StartedSubscriber extends Subscriber
18 | {
19 | public function notify(Started $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Event.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | */
15 | interface Event
16 | {
17 | public function telemetryInfo(): Telemetry\Info;
18 |
19 | public function asString(): string;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/ComparatorRegisteredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ComparatorRegisteredSubscriber extends Subscriber
18 | {
19 | public function notify(ComparatorRegistered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalledSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface AfterTestMethodCalledSubscriber extends Subscriber
18 | {
19 | public function notify(AfterTestMethodCalled $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErroredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface AfterTestMethodErroredSubscriber extends Subscriber
18 | {
19 | public function notify(AfterTestMethodErrored $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalledSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface BeforeTestMethodCalledSubscriber extends Subscriber
18 | {
19 | public function notify(BeforeTestMethodCalled $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalledSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PostConditionCalledSubscriber extends Subscriber
18 | {
19 | public function notify(PostConditionCalled $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErroredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PostConditionErroredSubscriber extends Subscriber
18 | {
19 | public function notify(PostConditionErrored $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PostConditionFinishedSubscriber extends Subscriber
18 | {
19 | public function notify(PostConditionFinished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalledSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PreConditionCalledSubscriber extends Subscriber
18 | {
19 | public function notify(PreConditionCalled $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErroredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PreConditionErroredSubscriber extends Subscriber
18 | {
19 | public function notify(PreConditionErrored $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PreConditionFinishedSubscriber extends Subscriber
18 | {
19 | public function notify(PreConditionFinished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ConsideredRiskySubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ConsideredRiskySubscriber extends Subscriber
18 | {
19 | public function notify(ConsideredRisky $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/DeprecationTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface DeprecationTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(DeprecationTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ErrorTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ErrorTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(ErrorTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/NoticeTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface NoticeTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(NoticeTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpDeprecationTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PhpDeprecationTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(PhpDeprecationTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpNoticeTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PhpNoticeTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(PhpNoticeTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpWarningTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PhpWarningTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(PhpWarningTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitErrorTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PhpunitErrorTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(PhpunitErrorTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PhpunitWarningTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(PhpunitWarningTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/WarningTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface WarningTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(WarningTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/FinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface FinishedSubscriber extends Subscriber
18 | {
19 | public function notify(Finished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PreparationFailedSubscriber extends Subscriber
18 | {
19 | public function notify(PreparationFailed $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationStartedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PreparationStartedSubscriber extends Subscriber
18 | {
19 | public function notify(PreparationStarted $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PreparedSubscriber extends Subscriber
18 | {
19 | public function notify(Prepared $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/ErroredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ErroredSubscriber extends Subscriber
18 | {
19 | public function notify(Errored $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/FailedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface FailedSubscriber extends Subscriber
18 | {
19 | public function notify(Failed $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/MarkedIncompleteSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface MarkedIncompleteSubscriber extends Subscriber
18 | {
19 | public function notify(MarkedIncomplete $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/PassedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PassedSubscriber extends Subscriber
18 | {
19 | public function notify(Passed $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/SkippedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface SkippedSubscriber extends Subscriber
18 | {
19 | public function notify(Skipped $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/PrintedUnexpectedOutputSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface PrintedUnexpectedOutputSubscriber extends Subscriber
18 | {
19 | public function notify(PrintedUnexpectedOutput $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectCreatedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface MockObjectCreatedSubscriber extends Subscriber
18 | {
19 | public function notify(MockObjectCreated $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestProxyCreatedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface TestProxyCreatedSubscriber extends Subscriber
18 | {
19 | public function notify(TestProxyCreated $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubCreatedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface TestStubCreatedSubscriber extends Subscriber
18 | {
19 | public function notify(TestStubCreated $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface BootstrapFinishedSubscriber extends Subscriber
18 | {
19 | public function notify(BootstrapFinished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessFinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ChildProcessFinishedSubscriber extends Subscriber
18 | {
19 | public function notify(ChildProcessFinished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessStartedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ChildProcessStartedSubscriber extends Subscriber
18 | {
19 | public function notify(ChildProcessStarted $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ConfiguredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ConfiguredSubscriber extends Subscriber
18 | {
19 | public function notify(Configured $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/DeprecationTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface DeprecationTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(DeprecationTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/EventFacadeSealedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface EventFacadeSealedSubscriber extends Subscriber
18 | {
19 | public function notify(EventFacadeSealed $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionAbortedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ExecutionAbortedSubscriber extends Subscriber
18 | {
19 | public function notify(ExecutionAborted $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionFinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ExecutionFinishedSubscriber extends Subscriber
18 | {
19 | public function notify(ExecutionFinished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionStartedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ExecutionStartedSubscriber extends Subscriber
18 | {
19 | public function notify(ExecutionStarted $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionBootstrappedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface ExtensionBootstrappedSubscriber extends Subscriber
18 | {
19 | public function notify(ExtensionBootstrapped $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/FinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface FinishedSubscriber extends Subscriber
18 | {
19 | public function notify(Finished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StartedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface StartedSubscriber extends Subscriber
18 | {
19 | public function notify(Started $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggeredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestRunner;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface WarningTriggeredSubscriber extends Subscriber
18 | {
19 | public function notify(WarningTriggered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestSuite/FilteredSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface FilteredSubscriber extends Subscriber
18 | {
19 | public function notify(Filtered $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestSuite/FinishedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface FinishedSubscriber extends Subscriber
18 | {
19 | public function notify(Finished $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestSuite/LoadedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface LoadedSubscriber extends Subscriber
18 | {
19 | public function notify(Loaded $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestSuite/SkippedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface SkippedSubscriber extends Subscriber
18 | {
19 | public function notify(Skipped $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestSuite/SortedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface SortedSubscriber extends Subscriber
18 | {
19 | public function notify(Sorted $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Events/TestSuite/StartedSubscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | use PHPUnit\Event\Subscriber;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface StartedSubscriber extends Subscriber
18 | {
19 | public function notify(Started $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/EventAlreadyAssignedException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class EventAlreadyAssignedException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/EventFacadeIsSealedException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class EventFacadeIsSealedException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | interface Exception extends \PHPUnit\Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/InvalidArgumentException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/InvalidEventException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class InvalidEventException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/InvalidSubscriberException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class InvalidSubscriberException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/MapError.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class MapError extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/NoComparisonFailureException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Test;
11 |
12 | use PHPUnit\Event\Exception;
13 | use RuntimeException;
14 |
15 | /**
16 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
17 | */
18 | final class NoComparisonFailureException extends RuntimeException implements Exception
19 | {
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/NoDataSetFromDataProviderException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestData;
11 |
12 | use PHPUnit\Event\Exception;
13 | use RuntimeException;
14 |
15 | /**
16 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
17 | */
18 | final class NoDataSetFromDataProviderException extends RuntimeException implements Exception
19 | {
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/NoPreviousThrowableException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class NoPreviousThrowableException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class RuntimeException extends \RuntimeException implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/SubscriberTypeAlreadyRegisteredException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class SubscriberTypeAlreadyRegisteredException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class UnknownEventException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventTypeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class UnknownEventTypeException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class UnknownSubscriberException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberTypeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class UnknownSubscriberTypeException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Subscriber.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | */
15 | interface Subscriber
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Tracer.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Tracer;
11 |
12 | use PHPUnit\Event\Event;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Tracer
18 | {
19 | public function trace(Event $event): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Value/Telemetry/StopWatch.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\Telemetry;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface StopWatch
18 | {
19 | public function current(): HRTime;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteWithName.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Event\TestSuite;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class TestSuiteWithName extends TestSuite
18 | {
19 | public function isWithName(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/CoversNothing.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
20 | final readonly class CoversNothing
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/DisableReturnValueGenerationForTestDoubles.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS)]
20 | final readonly class DisableReturnValueGenerationForTestDoubles
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/DoesNotPerformAssertions.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
20 | final readonly class DoesNotPerformAssertions
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/IgnoreDeprecations.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
20 | final readonly class IgnoreDeprecations
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/Large.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS)]
20 | final readonly class Large
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/Medium.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS)]
20 | final readonly class Medium
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/RunClassInSeparateProcess.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS)]
20 | final readonly class RunClassInSeparateProcess
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/RunInSeparateProcess.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_METHOD)]
20 | final readonly class RunInSeparateProcess
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/RunTestsInSeparateProcesses.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS)]
20 | final readonly class RunTestsInSeparateProcesses
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/Small.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_CLASS)]
20 | final readonly class Small
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/Test.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_METHOD)]
20 | final readonly class Test
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Attributes/WithoutErrorHandler.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\Attributes;
11 |
12 | use Attribute;
13 |
14 | /**
15 | * @immutable
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | #[Attribute(Attribute::TARGET_METHOD)]
20 | final readonly class WithoutErrorHandler
21 | {
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | class CodeCoverageException extends Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/EmptyStringException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class EmptyStringException extends InvalidArgumentException
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTest.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | use Throwable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | *
17 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
18 | */
19 | interface IncompleteTest extends Throwable
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | abstract class InvalidArgumentException extends Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class InvalidCoversTargetException extends CodeCoverageException
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class InvalidDataProviderException extends Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class NoChildTestSuiteException extends Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/ProcessIsolationException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class ProcessIsolationException extends Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTest.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | use Throwable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | *
17 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
18 | */
19 | interface SkippedTest extends Throwable
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\MockObject;
11 |
12 | use Throwable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | *
17 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
18 | */
19 | interface Exception extends Throwable
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\MockObject;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class RuntimeException extends \RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/deprecation.tpl:
--------------------------------------------------------------------------------
1 |
2 | @trigger_error({deprecation}, E_USER_DEPRECATED);
3 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/doubled_static_method.tpl:
--------------------------------------------------------------------------------
1 |
2 | {modifier} function {reference}{method_name}({arguments_decl}){return_declaration}
3 | {
4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object');
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/intersection.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | interface {intersection} extends {interfaces}
4 | {
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/test_double_class.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | {prologue}{class_declaration}
4 | {
5 | {use_statements}{property_hooks}{methods}}{epilogue}
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/trait_class.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | {prologue}class {class_name}
4 | {
5 | use {trait_name};
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/wsdl_class.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | {namespace}class {class_name} extends \SoapClient
4 | {
5 | public function __construct($wsdl, array $options)
6 | {
7 | parent::__construct('{wsdl}', $options);
8 | }
9 | {methods}}
10 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/wsdl_method.tpl:
--------------------------------------------------------------------------------
1 |
2 | public function {method_name}({arguments})
3 | {
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/Stub.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\MockObject;
11 |
12 | use PHPUnit\Framework\MockObject\Builder\InvocationStubber;
13 |
14 | /**
15 | * @method InvocationStubber method($constraint)
16 | *
17 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
18 | */
19 | interface Stub
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Framework/Test.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework;
11 |
12 | use Countable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Test extends Countable
18 | {
19 | public function run(): void;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/CoversNothing.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class CoversNothing extends Metadata
18 | {
19 | public function isCoversNothing(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/DoesNotPerformAssertions.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class DoesNotPerformAssertions extends Metadata
18 | {
19 | public function isDoesNotPerformAssertions(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | interface Exception extends \PHPUnit\Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/Exception/InvalidVersionRequirementException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | use RuntimeException;
13 |
14 | final class InvalidVersionRequirementException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/Exception/NoVersionRequirementException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | use RuntimeException;
13 |
14 | final class NoVersionRequirementException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/IgnoreDeprecations.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class IgnoreDeprecations extends Metadata
18 | {
19 | public function isIgnoreDeprecations(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/RunClassInSeparateProcess.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class RunClassInSeparateProcess extends Metadata
18 | {
19 | public function isRunClassInSeparateProcess(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/RunInSeparateProcess.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class RunInSeparateProcess extends Metadata
18 | {
19 | public function isRunInSeparateProcess(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/Test.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class Test extends Metadata
18 | {
19 | public function isTest(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Metadata/WithoutErrorHandler.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Metadata;
11 |
12 | /**
13 | * @immutable
14 | *
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final readonly class WithoutErrorHandler extends Metadata
18 | {
19 | public function isWithoutErrorHandler(): true
20 | {
21 | return true;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Runner/Exception/ErrorException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Runner;
11 |
12 | use Error;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | *
17 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
18 | */
19 | final class ErrorException extends Error implements Exception
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Runner/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Runner;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Exception extends \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/TextUI/Command/Command.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\TextUI\Command;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Command
18 | {
19 | public function execute(): Result;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\TextUI\Configuration;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Exception extends \PHPUnit\TextUI\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/TextUI/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\TextUI;
11 |
12 | use Throwable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | *
17 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
18 | */
19 | interface Exception extends Throwable
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\TextUI;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class RuntimeException extends \RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Util/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Util;
11 |
12 | use Throwable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
16 | *
17 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
18 | */
19 | interface Exception extends Throwable
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/cli-parser/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CliParser;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/ClassMethodUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class ClassMethodUnit extends CodeUnit
16 | {
17 | public function isClassMethod(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/ClassUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class ClassUnit extends CodeUnit
16 | {
17 | public function isClass(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/FileUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class FileUnit extends CodeUnit
16 | {
17 | public function isFile(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/FunctionUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class FunctionUnit extends CodeUnit
16 | {
17 | public function isFunction(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/InterfaceMethodUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class InterfaceMethodUnit extends CodeUnit
16 | {
17 | public function isInterfaceMethod(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/InterfaceUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class InterfaceUnit extends CodeUnit
16 | {
17 | public function isInterface(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/TraitMethodUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class TraitMethodUnit extends CodeUnit
16 | {
17 | public function isTraitMethod(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/TraitUnit.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | /**
13 | * @immutable
14 | */
15 | final readonly class TraitUnit extends CodeUnit
16 | {
17 | public function isTrait(): bool
18 | {
19 | return true;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | use RuntimeException;
13 |
14 | final class InvalidCodeUnitException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/exceptions/NoTraitException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | use RuntimeException;
13 |
14 | final class NoTraitException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit/src/exceptions/ReflectionException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\CodeUnit;
11 |
12 | use RuntimeException;
13 |
14 | final class ReflectionException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/comparator/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Comparator;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/comparator/src/exceptions/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Comparator;
11 |
12 | final class RuntimeException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/sebastian/complexity/src/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Complexity;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/complexity/src/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Complexity;
11 |
12 | final class RuntimeException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/sebastian/diff/src/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Diff;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Diff;
11 |
12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Diff;
11 |
12 | interface LongestCommonSubsequenceCalculator
13 | {
14 | /**
15 | * Calculates the longest common subsequence of two arrays.
16 | */
17 | public function calculate(array $from, array $to): array;
18 | }
19 |
--------------------------------------------------------------------------------
/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Diff\Output;
11 |
12 | /**
13 | * Defines how an output builder should take a generated
14 | * diff array and return a string representation of that diff.
15 | */
16 | interface DiffOutputBuilderInterface
17 | {
18 | public function getDiff(array $diff): string;
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/sebastian/global-state/src/exceptions/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\GlobalState;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/global-state/src/exceptions/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\GlobalState;
11 |
12 | final class RuntimeException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/sebastian/lines-of-code/src/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\LinesOfCode;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\LinesOfCode;
11 |
12 | use LogicException;
13 |
14 | final class IllogicalValuesException extends LogicException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/lines-of-code/src/Exception/NegativeValueException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\LinesOfCode;
11 |
12 | use InvalidArgumentException;
13 |
14 | final class NegativeValueException extends InvalidArgumentException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\LinesOfCode;
11 |
12 | final class RuntimeException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/sebastian/type/infection.json:
--------------------------------------------------------------------------------
1 | {
2 | "source": {
3 | "directories": [
4 | "src"
5 | ]
6 | },
7 | "mutators": {
8 | "@default": true
9 | },
10 | "minMsi": 100,
11 | "minCoveredMsi": 100
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/sebastian/type/src/exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Type;
11 |
12 | use Throwable;
13 |
14 | /**
15 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
16 | */
17 | interface Exception extends Throwable
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/vendor/sebastian/type/src/exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace SebastianBergmann\Type;
11 |
12 | /**
13 | * @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
14 | */
15 | final class RuntimeException extends \RuntimeException implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/theseer/tokenizer/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "theseer/tokenizer",
3 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
4 | "license": "BSD-3-Clause",
5 | "authors": [
6 | {
7 | "name": "Arne Blankerts",
8 | "email": "arne@blankerts.de",
9 | "role": "Developer"
10 | }
11 | ],
12 | "support": {
13 | "issues": "https://github.com/theseer/tokenizer/issues"
14 | },
15 | "require": {
16 | "php": "^7.2 || ^8.0",
17 | "ext-xmlwriter": "*",
18 | "ext-dom": "*",
19 | "ext-tokenizer": "*"
20 | },
21 | "autoload": {
22 | "classmap": [
23 | "src/"
24 | ]
25 | }
26 | }
27 |
28 |
--------------------------------------------------------------------------------
/vendor/theseer/tokenizer/src/Exception.php:
--------------------------------------------------------------------------------
1 |