├── vendor ├── phpmailer │ └── phpmailer │ │ ├── VERSION │ │ └── .editorconfig ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── global-state │ │ ├── .gitignore │ │ ├── src │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ └── tests │ │ │ └── _fixture │ │ │ ├── SnapshotTrait.php │ │ │ ├── SnapshotFunctions.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ └── BlacklistedImplementor.php │ ├── object-enumerator │ │ └── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── diff │ │ └── src │ │ │ └── Exception │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── recursion-context │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── README.md │ └── object-reflector │ │ └── src │ │ ├── Exception.php │ │ └── InvalidArgumentException.php ├── phpunit │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── configuration.columns.default.xml │ │ │ │ ├── configuration_stop_on_defect.xml │ │ │ │ ├── configuration_stop_on_error.xml │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── configuration_stop_on_incomplete.xml │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── configuration.one-file-suite.xml │ │ │ │ ├── phpt-unsupported-section.phpt │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ ├── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ │ └── phpunit-example-extension-3.0.3.phar │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── configuration_whitelist.xml │ │ │ │ ├── DataProviderIssue2859 │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── DummyException.php │ │ │ │ ├── configuration_execution_order_options.xml │ │ │ │ ├── AnInterface.php │ │ │ │ ├── MultiDependencyTest_result_cache.txt │ │ │ │ ├── configuration.defaulttestsuite.xml │ │ │ │ ├── AnotherInterface.php │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── TraversableMockTestInterface.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ │ ├── Bar.php │ │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ │ ├── ClassWithStaticMethod.php │ │ │ │ ├── ExampleTrait.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── ExceptionWithThrowable.php │ │ │ │ ├── Foo.php │ │ │ │ ├── StringableClass.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── MockTestInterface.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Book.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── SomeClass.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── DoNoAssertionTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestRisky.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── DummyBarTest.php │ │ │ │ ├── DummyFooTest.php │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── TestWarning.php │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── IniTest.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── StaticMockTestClass.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── ClassWithVariadicArgumentMethod.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ └── AssertionExampleTest.php │ │ │ ├── end-to-end │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── regression │ │ │ │ │ ├── GitHub │ │ │ │ │ │ ├── 74 │ │ │ │ │ │ │ └── NewException.php │ │ │ │ │ │ ├── 322 │ │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ │ ├── 797 │ │ │ │ │ │ │ └── bootstrap797.php │ │ │ │ │ │ ├── 873 │ │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ │ ├── 1216 │ │ │ │ │ │ │ ├── phpunit1216.xml │ │ │ │ │ │ │ └── bootstrap1216.php │ │ │ │ │ │ ├── 1265 │ │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ │ ├── 1330 │ │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ │ ├── 1351 │ │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ │ ├── 1570 │ │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ │ ├── 2085 │ │ │ │ │ │ │ └── configuration_enforce_time_limit_options.xml │ │ │ │ │ │ ├── 2158 │ │ │ │ │ │ │ └── constant.inc │ │ │ │ │ │ ├── 2435 │ │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ │ ├── 2448 │ │ │ │ │ │ │ └── Test.php │ │ │ │ │ │ ├── 2972 │ │ │ │ │ │ │ └── issue-2972-test.phpt │ │ │ │ │ │ └── 2448-not-existing-test.phpt │ │ │ │ │ └── Trac │ │ │ │ │ │ ├── 684 │ │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ │ └── 783 │ │ │ │ │ │ ├── OneTest.php │ │ │ │ │ │ └── TwoTest.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ ├── phpt-stderr.phpt │ │ │ │ ├── version.phpt │ │ │ │ ├── cli │ │ │ │ │ └── test-file-not-found.phpt │ │ │ │ ├── phar-extension-suppressed.phpt │ │ │ │ └── list-suites.phpt │ │ │ └── fail │ │ │ │ └── fail.phpt │ │ ├── src │ │ │ ├── Framework │ │ │ │ ├── MockObject │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ │ │ ├── wsdl_method.tpl.dist │ │ │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ │ │ └── mocked_class_method.tpl.dist │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ │ └── Exception.php │ │ │ │ │ └── ForwardCompatibility │ │ │ │ │ │ └── MockObject.php │ │ │ │ ├── RiskyTest.php │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── OutputError.php │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── Error │ │ │ │ │ ├── Notice.php │ │ │ │ │ ├── Warning.php │ │ │ │ │ └── Deprecated.php │ │ │ │ ├── RiskyTestError.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── SkippedTestError.php │ │ │ │ ├── IncompleteTestError.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ ├── UnexpectedValueException.php │ │ │ │ ├── Constraint │ │ │ │ │ └── SameSize.php │ │ │ │ └── IncompleteTest.php │ │ │ ├── Runner │ │ │ │ ├── Hook │ │ │ │ │ ├── Hook.php │ │ │ │ │ ├── TestHook.php │ │ │ │ │ ├── AfterLastTestHook.php │ │ │ │ │ ├── BeforeFirstTestHook.php │ │ │ │ │ ├── BeforeTestHook.php │ │ │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ │ │ ├── AfterRiskyTestHook.php │ │ │ │ │ ├── AfterTestErrorHook.php │ │ │ │ │ ├── AfterSkippedTestHook.php │ │ │ │ │ ├── AfterTestFailureHook.php │ │ │ │ │ ├── AfterTestWarningHook.php │ │ │ │ │ └── AfterIncompleteTestHook.php │ │ │ │ └── Exception.php │ │ │ └── Exception.php │ │ ├── .gitattributes │ │ ├── .editorconfig │ │ ├── .gitignore │ │ └── phive.xml │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── src │ │ │ ├── Report │ │ │ │ ├── Html │ │ │ │ │ └── Renderer │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ └── octicons.css │ │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── file-directory.svg │ │ │ │ │ │ └── file-code.svg │ │ │ │ │ │ └── coverage_bar.html.dist │ │ │ │ └── Xml │ │ │ │ │ └── Directory.php │ │ │ └── Exception │ │ │ │ ├── RuntimeException.php │ │ │ │ └── Exception.php │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── Crash.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── BankAccount-text.txt │ │ │ │ ├── source_without_namespace.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ │ ├── source_with_namespace.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ └── source_with_class_and_anonymous_function.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── README.md │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ ├── tests │ │ │ ├── _fixture │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ ├── issue30.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── class_with_method_named_empty.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── closure.php │ │ │ │ ├── source5.php │ │ │ │ ├── php-code-coverage-issue-424.php │ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ │ ├── source3.php │ │ │ │ └── class_with_method_that_declares_anonymous_class.php │ │ │ └── bootstrap.php │ │ └── .travis.yml │ └── php-timer │ │ └── src │ │ ├── Exception.php │ │ └── RuntimeException.php ├── psr │ ├── container │ │ ├── .gitignore │ │ └── src │ │ │ ├── NotFoundExceptionInterface.php │ │ │ └── ContainerExceptionInterface.php │ ├── cache │ │ ├── src │ │ │ ├── CacheException.php │ │ │ └── InvalidArgumentException.php │ │ └── README.md │ ├── http-client │ │ └── src │ │ │ └── ClientExceptionInterface.php │ └── http-factory │ │ └── src │ │ └── UriFactoryInterface.php ├── doctrine │ └── instantiator │ │ ├── docs │ │ └── en │ │ │ └── sidebar.rst │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ └── Exception │ │ └── ExceptionInterface.php ├── clue │ └── stream-filter │ │ ├── .github │ │ └── FUNDING.yml │ │ └── src │ │ └── functions_include.php ├── guzzlehttp │ ├── psr7 │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── src │ │ │ └── functions_include.php │ ├── guzzle │ │ ├── src │ │ │ ├── Exception │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ ├── TransferException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── ClientException.php │ │ │ │ └── ServerException.php │ │ │ └── functions_include.php │ │ └── Dockerfile │ └── promises │ │ └── src │ │ ├── functions_include.php │ │ ├── CancellationException.php │ │ ├── PromisorInterface.php │ │ └── AggregateException.php ├── phar-io │ ├── manifest │ │ ├── .gitignore │ │ ├── tests │ │ │ └── _fixture │ │ │ │ ├── test.phar │ │ │ │ ├── custom.xml │ │ │ │ ├── library.xml │ │ │ │ ├── invalidversion.xml │ │ │ │ ├── manifest.xml │ │ │ │ └── invalidversionconstraint.xml │ │ ├── src │ │ │ ├── exceptions │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ ├── ManifestElementException.php │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidUrlException.php │ │ │ │ └── InvalidEmailException.php │ │ │ └── values │ │ │ │ └── Requirement.php │ │ └── phive.xml │ └── version │ │ ├── .gitignore │ │ ├── src │ │ └── exceptions │ │ │ ├── InvalidVersionException.php │ │ │ ├── InvalidPreReleaseSuffixException.php │ │ │ └── Exception.php │ │ └── phive.xml ├── php-http │ ├── message-factory │ │ ├── CONTRIBUTING │ │ └── src │ │ │ └── MessageFactory.php │ ├── message │ │ ├── apigen.neon │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── filters.php │ │ │ ├── Exception │ │ │ │ └── UnexpectedValueException.php │ │ │ └── Encoding │ │ │ │ └── DechunkStream.php │ │ └── .php-cs-fixer.dist.php │ ├── cache-plugin │ │ ├── phpstan.neon.dist │ │ └── src │ │ │ ├── Exception │ │ │ └── RewindStreamException.php │ │ │ └── Cache │ │ │ └── Generator │ │ │ └── CacheKeyGenerator.php │ ├── promise │ │ └── phpstan.neon.dist │ ├── guzzle6-adapter │ │ └── src │ │ │ └── Exception │ │ │ └── UnexpectedValueException.php │ ├── discovery │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── PuliUnavailableException.php │ │ │ │ ├── ClassInstantiationFailedException.php │ │ │ │ ├── NotFoundException.php │ │ │ │ └── StrategyUnavailableException.php │ │ │ └── NotFoundException.php │ │ └── .php-cs-fixer.php │ ├── httplug │ │ ├── puli.json │ │ ├── .php-cs-fixer.dist.php │ │ └── src │ │ │ ├── Exception │ │ │ ├── TransferException.php │ │ │ └── RequestAwareTrait.php │ │ │ ├── Exception.php │ │ │ └── HttpClient.php │ └── client-common │ │ ├── src │ │ └── Exception │ │ │ ├── ClientErrorException.php │ │ │ ├── ServerErrorException.php │ │ │ ├── LoopException.php │ │ │ ├── MultipleRedirectionException.php │ │ │ ├── CircularRedirectionException.php │ │ │ └── HttpClientNotFoundException.php │ │ └── .php-cs-fixer.dist.php ├── dibi │ └── dibi │ │ ├── examples │ │ └── data │ │ │ ├── arrow.png │ │ │ ├── sample.mdb │ │ │ ├── sample.s3db │ │ │ ├── dibi-powered.gif │ │ │ └── sample.dump.sql.gz │ │ └── src │ │ └── Dibi │ │ ├── Bridges │ │ └── Nette │ │ │ └── config.sample.neon │ │ └── Drivers │ │ ├── Sqlite3Driver.php │ │ └── Sqlite3Result.php ├── symfony │ ├── console │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── hiddeninput.exe │ │ └── Exception │ │ │ ├── LogicException.php │ │ │ └── RuntimeException.php │ ├── polyfill-intl-idn │ │ ├── Resources │ │ │ └── unidata │ │ │ │ └── deviation.php │ │ └── README.md │ ├── service-contracts │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── deprecation-contracts │ │ └── CHANGELOG.md │ ├── polyfill-ctype │ │ └── README.md │ ├── polyfill-php80 │ │ └── Resources │ │ │ └── stubs │ │ │ ├── ValueError.php │ │ │ ├── UnhandledMatchError.php │ │ │ ├── PhpToken.php │ │ │ └── Stringable.php │ ├── polyfill-php73 │ │ └── Resources │ │ │ └── stubs │ │ │ └── JsonException.php │ ├── string │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── InvalidArgumentException.php │ ├── polyfill-mbstring │ │ └── README.md │ ├── yaml │ │ └── README.md │ ├── polyfill-intl-normalizer │ │ ├── README.md │ │ └── Resources │ │ │ └── stubs │ │ │ └── Normalizer.php │ ├── filesystem │ │ └── Exception │ │ │ └── RuntimeException.php │ └── finder │ │ └── Exception │ │ ├── DirectoryNotFoundException.php │ │ └── AccessDeniedException.php ├── theseer │ └── tokenizer │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php ├── phpseclib │ └── phpseclib │ │ ├── phpseclib │ │ └── openssl.cnf │ │ └── AUTHORS ├── phpdocumentor │ ├── reflection-common │ │ └── .github │ │ │ └── dependabot.yml │ ├── type-resolver │ │ └── src │ │ │ ├── PseudoTypes │ │ │ ├── ObjectShapeItem.php │ │ │ ├── ListShapeItem.php │ │ │ ├── ListShape.php │ │ │ └── ArrayShapeItem.php │ │ │ └── PseudoType.php │ └── reflection-docblock │ │ └── src │ │ └── DocBlock │ │ └── Tags │ │ └── Factory │ │ └── PHPStanFactory.php ├── composer │ └── autoload_namespaces.php ├── myclabs │ └── deep-copy │ │ └── src │ │ └── DeepCopy │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── TypeFilter │ │ ├── Spl │ │ │ └── SplDoublyLinkedList.php │ │ ├── TypeFilter.php │ │ └── ShallowCopyFilter.php │ │ ├── Matcher │ │ ├── Matcher.php │ │ └── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Filter │ │ ├── KeepFilter.php │ │ └── Filter.php │ │ └── deep_copy.php ├── phpstan │ └── phpdoc-parser │ │ └── src │ │ ├── Ast │ │ ├── Type │ │ │ ├── TypeNode.php │ │ │ ├── ThisTypeNode.php │ │ │ ├── IdentifierTypeNode.php │ │ │ └── NullableTypeNode.php │ │ ├── PhpDoc │ │ │ ├── PhpDocChildNode.php │ │ │ ├── PhpDocTagValueNode.php │ │ │ └── PhpDocTextNode.php │ │ ├── ConstExpr │ │ │ ├── ConstExprNode.php │ │ │ ├── ConstExprFalseNode.php │ │ │ ├── ConstExprNullNode.php │ │ │ ├── ConstExprTrueNode.php │ │ │ ├── ConstExprFloatNode.php │ │ │ └── ConstExprIntegerNode.php │ │ ├── Attribute.php │ │ └── Node.php │ │ └── ParserConfig.php ├── phpspec │ └── prophecy │ │ └── src │ │ └── Prophecy │ │ ├── Doubler │ │ └── Generator │ │ │ └── Node │ │ │ └── ArgumentTypeNode.php │ │ └── Exception │ │ ├── InvalidArgumentException.php │ │ ├── Doubler │ │ ├── DoublerException.php │ │ └── DoubleException.php │ │ ├── Prophecy │ │ └── ProphecyException.php │ │ └── Prediction │ │ └── PredictionException.php ├── m4tthumphrey │ └── php-gitlab-api │ │ └── lib │ │ └── Gitlab │ │ ├── Api │ │ ├── ApiInterface.php │ │ ├── Version.php │ │ ├── Keys.php │ │ └── DeployKeys.php │ │ ├── Exception │ │ ├── ApiLimitExceededException.php │ │ ├── ValidationFailedException.php │ │ ├── ErrorException.php │ │ ├── RuntimeException.php │ │ ├── ExceptionInterface.php │ │ └── InvalidArgumentException.php │ │ └── Model │ │ ├── Notable.php │ │ └── Stateful.php ├── http-interop │ └── http-factory-guzzle │ │ ├── README.md │ │ └── src │ │ ├── UriFactory.php │ │ ├── RequestFactory.php │ │ └── ResponseFactory.php └── webmozart │ └── assert │ └── src │ └── InvalidArgumentException.php ├── .gitignore ├── tests ├── bootstrap.php └── RBTests │ └── YAMLConfigTest.php └── src ├── Routerboard └── IRouterBoardBackup.php └── Logger └── ILogger.php /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.9.3 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/clue/stream-filter/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: clue 2 | custom: https://clue.engineering/support 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.false.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.columns.default.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Nyholm, GrahamCampbell] 2 | tidelift: "packagist/guzzlehttp/psr7" 3 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /src/autoload.php 4 | /tools 5 | /vendor 6 | 7 | /build 8 | -------------------------------------------------------------------------------- /vendor/php-http/message-factory/CONTRIBUTING: -------------------------------------------------------------------------------- 1 | Please see http://docs.php-http.org/en/latest/development/contributing.html 2 | -------------------------------------------------------------------------------- /vendor/phar-io/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | 8 | -------------------------------------------------------------------------------- /vendor/php-http/message/apigen.neon: -------------------------------------------------------------------------------- 1 | source: 2 | - src/ 3 | 4 | destination: build/api/ 5 | 6 | templateTheme: bootstrap 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/dibi/dibi/examples/data/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/dibi/dibi/examples/data/arrow.png -------------------------------------------------------------------------------- /vendor/dibi/dibi/examples/data/sample.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/dibi/dibi/examples/data/sample.mdb -------------------------------------------------------------------------------- /vendor/dibi/dibi/examples/data/sample.s3db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/dibi/dibi/examples/data/sample.s3db -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/_files/tmp 2 | /vendor 3 | /composer.lock 4 | /.idea 5 | /.php_cs 6 | /.php_cs.cache 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_defect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_error.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/php-http/cache-plugin/phpstan.neon.dist: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: 8 3 | paths: 4 | - src 5 | treatPhpDocTypesAsCertain: false 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/dibi/dibi/examples/data/dibi-powered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/dibi/dibi/examples/data/dibi-powered.gif -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/test.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/phar-io/manifest/tests/_fixture/test.phar -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_incomplete.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/dibi/dibi/examples/data/sample.dump.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/dibi/dibi/examples/data/sample.dump.sql.gz -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /.docker export-ignore 2 | /build export-ignore 3 | /tools export-ignore 4 | /tools/* binary 5 | 6 | *.php diff=php 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/phpseclib/openssl.cnf: -------------------------------------------------------------------------------- 1 | # minimalist openssl.cnf file for use with phpseclib 2 | 3 | HOME = . 4 | RANDFILE = $ENV::HOME/.rnd 5 | 6 | [ v3_ca ] 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue30.php: -------------------------------------------------------------------------------- 1 | 'ss', 5 | 962 => 'σ', 6 | 8204 => '', 7 | 8205 => '', 8 | ); 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.custom-printer.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/phpunit1330.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/symfony/deprecation-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/main/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .idea/ 3 | /composer.lock 4 | /routerboard-backup.iml 5 | /movie.mp4 6 | /config.yml 7 | /video-project.sh 8 | /r-backup/ 9 | /cov/ 10 | /.ssh/ 11 | /build/ 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-external.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1436: PHPT runner doesn't handle external files. 3 | --FILE_EXTERNAL-- 4 | _files/phpt_external.php 5 | --EXPECT_EXTERNAL-- 6 | _files/expect_external.txt 7 | -------------------------------------------------------------------------------- /vendor/psr/cache/src/CacheException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/functions_include.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/ClientException.php: -------------------------------------------------------------------------------- 1 | 0 && $argv[1] == 'help') { 8 | print 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/psr/container/src/NotFoundExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../../tests/end-to-end/debug.phpt 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-unsupported-section.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner handles unsupported --SECTION-- gracefully 3 | --FILE-- 4 | 7 | --GET-- 8 | Gerste, Hopfen und Wasser 9 | --EXPECT-- 10 | Hello world 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-stdin.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports STDIN section 3 | --STDIN-- 4 | Hello World 5 | --FILE-- 6 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /vendor/psr/http-client/src/ClientExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class ApiLimitExceededException extends RuntimeException 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Exception/ValidationFailedException.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class ValidationFailedException extends ErrorException 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Model/Notable.php: -------------------------------------------------------------------------------- 1 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-3.0.3.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heximcz/routerboard-backup/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-3.0.3.phar -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Exception/ErrorException.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class ErrorException extends \ErrorException implements ExceptionInterface 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/php-http/guzzle6-adapter/src/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2972/issue-2972-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Just a sample test for issue 2972, does not actually test anything 3 | --FILE-- 4 | 7 | ===DONE=== 8 | --EXPECT-- 9 | Hello world 10 | ===DONE=== 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class RuntimeException extends \RuntimeException implements ExceptionInterface 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface Exception extends \Throwable 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface ExceptionInterface extends Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phar-io/version/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | indent_style = space 7 | indent_size = 4 8 | charset = utf-8 9 | 10 | [*.yml] 11 | indent_size = 2 12 | 13 | [tests/_files/*_result_cache.txt] 14 | insert_final_newline = false 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-env.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner should support ENV section 3 | --ENV-- 4 | FOO=bar 5 | --FILE-- 6 | 11 | --EXPECTF_EXTERNAL-- 12 | _files/phpt-env.expected.txt 13 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Api/Version.php: -------------------------------------------------------------------------------- 1 | get('version'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php: -------------------------------------------------------------------------------- 1 | add('RBTests', __DIR__); 11 | 12 | return $loader; 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-stderr.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1169: PHPT runner doesn't look at STDERR. 3 | --FILE-- 4 | assertTrue ( is_array ( $config->getConfigData () ) ); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_size = 4 6 | indent_style = space 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class RewindStreamException extends \RuntimeException implements Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | expects($any); 6 | 7 | return call_user_func_array([$expects, 'method'], func_get_args()); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_whitelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | AbstractTest.php 8 | 9 | Foo.php 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception/PuliUnavailableException.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | final class PuliUnavailableException extends StrategyUnavailableException 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt_external.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 | print 'Hello World'; 11 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Api/Keys.php: -------------------------------------------------------------------------------- 1 | get('keys/'.$this->encodePath($id)); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/puli.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "name": "php-http/httplug", 4 | "binding-types": { 5 | "Http\\Client\\HttpAsyncClient": { 6 | "description": "Async HTTP Client" 7 | }, 8 | "Http\\Client\\HttpClient": { 9 | "description": "HTTP Client" 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpseclib/phpseclib/AUTHORS: -------------------------------------------------------------------------------- 1 | phpseclib Lead Developer: TerraFrost (Jim Wigginton) 2 | 3 | phpseclib Developers: monnerat (Patrick Monnerat) 4 | bantu (Andreas Fischer) 5 | petrich (Hans-Jürgen Petrich) 6 | GrahamCampbell (Graham Campbell) 7 | hc-jworman -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.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 | class NoTestCaseClass 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann and contributors. 14 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php: -------------------------------------------------------------------------------- 1 | in(__DIR__.'/src') 5 | ->name('*.php') 6 | ; 7 | 8 | $config = (new PhpCsFixer\Config()) 9 | ->setRiskyAllowed(true) 10 | ->setRules([ 11 | '@Symfony' => true, 12 | ]) 13 | ->setFinder($finder) 14 | ; 15 | 16 | return $config; 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.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 | function globalFunction(): void 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.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 | class DummyException extends Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/Exception/TransferException.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class TransferException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/Exception.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | interface Exception extends PsrClientException 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_execution_order_options.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * @deprecated since version 9.18 and will be removed in 10.0. 9 | */ 10 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodOneLineAnnotationTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/class-with-anonymous-function-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report: 4 | %s 5 | 6 | Summary: 7 | Classes: 0.00% (0/1) 8 | Methods: 0.00% (0/1) 9 | Lines: 87.50% (7/8) 10 | 11 | CoveredClassWithAnonymousFunctionInStaticMethod 12 | Methods: 0.00% ( 0/ 1) Lines: 87.50% ( 7/ 8) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/RiskyTest.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 | interface RiskyTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.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 | interface SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AnInterface.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 | interface AnInterface 11 | { 12 | public function doSomething(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MultiDependencyTest_result_cache.txt: -------------------------------------------------------------------------------- 1 | C:30:"PHPUnit\Runner\TestResultCache":289:{a:2:{s:7:"defects";a:1:{s:29:"MultiDependencyTest::testFive";i:1;}s:5:"times";a:5:{s:28:"MultiDependencyTest::testOne";d:0;s:28:"MultiDependencyTest::testTwo";d:0;s:30:"MultiDependencyTest::testThree";d:0;s:29:"MultiDependencyTest::testFour";d:0;s:29:"MultiDependencyTest::testFive";d:0;}}} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/74/NewException.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 | class NewException extends Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1351/ChildProcessClass1351.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 | class ChildProcessClass1351 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/Hook.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 | interface Hook 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.defaulttestsuite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../_files/DummyFooTest.php 5 | 6 | 7 | ../_files/DummyBarTest.php 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/psr/cache/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AnotherInterface.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 | interface AnotherInterface 11 | { 12 | public function doSomethingElse(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.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 foo; 11 | 12 | function func() 13 | { 14 | return true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NonStatic.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 | class NonStatic 11 | { 12 | public function suite(): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TraversableMockTestInterface.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 | interface TraversableMockTestInterface extends \Traversable 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/README.md: -------------------------------------------------------------------------------- 1 | Symfony Service Contracts 2 | ========================= 3 | 4 | A set of abstractions extracted out of the Symfony components. 5 | 6 | Can be used to build on semantics that the Symfony components proved useful - and 7 | that already have battle tested implementations. 8 | 9 | See https://github.com/symfony/contracts/blob/main/README.md for more information. 10 | -------------------------------------------------------------------------------- /vendor/php-http/client-common/src/Exception/ClientErrorException.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class ClientErrorException extends HttpException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/client-common/src/Exception/ServerErrorException.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class ServerErrorException extends HttpException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception/ClassInstantiationFailedException.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | final class ClassInstantiationFailedException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class2.php: -------------------------------------------------------------------------------- 1 | method_in_anonymous_class(); 11 | } 12 | 13 | public function methodTwo() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/http-interop/http-factory-guzzle/src/UriFactory.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class LoopException extends RequestException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class OutputError extends AssertionFailedError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CustomPrinter.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 | use PHPUnit\TextUI\ResultPrinter; 11 | 12 | class CustomPrinter extends ResultPrinter 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotVoidTestCase.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class NotVoidTestCase extends TestCase 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/bootstrap1216.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 | $_ENV['configAvailableInBootstrap'] = isset($_ENV['loadedFromConfig']); 11 | -------------------------------------------------------------------------------- /vendor/php-http/client-common/src/Exception/MultipleRedirectionException.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class MultipleRedirectionException extends HttpException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/src/PseudoTypes/ListShape.php: -------------------------------------------------------------------------------- 1 | getItems()) . '}'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Attribute.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/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\Timer; 11 | 12 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source3.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 | interface TestHook extends Hook 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/EmptyTestCaseTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class EmptyTestCaseTest extends TestCase 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class CodeCoverageException extends Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AnInterfaceWithReturnType.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 | interface AnInterfaceWithReturnType 11 | { 12 | public function returnAnArray(): array; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Bar.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 | class Bar 11 | { 12 | public function doSomethingElse() 13 | { 14 | return 'result'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InterfaceWithStaticMethod.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 | interface InterfaceWithStaticMethod 11 | { 12 | public static function staticMethod(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/dibi/dibi/src/Dibi/Drivers/Sqlite3Driver.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class CircularRedirectionException extends HttpException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithSelfTypeHint.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 | class ClassWithSelfTypeHint 11 | { 12 | public function foo(self $foo) 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InterfaceWithSemiReservedMethodName.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 | interface InterfaceWithSemiReservedMethodName 11 | { 12 | public function unset(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/cli/test-file-not-found.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Test incorrect testFile is reported 3 | --ARGS-- 4 | --no-configuration tests nonExistingFile.php 5 | --FILE-- 6 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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 | class Exception extends \RuntimeException implements \PHPUnit\Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithStaticMethod.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 | class ClassWithStaticMethod 11 | { 12 | public static function staticMethod() 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExampleTrait.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 | trait ExampleTrait 11 | { 12 | public function ohHai() 13 | { 14 | return __FUNCTION__; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceA.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 | require_once __DIR__ . '/InheritanceB.php'; 11 | 12 | class InheritanceA extends InheritanceB 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InheritedTestCase.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 | class InheritedTestCase extends OneTestCase 11 | { 12 | public function test2(): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/684/Issue684Test.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class Foo_Bar_Issue684Test extends TestCase 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/php-http/client-common/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in(__DIR__.'/src') 5 | ->in(__DIR__.'/tests') 6 | ->name('*.php') 7 | ; 8 | 9 | $config = new PhpCsFixer\Config(); 10 | 11 | return $config 12 | ->setRiskyAllowed(true) 13 | ->setRules([ 14 | '@Symfony' => true, 15 | 'single_line_throw' => false, 16 | ]) 17 | ->setFinder($finder) 18 | ; 19 | -------------------------------------------------------------------------------- /vendor/php-http/client-common/src/Exception/HttpClientNotFoundException.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | final class HttpClientNotFoundException extends TransferException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /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 | class Notice extends Error 13 | { 14 | public static $enabled = true; 15 | } 16 | -------------------------------------------------------------------------------- /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 | class Warning extends Error 13 | { 14 | public static $enabled = true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class RiskyTestError extends AssertionFailedError implements RiskyTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionWithThrowable.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 | interface ExceptionWithThrowable extends \Throwable 11 | { 12 | public function getAdditionalInformation(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Foo.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 | class Foo 11 | { 12 | public function doSomething(Bar $bar) 13 | { 14 | return $bar->doSomethingElse(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StringableClass.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 | class StringableClass 11 | { 12 | public function __toString() 13 | { 14 | return '12345'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/src/UriFactoryInterface.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 | if (\PHP_VERSION_ID < 80000) { 13 | class ValueError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class CoveredCodeNotExecutedException extends RiskyTestError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | class Deprecated extends Error 13 | { 14 | public static $enabled = true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class InvalidCoversTargetException extends CodeCoverageException 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class MissingCoversAnnotationException extends RiskyTestError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class SkippedTestError extends AssertionFailedError implements SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AssertionExample.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 | class AssertionExample 11 | { 12 | public function doSomething(): void 13 | { 14 | \assert(false); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OverrideTestCase.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 | class OverrideTestCase extends OneTestCase 11 | { 12 | public function testCase($arg = ''): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/php-http/message-factory/src/MessageFactory.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * @deprecated since version 1.1, use Psr\Http\Message\RequestFactoryInterface and Psr\Http\Message\ResponseFactoryInterface instead. 11 | */ 12 | interface MessageFactory extends RequestFactory, ResponseFactory 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | /** 13 | * Marker interface for PHPUnit exceptions. 14 | */ 15 | interface Exception extends \Throwable 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector; 14 | 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php73/Resources/stubs/JsonException.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 | if (\PHP_VERSION_ID < 70300) { 13 | class JsonException extends Exception 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/string/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\String\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/.php-cs-fixer.php: -------------------------------------------------------------------------------- 1 | in(__DIR__.'/src') 5 | ->name('*.php') 6 | ; 7 | 8 | $config = (new PhpCsFixer\Config()) 9 | ->setRiskyAllowed(true) 10 | ->setRules([ 11 | '@Symfony' => true, 12 | 'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7 13 | ]) 14 | ->setFinder($finder) 15 | ; 16 | 17 | return $config; 18 | -------------------------------------------------------------------------------- /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 | final class Directory extends Node 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class IncompleteTestError extends AssertionFailedError implements IncompleteTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/UnexpectedValueException.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 | final class UnexpectedValueException extends Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MockTestInterface.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 | interface MockTestInterface 11 | { 12 | public function returnAnything(); 13 | 14 | public function returnAnythingElse(); 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Struct.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 | class Struct 11 | { 12 | public $var; 13 | 14 | public function __construct($var) 15 | { 16 | $this->var = $var; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Mbstring 2 | =========================== 3 | 4 | This component provides a partial, native PHP implementation for the 5 | [Mbstring](https://php.net/mbstring) extension. 6 | 7 | More information can be found in the 8 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). 9 | 10 | License 11 | ======= 12 | 13 | This library is released under the [MIT license](LICENSE). 14 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.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 | if (\PHP_VERSION_ID < 80000) { 13 | class UnhandledMatchError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/http-interop/http-factory-guzzle/src/RequestFactory.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState; 14 | 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phar-io/version/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Version; 12 | 13 | interface Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception/NotFoundException.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | /* final */ class NotFoundException extends \RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Book.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 | 11 | /** 12 | * A book. 13 | */ 14 | class Book 15 | { 16 | // the order of properties is important for testing the cycle! 17 | public $author; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithScalarTypeDeclarations.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 | class ClassWithScalarTypeDeclarations 11 | { 12 | public function foo(string $string, int $int): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.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 | class ConcreteTest extends AbstractTest 11 | { 12 | public function testTwo(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoTestCases.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class NoTestCases extends TestCase 13 | { 14 | public function noTestCase(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/src/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 Webmozart\Assert; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /src/Routerboard/IRouterBoardBackup.php: -------------------------------------------------------------------------------- 1 | createOptionsResolver(); 15 | 16 | return $this->get('deploy_keys', $resolver->resolve($parameters)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | interface Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/values/Requirement.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | interface Requirement { 14 | } 15 | -------------------------------------------------------------------------------- /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 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NothingTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class NothingTest extends TestCase 13 | { 14 | public function testNothing(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Logger/ILogger.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/SomeClass.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 | class SomeClass 11 | { 12 | public function doSomething($a, $b) 13 | { 14 | } 15 | 16 | public function doSomethingElse($c) 17 | { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | tests 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotTrait.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | trait SnapshotTrait 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/invalidversion.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/src/PseudoTypes/ArrayShapeItem.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | public function testSomething() 12 | { 13 | $o = new Foo\CoveredClass; 14 | $o->publicMethod(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/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\Timer; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | /.ant_targets 2 | /.idea 3 | /.php_cs 4 | /.php_cs.cache 5 | /build/documentation 6 | /build/logfiles 7 | /build/phar 8 | /build/phpdox 9 | /build/*.phar 10 | /build/*.phar.asc 11 | /build/binary-phar-autoload.php 12 | /cache.properties 13 | /composer.lock 14 | /tests/end-to-end/*.diff 15 | /tests/end-to-end/*.exp 16 | /tests/end-to-end/*.log 17 | /tests/end-to-end/*.out 18 | /tests/end-to-end/*.php 19 | /vendor 20 | .phpunit.result.cache 21 | .psalm 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoArgTestCaseTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class NoArgTestCaseTest extends TestCase 13 | { 14 | public function testNothing(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StopsOnWarningTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class StopsOnWarningTest extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/Exception/StrategyUnavailableException.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | class StrategyUnavailableException extends \RuntimeException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Node.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; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/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 | use PHPUnit\Framework\TestCase; 11 | 12 | class Failure extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->fail(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceB.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class InheritanceB extends TestCase 13 | { 14 | public function testSomething(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MockRunner.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 | use PHPUnit\Runner\BaseTestRunner; 11 | 12 | class MockRunner extends BaseTestRunner 13 | { 14 | protected function runFailed($message): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class ThrowNoExceptionTestCase extends TestCase 13 | { 14 | public function test(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/bootstrap797.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 | // PHPUnit_Framework_TestCase itself does not exist. :-) 11 | require __DIR__ . '/../../../../bootstrap.php'; 12 | 13 | const GITHUB_ISSUE = 797; 14 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotFunctions.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | function snapshotFunction() 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM composer:latest as setup 2 | 3 | RUN mkdir /guzzle 4 | 5 | WORKDIR /guzzle 6 | 7 | RUN set -xe \ 8 | && composer init --name=guzzlehttp/test --description="Simple project for testing Guzzle scripts" --author="Márk Sági-Kazár " --no-interaction \ 9 | && composer require guzzlehttp/guzzle 10 | 11 | 12 | FROM php:7.3 13 | 14 | RUN mkdir /guzzle 15 | 16 | WORKDIR /guzzle 17 | 18 | COPY --from=setup /guzzle /guzzle 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/bootstrap.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 | require __DIR__ . '/../vendor/autoload.php'; 11 | 12 | define( 13 | 'TEST_FILES_PATH', 14 | __DIR__ . DIRECTORY_SEPARATOR . '_fixture' . DIRECTORY_SEPARATOR 15 | ); 16 | -------------------------------------------------------------------------------- /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 | class BadMethodCallException extends \BadMethodCallException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.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 | interface AfterLastTestHook extends Hook 13 | { 14 | public function executeAfterLastTest(): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.my.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 | class ConcreteWithMyCustomExtensionTest extends AbstractTest 11 | { 12 | public function testTwo(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DoNoAssertionTestCase.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class DoNoAssertionTestCase extends TestCase 13 | { 14 | public function testNothing(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/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 | class Test extends PHPUnit\Framework\TestCase 11 | { 12 | public function testOne(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/php-http/httplug/src/HttpClient.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 | interface BeforeFirstTestHook extends Hook 13 | { 14 | public function executeBeforeFirstTest(): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.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 | interface BeforeTestHook extends TestHook 13 | { 14 | public function executeBeforeTest(string $test): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/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 | use PHPUnit\Framework\TestCase; 11 | 12 | class Success extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448-not-existing-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #2448: Weird error when trying to run `Test` from `Test.php` but `Test.php` does not exist 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | interface BlacklistedInterface 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.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 | if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) { 13 | class PhpToken extends Symfony\Polyfill\Php80\PhpToken 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/AggregateException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestRisky.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestRisky extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->markAsRisky(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestError extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | throw new Exception; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/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\CodeCoverage; 11 | 12 | /** 13 | * Exception interface for php-code-coverage component. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | ## Installation 6 | 7 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-text-template` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Text_Template: 8 | 9 | { 10 | "require": { 11 | "phpunit/php-text-template": "~1.2" 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /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 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class.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 | * Interface for exceptions used by PHPUnit_MockObject. 14 | */ 15 | interface Exception extends \Throwable 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phar-extension-suppressed.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --configuration tests/_files/phpunit-example-extension 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Issue2435Test extends PHPUnit\Framework\TestCase 11 | { 12 | public function testOne(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/http-interop/http-factory-guzzle/src/ResponseFactory.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 | use PHPUnit\Framework\TestCase; 11 | 12 | abstract class AbstractTest extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | $this->assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState; 14 | 15 | class RuntimeException extends \RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedChildClass.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | class BlacklistedChildClass extends BlacklistedClass 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedClass.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | class BlacklistedClass 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestSkipped.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestSkipped extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->markTestSkipped('Skipped test'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1570/Issue1570Test.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1570Test extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | print '*'; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/README.md: -------------------------------------------------------------------------------- 1 | # Recursion Context 2 | 3 | ... 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/recursion-context 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/recursion-context 14 | 15 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/php-http/message/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- 1 | in(__DIR__.'/src') 5 | ->in(__DIR__.'/spec') 6 | ->name('*.php') 7 | ; 8 | 9 | $config = new PhpCsFixer\Config(); 10 | 11 | return $config 12 | ->setRiskyAllowed(true) 13 | ->setRules([ 14 | '@Symfony' => true, 15 | 'single_line_throw' => false, 16 | 'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7 17 | ]) 18 | ->setFinder($finder) 19 | ; 20 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php: -------------------------------------------------------------------------------- 1 | name = $name; 17 | } 18 | 19 | 20 | public function __toString(): string 21 | { 22 | return $this->name; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithToString.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 | 11 | /** 12 | * A class with a __toString() method. 13 | */ 14 | class ClassWithToString 15 | { 16 | public function __toString() 17 | { 18 | return 'string representation'; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyBarTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class DummyBarTest extends TestCase 13 | { 14 | public function testBarEqualsBar(): void 15 | { 16 | $this->assertEquals('Bar', 'Bar'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyFooTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class DummyFooTest extends TestCase 13 | { 14 | public function testFooEqualsFoo(): void 15 | { 16 | $this->assertEquals('Foo', 'Foo'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestGeneratorMaker.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 | class TestGeneratorMaker 11 | { 12 | public function create($array = []) 13 | { 14 | foreach ($array as $key => $value) { 15 | yield $key => $value; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | The Yaml component loads and dumps YAML files. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/yaml.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php: -------------------------------------------------------------------------------- 1 | request = $request; 17 | } 18 | 19 | public function getRequest(): RequestInterface 20 | { 21 | return $this->request; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements Exception {} 15 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php: -------------------------------------------------------------------------------- 1 | text = $text; 17 | } 18 | 19 | 20 | public function __toString(): string 21 | { 22 | return $this->text; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility/MockObject.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_MockObject; 13 | 14 | interface MockObject extends PHPUnit_Framework_MockObject_MockObject 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestIncomplete extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->markTestIncomplete('Incomplete test'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class WasRun extends TestCase 13 | { 14 | public $wasRun = false; 15 | 16 | protected function runTest(): void 17 | { 18 | $this->wasRun = true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector; 14 | 15 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/php-http/cache-plugin/src/Cache/Generator/CacheKeyGenerator.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | interface CacheKeyGenerator 13 | { 14 | /** 15 | * Generate a cache key from a Request. 16 | * 17 | * @return string 18 | */ 19 | public function generate(RequestInterface $request); 20 | } 21 | -------------------------------------------------------------------------------- /vendor/php-http/message/src/Encoding/DechunkStream.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class DechunkStream extends FilteredStream 13 | { 14 | protected function readFilter(): string 15 | { 16 | return 'dechunk'; 17 | } 18 | 19 | protected function writeFilter(): string 20 | { 21 | return 'chunk'; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php: -------------------------------------------------------------------------------- 1 | type = $type; 17 | } 18 | 19 | 20 | public function __toString(): string 21 | { 22 | return '?' . $this->type; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.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 | interface AfterSuccessfulTestHook extends TestHook 13 | { 14 | public function executeAfterSuccessfulTest(string $test, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/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 | use PHPUnit\Framework\TestCase; 11 | 12 | class IncompleteTest extends TestCase 13 | { 14 | public function testIncomplete(): void 15 | { 16 | $this->markTestIncomplete('Test incomplete'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestWarning.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 | use PHPUnit\Framework\TestCase; 11 | use PHPUnit\Framework\Warning; 12 | 13 | class TestWarning extends TestCase 14 | { 15 | protected function runTest(): void 16 | { 17 | throw new Warning; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1265/Issue1265Test.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1265Test extends TestCase 13 | { 14 | public function testTrue(): void 15 | { 16 | $this->assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/873/Issue873Test.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 | if (\extension_loaded('xdebug')) { 11 | \xdebug_disable(); 12 | } 13 | 14 | throw new Exception( 15 | 'PHPUnit suppresses exceptions thrown outside of test case function' 16 | ); 17 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotDomDocument.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | use DomDocument; 16 | 17 | class SnapshotDomDocument extends DomDocument 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /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 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/Stringable.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 | if (\PHP_VERSION_ID < 80000) { 13 | interface Stringable 14 | { 15 | /** 16 | * @return string 17 | */ 18 | public function __toString(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class InvalidUrlException extends \InvalidArgumentException implements Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/php-http/discovery/src/NotFoundException.php: -------------------------------------------------------------------------------- 1 | 11 | * 12 | * @deprecated since since version 1.0, and will be removed in 2.0. Use {@link \Http\Discovery\Exception\NotFoundException} instead. 13 | */ 14 | final class NotFoundException extends RealNotFoundException 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Doubler; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface DoublerException extends Exception {} 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.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 | interface AfterRiskyTestHook extends TestHook 13 | { 14 | public function executeAfterRiskyTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.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 | interface AfterTestErrorHook extends TestHook 13 | { 14 | public function executeAfterTestError(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AbstractMockTestClass.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 | abstract class AbstractMockTestClass implements MockTestInterface 11 | { 12 | abstract public function doSomething(); 13 | 14 | public function returnAnything() 15 | { 16 | return 1; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IniTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class IniTest extends TestCase 13 | { 14 | public function testIni(): void 15 | { 16 | $this->assertEquals('application/x-test', \ini_get('default_mimetype')); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/Issue1330Test.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1330Test extends TestCase 13 | { 14 | public function testTrue(): void 15 | { 16 | $this->assertTrue(PHPUNIT_1330); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class InvalidEmailException extends \InvalidArgumentException implements Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Prophecy; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface ProphecyException extends Exception {} 17 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFloatNode.php: -------------------------------------------------------------------------------- 1 | value = $value; 17 | } 18 | 19 | 20 | public function __toString(): string 21 | { 22 | return $this->value; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - 7.3 7 | - 7.4snapshot 8 | 9 | sudo: false 10 | 11 | before_install: 12 | - composer self-update 13 | - composer clear-cache 14 | 15 | install: 16 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest 17 | 18 | script: 19 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 20 | 21 | after_success: 22 | - bash <(curl -s https://codecov.io/bash) 23 | 24 | notifications: 25 | email: false 26 | 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.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 | interface AfterSkippedTestHook extends TestHook 13 | { 14 | public function executeAfterSkippedTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.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 | interface AfterTestFailureHook extends TestHook 13 | { 14 | public function executeAfterTestFailure(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.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 | interface AfterTestWarningHook extends TestHook 13 | { 14 | public function executeAfterTestWarning(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OneTestCase.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class OneTestCase extends TestCase 13 | { 14 | public function noTestCase(): void 15 | { 16 | } 17 | 18 | public function testCase($arg = ''): void 19 | { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StaticMockTestClass.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 | class StaticMockTestClass 11 | { 12 | public static function doSomething() 13 | { 14 | } 15 | 16 | public static function doSomethingElse() 17 | { 18 | return static::doSomething(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php: -------------------------------------------------------------------------------- 1 | value = $value; 17 | } 18 | 19 | 20 | public function __toString(): string 21 | { 22 | return $this->value; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_class_and_anonymous_function.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class CoverageNoneTest extends TestCase 13 | { 14 | public function testSomething(): void 15 | { 16 | $o = new CoveredClass; 17 | $o->publicMethod(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class ThrowExceptionTestCase extends TestCase 13 | { 14 | public function test(): void 15 | { 16 | throw new RuntimeException('A runtime error occurred'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-intl-idn/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Intl: Idn 2 | ============================ 3 | 4 | This component provides [`idn_to_ascii`](https://php.net/idn-to-ascii) and [`idn_to_utf8`](https://php.net/idn-to-utf8) functions to users who run php versions without the [Intl](https://php.net/intl) 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 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/PHPStanFactory.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Prediction; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface PredictionException extends Exception {} 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Constraint/SameSize.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\Constraint; 11 | 12 | class SameSize extends Count 13 | { 14 | public function __construct(iterable $expected) 15 | { 16 | parent::__construct($this->getCountOf($expected)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.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 | interface AfterIncompleteTestHook extends TestHook 13 | { 14 | public function executeAfterIncompleteTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithVariadicArgumentMethod.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 | 11 | /** 12 | * A class with a method that takes a variadic argument. 13 | */ 14 | class ClassWithVariadicArgumentMethod 15 | { 16 | public function foo(...$args) 17 | { 18 | return $args; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class NotPublicTestCase extends TestCase 13 | { 14 | public function testPublic(): void 15 | { 16 | } 17 | 18 | protected function testNotPublic(): void 19 | { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/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\Filesystem\Exception; 13 | 14 | /** 15 | * @author Théo Fidry 16 | */ 17 | class RuntimeException extends \RuntimeException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/DirectoryNotFoundException.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\Finder\Exception; 13 | 14 | /** 15 | * @author Andreas Erhard 16 | */ 17 | class DirectoryNotFoundException extends \InvalidArgumentException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/m4tthumphrey/php-gitlab-api/lib/Gitlab/Model/Stateful.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 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 Prophecy\Exception\Doubler; 13 | 14 | use RuntimeException; 15 | 16 | class DoubleException extends RuntimeException implements DoublerException {} 17 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/ParserConfig.php: -------------------------------------------------------------------------------- 1 | useLinesAttributes = $usedAttributes['lines'] ?? false; 18 | $this->useIndexAttributes = $usedAttributes['indexes'] ?? false; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /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 | /** 13 | * A marker interface for marking any exception/error as result of an unit 14 | * test as incomplete implementation or currently not implemented. 15 | */ 16 | interface IncompleteTest 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AssertionExampleTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | class AssertionExampleTest extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | $e = new AssertionExample; 17 | 18 | $e->doSomething(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/list-suites.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --list-suites --configuration=__DIR__.'/../_files/configuration.suites.xml' 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | /** 13 | * @group foo 14 | */ 15 | class OneTest extends TestCase 16 | { 17 | public function testSomething(): void 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/TwoTest.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 | use PHPUnit\Framework\TestCase; 11 | 12 | /** 13 | * @group bar 14 | */ 15 | class TwoTest extends TestCase 16 | { 17 | public function testSomething(): void 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedImplementor.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 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | class BlacklistedImplementor implements BlacklistedInterface 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/AccessDeniedException.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\Finder\Exception; 13 | 14 | /** 15 | * @author Jean-François Simon 16 | */ 17 | class AccessDeniedException extends \UnexpectedValueException 18 | { 19 | } 20 | --------------------------------------------------------------------------------