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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-file-iterator/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | current
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-file-iterator/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-file-iterator/README.md:
--------------------------------------------------------------------------------
1 | [](https://travis-ci.org/sebastianbergmann/php-file-iterator)
2 |
3 | # php-file-iterator
4 |
5 | ## Installation
6 |
7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
8 |
9 | composer require phpunit/php-file-iterator
10 |
11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
12 |
13 | composer require --dev phpunit/php-file-iterator
14 |
15 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.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 ProcessControlExtensionNotLoadedException extends RuntimeException implements Exception
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-text-template/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-text-template/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-text-template/README.md:
--------------------------------------------------------------------------------
1 | # Text_Template
2 |
3 | ## Installation
4 |
5 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
6 |
7 | composer require phpunit/php-text-template
8 |
9 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
10 |
11 | composer require --dev phpunit/php-text-template
12 |
13 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-timer/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/php-timer/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Exception extends Throwable
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Error/Deprecated.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\Error;
11 |
12 | /**
13 | * @internal
14 | */
15 | final class Deprecated extends Error
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Error/Notice.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\Error;
11 |
12 | /**
13 | * @internal
14 | */
15 | final class Notice extends Error
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Error/Warning.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\Error;
11 |
12 | /**
13 | * @internal
14 | */
15 | final class Warning extends Error
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | class CodeCoverageException extends Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class CoveredCodeNotExecutedException extends RiskyTestError
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/IncompleteTestError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class IncompleteTestError extends AssertionFailedError implements IncompleteTest
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class InvalidCoversTargetException extends CodeCoverageException
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class InvalidDataProviderException extends Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class MissingCoversAnnotationException extends RiskyTestError
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class NoChildTestSuiteException extends Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/OutputError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class OutputError extends AssertionFailedError
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/RiskyTestError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | class RiskyTestError extends AssertionFailedError
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class SkippedTestError extends AssertionFailedError implements SkippedTest
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class SyntheticSkippedError extends SyntheticError implements SkippedTest
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/Exception/UnintentionallyCoveredCodeError.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class UnintentionallyCoveredCodeError extends RiskyTestError
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface IncompleteTest extends Throwable
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/InvalidParameterGroupException.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class InvalidParameterGroupException extends Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class BadMethodCallException extends \BadMethodCallException implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class ConfigurableMethodsAlreadyInitializedException extends \PHPUnit\Framework\Exception implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Exception extends Throwable
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/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 PHPUnit\Framework\MockObject;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class ReflectionException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class RuntimeException extends \RuntimeException implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl:
--------------------------------------------------------------------------------
1 |
2 | @trigger_error({deprecation}, E_USER_DEPRECATED);
3 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/intersection.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | interface {intersection} extends {interfaces}
4 | {
5 | }
6 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | {prologue}{class_declaration}
4 | {
5 | use \PHPUnit\Framework\MockObject\Api;{method}{clone}
6 | {mocked_methods}}{epilogue}
7 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_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 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl:
--------------------------------------------------------------------------------
1 | declare(strict_types=1);
2 |
3 | {prologue}class {class_name}
4 | {
5 | use {trait_name};
6 | }
7 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl:
--------------------------------------------------------------------------------
1 |
2 | public function {method_name}({arguments})
3 | {
4 | }
5 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/MockType.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | interface MockType
16 | {
17 | /**
18 | * @psalm-return class-string
19 | */
20 | public function generate(): string;
21 | }
22 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/SelfDescribing.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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | interface SelfDescribing
16 | {
17 | /**
18 | * Returns a string representation of the object.
19 | */
20 | public function toString(): string;
21 | }
22 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Framework/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface SkippedTest extends Throwable
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Runner/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 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class Exception extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/TextUI/CliArguments/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\CliArguments;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class Exception extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Exception extends Throwable
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/TextUI/Exception/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 PHPUnit\TextUI;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class ReflectionException extends RuntimeException implements Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/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 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit
14 | */
15 | final class RuntimeException extends \RuntimeException implements Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/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\XmlConfiguration;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class Exception extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.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\XmlConfiguration;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class MigrationBuilderException extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.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\XmlConfiguration;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class MigrationException extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.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\XmlConfiguration;
11 |
12 | use DOMDocument;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | interface Migration
18 | {
19 | public function migrate(DOMDocument $document): void;
20 | }
21 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Util/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 RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class Exception extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Util/InvalidDataSetException.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 RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class InvalidDataSetException extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Util/Xml/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\Xml;
11 |
12 | use RuntimeException;
13 |
14 | /**
15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
16 | */
17 | final class Exception extends RuntimeException implements \PHPUnit\Exception
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.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\Xml;
11 |
12 | /**
13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit
14 | *
15 | * @psalm-immutable
16 | */
17 | final class FailedSchemaDetectionResult extends SchemaDetectionResult
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/psr/container/.gitignore:
--------------------------------------------------------------------------------
1 | composer.lock
2 | composer.phar
3 | /vendor/
4 |
--------------------------------------------------------------------------------
/typerocket/vendor/psr/container/README.md:
--------------------------------------------------------------------------------
1 | Container interface
2 | ==============
3 |
4 | This repository holds all interfaces related to [PSR-11 (Container Interface)][psr-url].
5 |
6 | Note that this is not a Container implementation of its own. It is merely abstractions that describe the components of a Dependency Injection Container.
7 |
8 | The installable [package][package-url] and [implementations][implementation-url] are listed on Packagist.
9 |
10 | [psr-url]: https://www.php-fig.org/psr/psr-11/
11 | [package-url]: https://packagist.org/packages/psr/container
12 | [implementation-url]: https://packagist.org/providers/psr/container-implementation
13 |
14 |
--------------------------------------------------------------------------------
/typerocket/vendor/psr/container/src/ContainerExceptionInterface.php:
--------------------------------------------------------------------------------
1 | =7.3`
10 |
11 | ## [1.0.0] - 2020-08-12
12 |
13 | * Initial release
14 |
15 | [1.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/bb7bb3297957927962b0a3335befe7b66f7462e9...1.0.0
16 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/cli-parser/README.md:
--------------------------------------------------------------------------------
1 | # sebastian/cli-parser
2 |
3 | Library for parsing `$_SERVER['argv']`, extracted from `phpunit/phpunit`.
4 |
5 | ## Installation
6 |
7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
8 |
9 | ```
10 | composer require sebastian/cli-parser
11 | ```
12 |
13 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
14 |
15 | ```
16 | composer require --dev sebastian/cli-parser
17 | ```
18 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/cli-parser/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/code-unit/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/code-unit/README.md:
--------------------------------------------------------------------------------
1 | # sebastian/code-unit
2 |
3 | Collection of value objects that represent the PHP code units.
4 |
5 | ## Installation
6 |
7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
8 |
9 | ```
10 | composer require sebastian/code-unit
11 | ```
12 |
13 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
14 |
15 | ```
16 | composer require --dev sebastian/code-unit
17 | ```
18 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class ClassMethodUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true ClassMethodUnit $this
19 | */
20 | public function isClassMethod(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class ClassUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true ClassUnit $this
19 | */
20 | public function isClass(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class FunctionUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true FunctionUnit $this
19 | */
20 | public function isFunction(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class InterfaceMethodUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true InterfaceMethod $this
19 | */
20 | public function isInterfaceMethod(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class InterfaceUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true InterfaceUnit $this
19 | */
20 | public function isInterface(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class TraitMethodUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true TraitMethodUnit $this
19 | */
20 | public function isTraitMethod(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 | * @psalm-immutable
14 | */
15 | final class TraitUnit extends CodeUnit
16 | {
17 | /**
18 | * @psalm-assert-if-true TraitUnit $this
19 | */
20 | public function isTrait(): bool
21 | {
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/complexity/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/complexity/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/lines-of-code/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/lines-of-code/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/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 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-enumerator/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | !is_array($variable) && !is_object($variable)
6 | is_object($variable)
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-enumerator/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-enumerator/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 SebastianBergmann\ObjectEnumerator;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-enumerator/src/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\ObjectEnumerator;
11 |
12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-reflector/.psalm/baseline.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | is_object($object)
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-reflector/.psalm/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-reflector/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 SebastianBergmann\ObjectReflector;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/object-reflector/src/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\ObjectReflector;
11 |
12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/recursion-context/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 SebastianBergmann\RecursionContext;
11 |
12 | use Throwable;
13 |
14 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/recursion-context/src/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\RecursionContext;
11 |
12 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/resource-operations/.gitattributes:
--------------------------------------------------------------------------------
1 | /.github export-ignore
2 | /.php_cs.dist export-ignore
3 | /build.xml export-ignore
4 | /phpunit.xml export-ignore
5 | /tests export-ignore
6 |
7 | *.php diff=php
8 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/resource-operations/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /build/FunctionSignatureMap.php
4 | /composer.lock
5 | /vendor
6 | /.phpunit.result.cache
7 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/resource-operations/README.md:
--------------------------------------------------------------------------------
1 | # Resource Operations
2 |
3 | Provides a list of PHP built-in functions that operate on resources.
4 |
5 | ## Installation
6 |
7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
8 |
9 | composer require sebastian/resource-operations
10 |
11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
12 |
13 | composer require --dev sebastian/resource-operations
14 |
15 |
--------------------------------------------------------------------------------
/typerocket/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 | interface Exception extends Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/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 | final class RuntimeException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/version/.gitattributes:
--------------------------------------------------------------------------------
1 | /.github export-ignore
2 | /.php_cs.dist export-ignore
3 |
4 | *.php diff=php
5 |
--------------------------------------------------------------------------------
/typerocket/vendor/sebastian/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.php_cs.cache
2 | /.idea
3 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/ExceptionInterface.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * ExceptionInterface.
16 | *
17 | * @author Jérôme Tamarelle
18 | */
19 | interface ExceptionInterface extends \Throwable
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/InvalidArgumentException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * @author Jérôme Tamarelle
16 | */
17 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/InvalidOptionException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * Represents an incorrect option name or value typed in the console.
16 | *
17 | * @author Jérôme Tamarelle
18 | */
19 | class InvalidOptionException extends \InvalidArgumentException implements ExceptionInterface
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/LogicException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * @author Jérôme Tamarelle
16 | */
17 | class LogicException extends \LogicException implements ExceptionInterface
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/MissingInputException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * Represents failure to read input from stdin.
16 | *
17 | * @author Gabriel Ostrolucký
18 | */
19 | class MissingInputException extends RuntimeException implements ExceptionInterface
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/NamespaceNotFoundException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * Represents an incorrect namespace typed in the console.
16 | *
17 | * @author Pierre du Plessis
18 | */
19 | class NamespaceNotFoundException extends CommandNotFoundException
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Exception;
13 |
14 | /**
15 | * @author Jérôme Tamarelle
16 | */
17 | class RuntimeException extends \RuntimeException implements ExceptionInterface
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Helper/TableSeparator.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\Console\Helper;
13 |
14 | /**
15 | * Marks a row as being a separator.
16 | *
17 | * @author Fabien Potencier
18 | */
19 | class TableSeparator extends TableCell
20 | {
21 | public function __construct(array $options = [])
22 | {
23 | parent::__construct('', $options);
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/console/Resources/bin/hiddeninput.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TypeRocket/plugin/ac44188f3e68c281364d5bd79f2258183b80312b/typerocket/vendor/symfony/console/Resources/bin/hiddeninput.exe
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/polyfill-ctype/README.md:
--------------------------------------------------------------------------------
1 | Symfony Polyfill / Ctype
2 | ========================
3 |
4 | This component provides `ctype_*` functions to users who run php versions without the ctype extension.
5 |
6 | More information can be found in the
7 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md).
8 |
9 | License
10 | =======
11 |
12 | This library is released under the [MIT license](LICENSE).
13 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/polyfill-intl-normalizer/README.md:
--------------------------------------------------------------------------------
1 | Symfony Polyfill / Intl: Normalizer
2 | ===================================
3 |
4 | This component provides a fallback implementation for the
5 | [`Normalizer`](https://php.net/Normalizer) class provided
6 | by the [Intl](https://php.net/intl) extension.
7 |
8 | More information can be found in the
9 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md).
10 |
11 | License
12 | =======
13 |
14 | This library is released under the [MIT license](LICENSE).
15 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\String\Exception;
13 |
14 | interface ExceptionInterface extends \Throwable
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/string/Exception/InvalidArgumentException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\String\Exception;
13 |
14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/string/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\String\Exception;
13 |
14 | class RuntimeException extends \RuntimeException implements ExceptionInterface
15 | {
16 | }
17 |
--------------------------------------------------------------------------------
/typerocket/vendor/symfony/string/README.md:
--------------------------------------------------------------------------------
1 | String Component
2 | ================
3 |
4 | The String component provides an object-oriented API to strings and deals
5 | with bytes, UTF-8 code points and grapheme clusters in a unified way.
6 |
7 | Resources
8 | ---------
9 |
10 | * [Documentation](https://symfony.com/doc/current/components/string.html)
11 | * [Contributing](https://symfony.com/doc/current/contributing/index.html)
12 | * [Report issues](https://github.com/symfony/symfony/issues) and
13 | [send Pull Requests](https://github.com/symfony/symfony/pulls)
14 | in the [main Symfony repository](https://github.com/symfony/symfony)
15 |
--------------------------------------------------------------------------------
/typerocket/vendor/theseer/tokenizer/src/Exception.php:
--------------------------------------------------------------------------------
1 | .text {
18 | flex: 1;
19 | }
20 |
21 | > .icon {
22 | width: 30px;
23 | display: flex;
24 | justify-items: center;
25 | align-items: center;
26 | }
27 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/assets/sass/utility/location.scss:
--------------------------------------------------------------------------------
1 | /* Location
2 | ----------------------------------------------------------------------- */
3 | .tr_field_location_google_map {
4 | height: 150px;
5 | background: #ccc;
6 | width: 100%;
7 | }
8 |
9 | .tr_field_location_load_lat_lng_section {
10 | margin: 10px 0;
11 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/assets/sass/utility/matrix.scss:
--------------------------------------------------------------------------------
1 | /* Matrix
2 | ----------------------------------------------------------------------- */
3 | .tr-matrix-controls {
4 | margin-bottom: 20px;
5 |
6 | select, select.matrix-select {
7 | display: inline-block;
8 | width: auto;
9 | margin: 0 10px 0 0;
10 | }
11 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/assets/sass/utility/sort.scss:
--------------------------------------------------------------------------------
1 | /* Sort Helper
2 | ----------------------------------------------------------------------- */
3 | .tr-ui-sortable-helper {
4 | opacity: 0.8;
5 | cursor: move;
6 | overflow: hidden;
7 | z-index: 100000000 !important;
8 | }
9 |
10 | .tr-sortable-placeholder {
11 | border: dashed 1px #bbb !important;
12 | visibility: visible !important;
13 | background: none !important;
14 | z-index: 1;
15 | box-shadow: none;
16 | max-height: 300px !important;
17 | box-sizing: border-box;
18 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/assets/sass/utility/style.scss:
--------------------------------------------------------------------------------
1 | /* Utility Styles
2 | ----------------------------------------------------------------------- */
3 | .tr-round-image-corners img {
4 | border-radius: 4px;
5 | }
6 |
7 | .tr-round-corners {
8 | border-radius: 4px;
9 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Auth/Policy.php:
--------------------------------------------------------------------------------
1 | user = $user;
13 | }
14 |
15 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Controllers/Traits/LoadsModel.php:
--------------------------------------------------------------------------------
1 | modelClass = $model;
18 |
19 | return $this;
20 | }
21 |
22 | /**
23 | * Get Model
24 | *
25 | * @return mixed
26 | */
27 | public function getModel()
28 | {
29 | return $this->modelClass;
30 | }
31 |
32 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Database/Connectors/WordPressCoreDatabaseConnector.php:
--------------------------------------------------------------------------------
1 | name = 'wp';
13 | $this->wpdb = $wpdb;
14 |
15 | return $this;
16 | }
17 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Database/Migration.php:
--------------------------------------------------------------------------------
1 | database = $database;
13 | $this->prefix = $database->prefix;
14 | }
15 |
16 | public function run($type)
17 | {
18 | if($type == 'up') {
19 | $this->up();
20 | } else {
21 | $this->down();
22 | }
23 |
24 | }
25 |
26 | abstract function up();
27 | abstract function down();
28 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Database/ResultsCollection.php:
--------------------------------------------------------------------------------
1 | setAttribute('placeholder', $text);
16 | }
17 |
18 | /**
19 | * Get Placeholder
20 | *
21 | * @return string
22 | */
23 | public function getPlaceholder()
24 | {
25 | return (string) $this->getAttribute('placeholder');
26 | }
27 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Elements/Traits/ImageFeaturesTrait.php:
--------------------------------------------------------------------------------
1 | setSetting('size', $size);
16 | }
17 |
18 | /**
19 | * Set Background Dark
20 | *
21 | * @return $this
22 | */
23 | public function setBackgroundDark()
24 | {
25 | return $this->setSetting('background', 'dark');
26 | }
27 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Elements/Traits/Limits.php:
--------------------------------------------------------------------------------
1 | limit = (int) $limit;
17 | return $this;
18 | }
19 |
20 | /**
21 | * Get Item Limit
22 | *
23 | * @return int
24 | */
25 | public function getLimit()
26 | {
27 | return $this->limit;
28 | }
29 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Elements/Traits/RequiredTrait.php:
--------------------------------------------------------------------------------
1 | markLabelRequired()->setAttribute('required', 'required');
17 | }
18 |
19 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Exceptions/HttpError.php:
--------------------------------------------------------------------------------
1 | redirect = $redirect;
12 |
13 | return $this;
14 | }
15 |
16 | return $this->redirect;
17 | }
18 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Exceptions/ResolverException.php:
--------------------------------------------------------------------------------
1 | sql = $sql;
12 | }
13 |
14 | public function getSql()
15 | {
16 | return $this->sql;
17 | }
18 |
19 | public function setSqlError($sql)
20 | {
21 | $this->sqlError = $sql;
22 | }
23 |
24 | public function getSqlError()
25 | {
26 | return $this->sqlError;
27 | }
28 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/CustomRequest.php:
--------------------------------------------------------------------------------
1 | $value) {
16 | $this->{$key} = $value;
17 | }
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/AuthAdmin.php:
--------------------------------------------------------------------------------
1 | next->handle();
23 | }
24 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/AuthRead.php:
--------------------------------------------------------------------------------
1 | next->handle();
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/CanEditComments.php:
--------------------------------------------------------------------------------
1 | isHook() && ! current_user_can( 'edit_posts' ) ) {
19 | HttpError::abort(401);
20 | }
21 |
22 | $this->next->handle();
23 | }
24 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/CanEditPosts.php:
--------------------------------------------------------------------------------
1 | isHook() && ! current_user_can( 'edit_posts' ) ) {
19 | HttpError::abort(401);
20 | }
21 |
22 | $this->next->handle();
23 | }
24 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/CanEditUsers.php:
--------------------------------------------------------------------------------
1 | handler->getHook() && ! current_user_can( 'edit_users' ) ) {
19 | HttpError::abort(401);
20 | }
21 |
22 | $this->next->handle();
23 | }
24 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/CanManageCategories.php:
--------------------------------------------------------------------------------
1 | isHook() ) {
19 | HttpError::abort(401);
20 | }
21 |
22 | $this->next->handle();
23 | }
24 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Middleware/CanManageOptions.php:
--------------------------------------------------------------------------------
1 | isHook() ) {
19 | HttpError::abort(401);
20 | }
21 |
22 | $this->next->handle();
23 | }
24 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Responders/HttpResponder.php:
--------------------------------------------------------------------------------
1 | handler->setArgs($args);
21 |
22 | $this->runKernel($request, $response, $this->handler);
23 | }
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Rewrites/Builder.php:
--------------------------------------------------------------------------------
1 | getForm($group, $type);
10 | $class = \TypeRocket\Elements\Fields\Matrix::getComponentClass($type, $group)->form($form)->data($form->getModel());
11 | \TypeRocket\Elements\Fields\Builder::componentTemplate($class, $group);
12 | \TypeRocket\Elements\Fields\Builder::componentTile($class, $group);
13 | }
14 |
15 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/Rewrites/Matrix.php:
--------------------------------------------------------------------------------
1 | getForm($group, $type);
10 | $class = \TypeRocket\Elements\Fields\Matrix::getComponentClass($type, $group)->form($form)->data($form->getModel());
11 | \TypeRocket\Elements\Fields\Matrix::componentTemplate($class, $group);
12 | }
13 |
14 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Http/WordPressRestAPI.php:
--------------------------------------------------------------------------------
1 | getRestMetaType();
11 | $fields = $model->getRestMetaFieldsCompiled();
12 |
13 | foreach ($fields as $field => $args) {
14 | register_meta($type, $field, $args);
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Interfaces/ResolvesWith.php:
--------------------------------------------------------------------------------
1 | singleton;
23 | }
24 |
25 | /**
26 | * @return null
27 | */
28 | public function alias()
29 | {
30 | return static::ALIAS;
31 | }
32 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Utility/DataCollection.php:
--------------------------------------------------------------------------------
1 | data = $data;
21 | }
22 |
23 | /**
24 | * @return array|object
25 | */
26 | public function getFormFields()
27 | {
28 | return $this->data;
29 | }
30 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/src/Utility/Dump.php:
--------------------------------------------------------------------------------
1 | addArgument('arg', self::REQUIRED, 'Description');
18 | }
19 |
20 | public function exec()
21 | {
22 | // When command executes
23 | $this->success('Execute!');
24 | }
25 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/templates/Component.txt:
--------------------------------------------------------------------------------
1 | form();
16 | }
17 |
18 | /**
19 | * Render
20 | *
21 | * @var array $data component fields
22 | * @var array $info name, item_id, model, first_item, last_item, component_id, hash
23 | */
24 | public function render(array $data, array $info)
25 | {
26 | ?>
27 |
28 | payload;
14 | }
15 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/templates/Middleware.txt:
--------------------------------------------------------------------------------
1 | request;
11 | $response = $this->response;
12 |
13 | // Do stuff before controller is called
14 |
15 | $this->next->handle();
16 |
17 | // Do stuff after controller is called
18 | }
19 | }
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/templates/Migration.txt:
--------------------------------------------------------------------------------
1 | -- Description:
2 | -- >>> Up >>>
3 |
4 | -- >>> Down >>>
--------------------------------------------------------------------------------
/typerocket/vendor/typerocket/core/templates/MigrationClass.txt:
--------------------------------------------------------------------------------
1 | id = $id;
12 | $this->action_ids = $action_ids;
13 | }
14 |
15 | public function get_id() {
16 | return $this->id;
17 | }
18 |
19 | public function get_actions() {
20 | return $this->action_ids;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/typerocket/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Exception.php:
--------------------------------------------------------------------------------
1 | set_schedule( new ActionScheduler_NullSchedule() );
10 | }
11 |
12 | public function execute() {
13 | // don't execute
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/typerocket/vendor/woocommerce/action-scheduler/classes/migration/DryRun_ActionMigrator.php:
--------------------------------------------------------------------------------
1 |