├── vendor ├── bin │ └── phpunit ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── exporter │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ └── .travis.yml │ ├── recursion-context │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── .travis.yml │ │ └── README.md │ ├── resource-operations │ │ ├── .gitignore │ │ └── README.md │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── .travis.yml │ │ └── README.md │ ├── comparator │ │ ├── .gitignore │ │ └── tests │ │ │ └── _fixture │ │ │ ├── TestClass.php │ │ │ ├── TestClassComparator.php │ │ │ ├── ClassWithToString.php │ │ │ ├── Book.php │ │ │ └── Struct.php │ ├── 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 │ │ └── .travis.yml │ ├── diff │ │ ├── .gitignore │ │ ├── tests │ │ │ └── fixtures │ │ │ │ ├── patch.txt │ │ │ │ └── patch2.txt │ │ ├── src │ │ │ └── Exception │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ └── .travis.yml │ ├── object-reflector │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── README.md │ │ ├── .travis.yml │ │ └── tests │ │ │ └── _fixture │ │ │ ├── ParentClass.php │ │ │ └── ClassWithIntegerAttributeName.php │ ├── environment │ │ └── .gitignore │ └── object-enumerator │ │ ├── .gitignore │ │ ├── src │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ │ ├── README.md │ │ └── .travis.yml ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── .travis.yml │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── DummyException.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── Struct.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── configuration.one-file-suite.xml │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ ├── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ │ └── phpunit-example-extension-1.0.1.phar │ │ │ │ │ ├── tests │ │ │ │ │ │ └── OneTest.php │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── IniTest.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── AssertionExampleTest.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── TestAutoreferenced.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── ParseTestMethodAnnotationsMock.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── IgnoreCodeCoverageClass.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── DataProviderIssue2859 │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ └── tests │ │ │ │ │ │ └── another │ │ │ │ │ │ └── TestWithDataProviderTest.php │ │ │ │ ├── DataProviderIssue2833 │ │ │ │ │ ├── SecondTest.php │ │ │ │ │ └── FirstTest.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── BaseTestListenerSample.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── configuration.defaulttestsuite.xml │ │ │ │ ├── DataProviderIssue2922 │ │ │ │ │ ├── SecondTest.php │ │ │ │ │ └── FirstTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── TestIteratorAggregate.php │ │ │ │ ├── StopOnWarningTestSuite.php │ │ │ │ ├── IsolationTest.php │ │ │ │ ├── MyCommand.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ │ │ ├── FalsyConstraint.php │ │ │ │ ├── TruthyConstraint.php │ │ │ │ ├── TestDoxGroupTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── Book.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ ├── Singleton.php │ │ │ │ ├── DummyBarTest.php │ │ │ │ ├── DummyFooTest.php │ │ │ │ ├── IgnoreCodeCoverageClassTest.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── DataProviderTest.php │ │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ ├── DependencySuccessTest.php │ │ │ │ ├── TestIteratorAggregate2.php │ │ │ │ ├── Author.php │ │ │ │ ├── TestWithTest.php │ │ │ │ └── WrapperIteratorAggregate.php │ │ │ ├── end-to-end │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── regression │ │ │ │ │ ├── GitHub │ │ │ │ │ │ ├── 74 │ │ │ │ │ │ │ ├── NewException.php │ │ │ │ │ │ │ └── Issue74Test.php │ │ │ │ │ │ ├── 322 │ │ │ │ │ │ │ ├── phpunit322.xml │ │ │ │ │ │ │ └── Issue322Test.php │ │ │ │ │ │ ├── 433 │ │ │ │ │ │ │ └── Issue433Test.php │ │ │ │ │ │ ├── 503 │ │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ │ ├── 581 │ │ │ │ │ │ │ └── Issue581Test.php │ │ │ │ │ │ ├── 765 │ │ │ │ │ │ │ └── Issue765Test.php │ │ │ │ │ │ ├── 797 │ │ │ │ │ │ │ ├── bootstrap797.php │ │ │ │ │ │ │ └── Issue797Test.php │ │ │ │ │ │ ├── 873 │ │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ │ ├── 1149 │ │ │ │ │ │ │ └── Issue1149Test.php │ │ │ │ │ │ ├── 1216 │ │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ │ ├── phpunit1216.xml │ │ │ │ │ │ │ └── Issue1216Test.php │ │ │ │ │ │ ├── 1265 │ │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ │ ├── 1330 │ │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ │ ├── 1337 │ │ │ │ │ │ │ └── Issue1337Test.php │ │ │ │ │ │ ├── 1348 │ │ │ │ │ │ │ └── Issue1348Test.php │ │ │ │ │ │ ├── 1351 │ │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ │ ├── 1374 │ │ │ │ │ │ │ └── Issue1374Test.php │ │ │ │ │ │ ├── 1437 │ │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ │ ├── 1468 │ │ │ │ │ │ │ └── Issue1468Test.php │ │ │ │ │ │ ├── 1471 │ │ │ │ │ │ │ └── Issue1471Test.php │ │ │ │ │ │ ├── 1570 │ │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ │ ├── 2145 │ │ │ │ │ │ │ └── Issue2145Test.php │ │ │ │ │ │ ├── 2158 │ │ │ │ │ │ │ └── constant.inc │ │ │ │ │ │ ├── 2380 │ │ │ │ │ │ │ └── Issue2380Test.php │ │ │ │ │ │ ├── 2382 │ │ │ │ │ │ │ └── Issue2382Test.php │ │ │ │ │ │ ├── 2435 │ │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ │ ├── 2448 │ │ │ │ │ │ │ └── Test.php │ │ │ │ │ │ ├── 2591 │ │ │ │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ │ │ │ ├── bootstrapWithBootstrapNoGlobal.php │ │ │ │ │ │ │ └── bootstrapNoBootstrap.php │ │ │ │ │ │ ├── 2731 │ │ │ │ │ │ │ └── Issue2731Test.php │ │ │ │ │ │ ├── 2811 │ │ │ │ │ │ │ └── Issue2811Test.php │ │ │ │ │ │ ├── 2830 │ │ │ │ │ │ │ └── Issue2830Test.php │ │ │ │ │ │ ├── 2972 │ │ │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ │ │ ├── 2448-not-existing-test.phpt │ │ │ │ │ │ ├── 2435.phpt │ │ │ │ │ │ ├── 2972.phpt │ │ │ │ │ │ ├── 1472.phpt │ │ │ │ │ │ └── 2380.phpt │ │ │ │ │ └── Trac │ │ │ │ │ │ ├── 523 │ │ │ │ │ │ └── Issue523Test.php │ │ │ │ │ │ ├── 684 │ │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ │ ├── 783 │ │ │ │ │ │ ├── OneTest.php │ │ │ │ │ │ ├── TwoTest.php │ │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ │ └── ChildSuite.php │ │ │ │ │ │ └── 1021 │ │ │ │ │ │ └── Issue1021Test.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ ├── phpt-stderr.phpt │ │ │ │ ├── phar-extension-suppressed.phpt │ │ │ │ ├── defaulttestsuite.phpt │ │ │ │ ├── list-suites.phpt │ │ │ │ ├── dataprovider-issue-2833.phpt │ │ │ │ ├── dataprovider-issue-2859.phpt │ │ │ │ ├── dependencies2.phpt │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── concrete-test-class.phpt │ │ │ │ ├── default.phpt │ │ │ │ ├── testdox.phpt │ │ │ │ └── forward-compatibility.phpt │ │ │ └── fail │ │ │ │ └── fail.phpt │ │ ├── .gitattributes │ │ ├── .editorconfig │ │ ├── src │ │ │ ├── Util │ │ │ │ └── PHP │ │ │ │ │ └── eval-stdin.php │ │ │ ├── Framework │ │ │ │ ├── RiskyTest.php │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── OutputError.php │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── Error │ │ │ │ │ ├── Notice.php │ │ │ │ │ ├── Warning.php │ │ │ │ │ └── Deprecated.php │ │ │ │ ├── RiskyTestError.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── SkippedTestError.php │ │ │ │ ├── IncompleteTestError.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ └── UnintentionallyCoveredCodeError.php │ │ │ ├── Runner │ │ │ │ └── Exception.php │ │ │ └── Exception.php │ │ ├── .gitignore │ │ └── phive.xml │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── 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 │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ └── source_with_ignore.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Report │ │ │ │ ├── Html │ │ │ │ │ └── Renderer │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ └── coverage_bar.html.dist │ │ │ │ └── Xml │ │ │ │ │ └── Directory.php │ │ │ └── Exception │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ └── MissingCoversAnnotationException.php │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── README.md │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── README.md │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .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 │ │ │ │ └── source4.php │ │ │ └── bootstrap.php │ │ └── .travis.yml │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── src │ │ ├── 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_class_method.tpl.dist │ │ │ └── mocked_static_method.tpl.dist │ │ ├── Exception │ │ │ ├── RuntimeException.php │ │ │ ├── BadMethodCallException.php │ │ │ └── Exception.php │ │ └── ForwardCompatibility │ │ │ └── MockObject.php │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── StringableClass.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── AbstractTrait.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── MethodCallback.php │ │ │ └── SingletonClass.php │ │ └── bootstrap.php │ │ ├── CONTRIBUTING.md │ │ └── README.md ├── doctrine │ └── instantiator │ │ ├── docs │ │ └── en │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ ├── .github │ │ └── FUNDING.yml │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ └── ExceptionInterface.php │ │ └── InstantiatorInterface.php ├── phar-io │ ├── version │ │ ├── .gitignore │ │ ├── src │ │ │ ├── InvalidVersionException.php │ │ │ ├── Exception.php │ │ │ └── UnsupportedVersionConstraintException.php │ │ └── phive.xml │ └── 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 │ │ │ └── InvalidApplicationNameException.php │ │ ├── values │ │ │ ├── Requirement.php │ │ │ ├── Library.php │ │ │ └── Application.php │ │ └── xml │ │ │ └── ExtElement.php │ │ └── phive.xml ├── theseer │ └── tokenizer │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php ├── phpdocumentor │ ├── reflection-common │ │ └── .github │ │ │ └── dependabot.yml │ ├── type-resolver │ │ ├── phpbench.json │ │ └── src │ │ │ └── Type.php │ └── reflection-docblock │ │ └── src │ │ └── DocBlock │ │ └── Tags │ │ └── Reference │ │ └── Reference.php ├── autoload.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 │ │ └── Doctrine │ │ │ └── DoctrineProxyFilter.php │ │ └── deep_copy.php ├── composer │ ├── autoload_namespaces.php │ └── autoload_files.php ├── webmozart │ └── assert │ │ ├── .editorconfig │ │ └── psalm.xml ├── symfony │ └── polyfill-ctype │ │ └── README.md ├── phpspec │ └── prophecy │ │ └── src │ │ └── Prophecy │ │ ├── Exception │ │ ├── InvalidArgumentException.php │ │ ├── Doubler │ │ │ ├── DoublerException.php │ │ │ └── DoubleException.php │ │ ├── Prophecy │ │ │ └── ProphecyException.php │ │ └── Prediction │ │ │ ├── PredictionException.php │ │ │ └── NoCallsException.php │ │ └── Doubler │ │ └── DoubleInterface.php └── beberlei │ └── assert │ ├── LICENSE │ └── phpstan-code.neon ├── .gitattributes └── src └── Exceptions └── NoStepsException.php /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 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-file-iterator/.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/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.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-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | /from.txt.orig -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NonStatic.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue30.php: -------------------------------------------------------------------------------- 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 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapWithBootstrap.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/MockTestInterface.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapWithBootstrapNoGlobal.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoTestCases.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoArgTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | fail(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceB.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset=utf-8 5 | end_of_line=lf 6 | trim_trailing_whitespace=true 7 | insert_final_newline=true 8 | indent_style=space 9 | indent_size=4 10 | 11 | [*.yml] 12 | indent_size=2 13 | -------------------------------------------------------------------------------- /src/Exceptions/NoStepsException.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-args.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports ARGS section 3 | --ARGS-- 4 | help 5 | --FILE-- 6 | 0 && $argv[1] == 'help') { 8 | echo 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestSkipped.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1570/Issue1570Test.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../../tests/end-to-end/debug.phpt 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapNoBootstrap.php: -------------------------------------------------------------------------------- 1 | $value) { 7 | yield $key => $value; 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.1.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.1.phar -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/SomeClass.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OneTestCase.php: -------------------------------------------------------------------------------- 1 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/phpunit1216.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/Issue1330Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2435/Issue2435Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /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/tests/_files/AssertionExampleTest.php: -------------------------------------------------------------------------------- 1 | doSomething(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /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/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/TwoTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2811/Issue2811Test.php: -------------------------------------------------------------------------------- 1 | expectExceptionMessage('hello'); 7 | 8 | throw new \Exception('hello'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /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 | myTestData = $data; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to `sebastianbergmann/code-unit-reverse-lookup` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. 4 | 5 | ## 1.0.0 - 2016-02-13 6 | 7 | ### Added 8 | 9 | * Initial release 10 | 11 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | expects($any); 6 | return call_user_func_array(array($expects, 'method'), func_get_args()); 7 | } 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type} 3 | { 4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/BankAccount-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report: 4 | %s 5 | 6 | Summary: 7 | Classes: 0.00% (0/1) 8 | Methods: 75.00% (3/4) 9 | Lines: 50.00% (5/10) 10 | 11 | BankAccount 12 | Methods: 75.00% ( 3/ 4) Lines: 50.00% ( 5/ 10) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source5.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClass.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | assertNotEmpty('Hello world!'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractTrait.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | expectOutputString('*'); 9 | 10 | print '*'; 11 | 12 | $this->assertTrue(false); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 9 | "foo\n", 10 | "foo\r\n" 11 | ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | eval('?>' . \file_get_contents('php://stdin')); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/end-to-end/regression/GitHub/2731/Issue2731Test.php: -------------------------------------------------------------------------------- 1 | expectException(Exception::class); 7 | $this->expectExceptionMessage(''); 8 | 9 | throw new Exception('message'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php: -------------------------------------------------------------------------------- 1 | endCount++; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tests/OneTest.php: -------------------------------------------------------------------------------- 1 | assertExampleExtensionInitialized(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/Issue797Test.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 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/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.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/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/phpunit/phpunit/tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.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/CoverageMethodOneLineAnnotationTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/74/Issue74Test.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: 50.00% (1/2) 9 | Lines: 87.50% (7/8) 10 | 11 | CoveredClassWithAnonymousFunctionInStaticMethod 12 | Methods: 50.00% ( 1/ 2) Lines: 80.00% ( 4/ 5) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/2145/Issue2145Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/tests/end-to-end/regression/Trac/783/ParentSuite.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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/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 | 11 | namespace PHPUnit\Framework; 12 | 13 | interface RiskyTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | interface SkippedTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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/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/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 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/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPrivateTest.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/DataProviderIssue2922/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 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/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php: -------------------------------------------------------------------------------- 1 | constructorCalled = true; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/523/Issue523Test.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 9 | } 10 | } 11 | 12 | class Issue523 extends ArrayIterator 13 | { 14 | protected $field = 'foo'; 15 | } 16 | -------------------------------------------------------------------------------- /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/TestIteratorAggregate.php: -------------------------------------------------------------------------------- 1 | traversable = $traversable; 10 | } 11 | 12 | public function getIterator() 13 | { 14 | return $this->traversable; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source3.php: -------------------------------------------------------------------------------- 1 | addTestSuite(NoTestCases::class); 11 | $suite->addTestSuite(CoverageClassTest::class); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/TestClass.php: -------------------------------------------------------------------------------- 1 | 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\Comparator; 12 | 13 | class TestClass 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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/tests/_files/IsolationTest.php: -------------------------------------------------------------------------------- 1 | assertFalse($this->isInIsolation()); 9 | } 10 | 11 | public function testIsInIsolationReturnsTrue() 12 | { 13 | $this->assertTrue($this->isInIsolation()); 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 | 11 | namespace PHPUnit\Framework; 12 | 13 | class CodeCoverageException extends Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MyCommand.php: -------------------------------------------------------------------------------- 1 | longOptions['my-option='] = 'myHandler'; 9 | $this->longOptions['my-other-option'] = null; 10 | } 11 | 12 | public function myHandler($value) 13 | { 14 | echo __METHOD__ . " $value\n"; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 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/DependencyTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite(DependencySuccessTest::class); 11 | $suite->addTestSuite(DependencyFailureTest::class); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/RequirementsClassBeforeClassHookTest.php: -------------------------------------------------------------------------------- 1 | 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 PHPUnit; 12 | 13 | /** 14 | * Marker interface for PHPUnit exceptions. 15 | */ 16 | interface Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FalsyConstraint.php: -------------------------------------------------------------------------------- 1 | 11 | --EXPECTF-- 12 | Cannot open file "Test.php". 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 9 | (object) [1, 2, "Test\r\n", 4, 5, 6, 7, 8], 10 | (object) [1, 2, "Test\r\n", 4, 1, 6, 7, 8] 11 | ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /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/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/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/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 | 11 | namespace PHPUnit\Framework; 12 | 13 | class CoveredCodeNotExecutedException extends RiskyTestError 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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 | 11 | namespace PHPUnit\Framework; 12 | 13 | class SkippedTestError extends AssertionFailedError implements SkippedTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestDoxGroupTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | 15 | /** 16 | * @group two 17 | */ 18 | public function testTwo() 19 | { 20 | $this->assertTrue(true); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /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/phar-io/version/src/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/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 | 11 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 12 | 13 | class Directory extends Node 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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/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 | 11 | namespace PHPUnit\Framework; 12 | 13 | class MissingCoversAnnotationException extends RiskyTestError 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /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 | 11 | namespace PHPUnit\Framework; 12 | 13 | class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | tests 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1348/Issue1348Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | 12 | public function testSTDERR() 13 | { 14 | fwrite(STDERR, 'STDERR works as usual.'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | 14 | /** 15 | * @group two 16 | */ 17 | public function testTwo() 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/ChildSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite(OneTest::class); 13 | $suite->addTestSuite(TwoTest::class); 14 | 15 | return $suite; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/TestClassComparator.php: -------------------------------------------------------------------------------- 1 | 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\Comparator; 12 | 13 | class TestClassComparator extends ObjectComparator 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState; 14 | 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassThatImplementsSerializable.php: -------------------------------------------------------------------------------- 1 | $value) { 12 | $this->{$key} = $value; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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/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 = null; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public function testSomething() 13 | { 14 | $o = new Foo\CoveredClass; 15 | $o->publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | /.ant_targets 2 | /.idea 3 | /.php_cs 4 | /.php_cs.cache 5 | /.phpunit.result.cache 6 | /build/documentation 7 | /build/logfiles 8 | /build/phar 9 | /build/phpdox 10 | /build/*.phar 11 | /build/*.phar.asc 12 | /build/binary-phar-autoload.php 13 | /cache.properties 14 | /composer.lock 15 | /tests/end-to-end/*.diff 16 | /tests/end-to-end/*.exp 17 | /tests/end-to-end/*.log 18 | /tests/end-to-end/*.out 19 | /tests/end-to-end/*.php 20 | /vendor 21 | 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1149/Issue1149Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | print '1'; 10 | } 11 | 12 | /** 13 | * @runInSeparateProcess 14 | */ 15 | public function testTwo() 16 | { 17 | $this->assertTrue(true); 18 | print '2'; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /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/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | public function testSomething() 12 | { 13 | $o = new Foo\CoveredClass; 14 | $o->publicMethod(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /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/phpunit/php-code-coverage/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | class RuntimeException extends \RuntimeException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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-mock-objects/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/README.md: -------------------------------------------------------------------------------- 1 | # File_Iterator 2 | 3 | ## Installation 4 | 5 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 6 | 7 | composer require phpunit/php-file-iterator 8 | 9 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 10 | 11 | composer require --dev phpunit/php-file-iterator 12 | 13 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedInterface.php: -------------------------------------------------------------------------------- 1 | 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/phar-io/manifest/tests/_fixture/invalidversionconstraint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2833/FirstTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | 17 | public function provide() 18 | { 19 | SecondTest::DUMMY; 20 | 21 | return [[true]]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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/sebastian/recursion-context/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.0snapshot 6 | - 7.1 7 | - 7.1snapshot 8 | - master 9 | 10 | sudo: false 11 | 12 | before_install: 13 | - composer self-update 14 | - composer clear-cache 15 | 16 | install: 17 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 18 | 19 | script: 20 | - ./vendor/bin/phpunit 21 | 22 | notifications: 23 | email: false 24 | -------------------------------------------------------------------------------- /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/phpunit/phpunit-mock-objects/src/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/tests/_files/DataProviderIssue2859/tests/another/TestWithDataProviderTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | 17 | public function provide() 18 | { 19 | return [[true]]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/FirstTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | 20 | public function provide() 21 | { 22 | throw new \Exception(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Singleton.php: -------------------------------------------------------------------------------- 1 | assertTrue($a); 12 | } 13 | 14 | public function dataProvider() 15 | { 16 | return [ 17 | 'c:\\'=> [true], 18 | 0.9 => [true] 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /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/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 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception interface for php-code-coverage component. 15 | */ 16 | interface Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /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 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 | assertNotEmpty($data); 12 | } 13 | 14 | /** 15 | * @return Generator 16 | */ 17 | public function generatorData() 18 | { 19 | yield ['testing']; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/MethodCallback.php: -------------------------------------------------------------------------------- 1 | 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() 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() 15 | { 16 | $this->assertEquals('Foo', 'Foo'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | assertTrue($sut->returnTrue()); 10 | } 11 | 12 | public function testReturnFalse() 13 | { 14 | $sut = new IgnoreCodeCoverageClass(); 15 | $this->assertFalse($sut->returnFalse()); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /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-mock-objects/tests/_fixture/SingletonClass.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 14 | } 15 | 16 | public function simpleDataProvider() 17 | { 18 | return [ 19 | ['foo'], 20 | ]; 21 | } 22 | } -------------------------------------------------------------------------------- /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/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/sebastian/code-unit-reverse-lookup/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - 7.0snapshot 7 | - 7.1 8 | - 7.1snapshot 9 | - master 10 | 11 | sudo: false 12 | 13 | before_install: 14 | - composer self-update 15 | - composer clear-cache 16 | 17 | install: 18 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 19 | 20 | script: 21 | - ./vendor/bin/phpunit 22 | 23 | notifications: 24 | email: false 25 | 26 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # ChangeLog 2 | 3 | All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. 4 | 5 | ## [3.1.2] - 2019-09-14 6 | 7 | ### Fixed 8 | 9 | * Fixed [#29](https://github.com/sebastianbergmann/exporter/pull/29): Second parameter for `str_repeat()` must be an integer 10 | 11 | ### Removed 12 | 13 | * Remove HHVM-specific code that is no longer needed 14 | 15 | [3.1.2]: https://github.com/sebastianbergmann/exporter/compare/3.1.1...3.1.2 16 | -------------------------------------------------------------------------------- /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/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php: -------------------------------------------------------------------------------- 1 | 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\Comparator; 12 | 13 | class ClassWithToString 14 | { 15 | public function __toString() 16 | { 17 | return 'string representation'; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /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/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/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 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - 7.0 9 | - 7.0snapshot 10 | - 7.1 11 | - 7.1snapshot 12 | - master 13 | 14 | sudo: false 15 | 16 | before_install: 17 | - composer self-update 18 | - composer clear-cache 19 | 20 | install: 21 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 22 | 23 | script: 24 | - ./vendor/bin/phpunit 25 | 26 | notifications: 27 | email: false 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.1 6 | - 7.2 7 | - master 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/sebastian/comparator/tests/_fixture/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 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A book. 15 | */ 16 | class Book 17 | { 18 | // the order of properties is important for testing the cycle! 19 | public $author = null; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch2.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | 11 | @@ -320,4 +320,5 @@ class Foo 12 | const A = 'A'; 13 | const B = 'B'; 14 | + const C = 'C'; 15 | const D = 'D'; 16 | 17 | @@ -600,4 +600,5 @@ class Foo 18 | public function doSomething() { 19 | 20 | + return 'foo'; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/InvalidEmailException.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/phpunit/phpunit/tests/_files/Mockable.php: -------------------------------------------------------------------------------- 1 | constructorCalled = false; 10 | } 11 | 12 | public function foo() 13 | { 14 | return true; 15 | } 16 | 17 | public function bar() 18 | { 19 | return true; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1374/Issue1374Test.php: -------------------------------------------------------------------------------- 1 | fail('This should not be reached'); 17 | } 18 | 19 | protected function tearDown() 20 | { 21 | print __FUNCTION__; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_class_and_anonymous_function.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 12 | } 13 | 14 | public static function providerMethod() 15 | { 16 | return [ 17 | [0, 0, 0], 18 | [0, 1, 1], 19 | [1, 1, 3], 20 | [1, 0, 1] 21 | ]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/defaulttestsuite.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox --configuration=__DIR__.'/../_files/configuration.defaulttestsuite.xml' 3 | --FILE-- 4 | 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 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/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 | 11 | namespace PHPUnit\Framework\MockObject; 12 | 13 | use PHPUnit_Framework_MockObject_MockObject; 14 | 15 | interface MockObject extends PHPUnit_Framework_MockObject_MockObject 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.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 | final class UnsupportedVersionConstraintException extends \RuntimeException implements Exception { 14 | } 15 | -------------------------------------------------------------------------------- /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 | 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/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.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 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.1 6 | - 7.2 7 | - 7.3 8 | - 7.4snapshot 9 | 10 | before_install: 11 | - composer self-update 12 | - composer clear-cache 13 | 14 | install: 15 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 16 | 17 | script: 18 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 19 | 20 | after_success: 21 | - bash <(curl -s https://codecov.io/bash) 22 | 23 | notifications: 24 | email: false 25 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.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 | { 18 | } 19 | -------------------------------------------------------------------------------- /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 | 11 | namespace PHPUnit\Framework; 12 | 13 | /** 14 | * A marker interface for marking any exception/error as result of an unit 15 | * test as incomplete implementation or currently not implemented. 16 | */ 17 | interface IncompleteTest 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/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 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A struct. 15 | */ 16 | class Struct 17 | { 18 | public $var; 19 | 20 | public function __construct($var) 21 | { 22 | $this->var = $var; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/RequirementsClassDocBlockTest.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | public function testThree() 24 | { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/dataprovider-issue-2833.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ../../_files/DataProviderIssue2833 3 | --FILE-- 4 | assertInstanceOf(\Exception::class, $test); 12 | } 13 | 14 | public function dataProvider() 15 | { 16 | return [ 17 | [ 18 | $this->getMockBuilder(\Exception::class)->getMock() 19 | ] 20 | ]; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/README.md: -------------------------------------------------------------------------------- 1 | # Resource Operations 2 | 3 | Provides a list of PHP built-in functions that operate on resources. 4 | 5 | ## Installation 6 | 7 | To add this component as a local, per-project dependency to your project, simply add a dependency on `sebastian/resource-operations` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on this component: 8 | 9 | ```JSON 10 | { 11 | "require": { 12 | "sebastian/resource-operations": "~1.0" 13 | } 14 | } 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/xml/ExtElement.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 ExtElement extends ManifestElement { 14 | public function getName() { 15 | return $this->getAttributeValue('name'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception that is raised when covered code is not executed. 15 | */ 16 | class CoveredCodeNotExecutedException extends RuntimeException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/765/Issue765Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | 11 | /** 12 | * @depends testDependee 13 | * @dataProvider dependentProvider 14 | */ 15 | public function testDependent($a) 16 | { 17 | $this->assertTrue(true); 18 | } 19 | 20 | public function dependentProvider() 21 | { 22 | throw new Exception; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception that is raised when @covers must be used but is not. 15 | */ 16 | class MissingCoversAnnotationException extends RuntimeException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | public function testThree() 24 | { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencySuccessTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | 11 | /** 12 | * @depends testOne 13 | */ 14 | public function testTwo() 15 | { 16 | $this->assertTrue(true); 17 | } 18 | 19 | /** 20 | * @depends DependencySuccessTest::testTwo 21 | */ 22 | public function testThree() 23 | { 24 | $this->assertTrue(true); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/dataprovider-issue-2859.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit -c ../../_files/DataProviderIssue2859/phpunit.xml 3 | --FILE-- 4 | $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', 10 | '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 11 | 'a4ecaeafb8cfb009ad0e052c90355e98' => $vendorDir . '/beberlei/assert/lib/Assert/functions.php', 12 | 'fbcea48c28b81a0a8e53edd8a81bc60d' => $baseDir . '/src/helpers.php', 13 | ); 14 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/values/Library.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 Library extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isLibrary() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/README.md: -------------------------------------------------------------------------------- 1 | # Object Enumerator 2 | 3 | Traverses array structures and object graphs to enumerate all referenced objects. 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/object-enumerator 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/object-enumerator 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/README.md: -------------------------------------------------------------------------------- 1 | [![Latest Stable Version](https://img.shields.io/packagist/v/phpunit/phpunit-mock-objects.svg?style=flat-square)](https://packagist.org/packages/phpunit/phpunit-mock-objects) 2 | [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.0-8892BF.svg?style=flat-square)](https://php.net/) 3 | [![Build Status](https://img.shields.io/travis/sebastianbergmann/phpunit-mock-objects/master.svg?style=flat-square)](https://phpunit.de/build-status.html) 4 | 5 | # phpunit-mock-objects 6 | 7 | **phpunit-mock-objects** is the default mock object library for PHPUnit. 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * Extension to PHPUnit\Framework\AssertionFailedError to mark the special 14 | * case of a test that unintentionally covers code. 15 | */ 16 | class UnintentionallyCoveredCodeError extends RiskyTestError 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/1021/Issue1021Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($data); 12 | } 13 | 14 | /** 15 | * @depends testSomething 16 | */ 17 | public function testSomethingElse() 18 | { 19 | $this->assertTrue(true); 20 | } 21 | 22 | public function provider() 23 | { 24 | return [[true]]; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.0snapshot 6 | - 7.1 7 | - 7.1snapshot 8 | - master 9 | 10 | sudo: false 11 | 12 | before_install: 13 | - composer self-update 14 | - composer clear-cache 15 | 16 | install: 17 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 18 | 19 | script: 20 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 21 | 22 | after_success: 23 | - bash <(curl -s https://codecov.io/bash) 24 | 25 | notifications: 26 | email: false 27 | 28 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.0snapshot 6 | - 7.1 7 | - 7.1snapshot 8 | - master 9 | 10 | sudo: false 11 | 12 | before_install: 13 | - composer self-update 14 | - composer clear-cache 15 | 16 | install: 17 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 18 | 19 | script: 20 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 21 | 22 | after_success: 23 | - bash <(curl -s https://codecov.io/bash) 24 | 25 | notifications: 26 | email: false 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIteratorAggregate2.php: -------------------------------------------------------------------------------- 1 | traversable = $traversable; 13 | } 14 | 15 | public function getIterator() 16 | { 17 | return $this->traversable; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/dependencies2.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit StackTest ../../_files/StackTest.php 3 | --FILE-- 4 | , 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 Application extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isApplication() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-xfail.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports XFAIL section 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 | /** 12 | * An author. 13 | */ 14 | class Author 15 | { 16 | // the order of properties is important for testing the cycle! 17 | public $books = []; 18 | 19 | private $name = ''; 20 | 21 | public function __construct($name) 22 | { 23 | $this->name = $name; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/tests/_fixture/ParentClass.php: -------------------------------------------------------------------------------- 1 | 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\TestFixture; 14 | 15 | class ParentClass 16 | { 17 | private $privateInParent = 'private'; 18 | private $protectedInParent = 'protected'; 19 | private $publicInParent = 'public'; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/src/Type.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\Prophecy\MethodProphecyException; 15 | 16 | class NoCallsException extends MethodProphecyException implements PredictionException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/concrete-test-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ConcreteTest ../../_files/ConcreteTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann and contributors. 15 | 16 | . 1 / 1 (100%) 17 | 18 | Time: %s, Memory: %s 19 | 20 | OK (1 test, 1 assertion) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2972.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-2972: Test suite shouldn't fail when it contains both *.phpt files and unconventionally named tests 3 | --FILE-- 4 | 11 | --EXPECTF-- 12 | PHPUnit %s by Sebastian Bergmann and contributors. 13 | 14 | .. 2 / 2 (100%) 15 | 16 | Time: %s, Memory: %s 17 | 18 | OK (2 tests, 2 assertions) 19 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/tests/_fixture/ClassWithIntegerAttributeName.php: -------------------------------------------------------------------------------- 1 | 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\TestFixture; 14 | 15 | class ClassWithIntegerAttributeName 16 | { 17 | public function __construct() 18 | { 19 | $i = 1; 20 | $this->$i = 2; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.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 InvalidApplicationNameException extends \InvalidArgumentException implements Exception { 14 | const NotAString = 1; 15 | const InvalidFormat = 2; 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestWithTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 15 | } 16 | 17 | public static function providerMethod() 18 | { 19 | return [ 20 | [0, 0, 0], 21 | [0, 1, 1], 22 | [1, 1, 3], 23 | [1, 0, 1] 24 | ]; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1472.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | https://github.com/sebastianbergmann/phpunit/issues/1472 3 | --FILE-- 4 | 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\Doubler; 13 | 14 | /** 15 | * Core double interface. 16 | * All doubled classes will implement this one. 17 | * 18 | * @author Konstantin Kudryashov 19 | */ 20 | interface DoubleInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WrapperIteratorAggregate.php: -------------------------------------------------------------------------------- 1 | baseCollection = $baseCollection; 14 | } 15 | 16 | public function getIterator() 17 | { 18 | foreach ($this->baseCollection as $k => $v) { 19 | yield $k => $v; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/forward-compatibility.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit BankAccountTest ../../_files/BankAccountTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann and contributors. 14 | 15 | . 1 / 1 (100%) 16 | 17 | Time: %s, Memory: %s 18 | 19 | OK (1 test, 1 assertion) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/433/Issue433Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('test'); 9 | print 'test'; 10 | } 11 | 12 | public function testOutputWithExpectationAfter() 13 | { 14 | print 'test'; 15 | $this->expectOutputString('test'); 16 | } 17 | 18 | public function testNotMatchingOutput() 19 | { 20 | print 'bar'; 21 | $this->expectOutputString('foo'); 22 | } 23 | } 24 | --------------------------------------------------------------------------------