├── .gitignore ├── vendor ├── bin │ └── phpunit ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── diff │ │ ├── tests │ │ │ └── fixtures │ │ │ │ ├── .editorconfig │ │ │ │ ├── out │ │ │ │ ├── .editorconfig │ │ │ │ └── .gitignore │ │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest │ │ │ │ ├── 1_a.txt │ │ │ │ ├── 1_b.txt │ │ │ │ ├── 2_b.txt │ │ │ │ └── 2_a.txt │ │ │ │ ├── patch.txt │ │ │ │ └── patch2.txt │ │ ├── .gitignore │ │ ├── src │ │ │ └── Exception │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ └── .travis.yml │ ├── recursion-context │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── .travis.yml │ │ └── README.md │ ├── exporter │ │ ├── .gitignore │ │ └── .travis.yml │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── .travis.yml │ │ └── README.md │ ├── comparator │ │ ├── .gitignore │ │ └── tests │ │ │ └── _fixture │ │ │ ├── TestClass.php │ │ │ ├── TestClassComparator.php │ │ │ ├── Book.php │ │ │ ├── ClassWithToString.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 │ ├── object-reflector │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── README.md │ │ ├── .travis.yml │ │ └── tests │ │ │ └── _fixture │ │ │ └── ParentClass.php │ ├── environment │ │ ├── .gitignore │ │ └── .travis.yml │ ├── resource-operations │ │ ├── .gitignore │ │ └── README.md │ └── object-enumerator │ │ ├── .gitignore │ │ ├── src │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ │ ├── README.md │ │ └── .travis.yml ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ ├── ChangeLog.md │ │ └── .travis.yml │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── configuration.columns.default.xml │ │ │ │ ├── configuration_stop_on_defect.xml │ │ │ │ ├── configuration_stop_on_error.xml │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── configuration_stop_on_incomplete.xml │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── configuration.one-file-suite.xml │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ ├── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ │ └── phpunit-example-extension-3.0.3.phar │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ └── tests │ │ │ │ │ │ └── OneTest.php │ │ │ │ ├── configuration_whitelist.xml │ │ │ │ ├── DataProviderIssue2859 │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── DummyException.php │ │ │ │ ├── configuration_execution_order_options.xml │ │ │ │ ├── AnInterface.php │ │ │ │ ├── ExceptionWithThrowable.php │ │ │ │ ├── MultiDependencyTest_result_cache.txt │ │ │ │ ├── configuration.defaulttestsuite.xml │ │ │ │ ├── AnotherInterface.php │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── TraversableMockTestInterface.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ │ ├── Bar.php │ │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ │ ├── ClassWithStaticMethod.php │ │ │ │ ├── ExampleTrait.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── Foo.php │ │ │ │ ├── StringableClass.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── MockTestInterface.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Book.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── SomeClass.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── DoNoAssertionTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestRisky.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── ClassWithToString.php │ │ │ │ ├── DummyBarTest.php │ │ │ │ ├── DummyFooTest.php │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── TestWarning.php │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── IniTest.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── StaticMockTestClass.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── ClassWithVariadicArgumentMethod.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── AssertionExampleTest.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── TestAutoreferenced.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── ParseTestMethodAnnotationsMock.php │ │ │ │ ├── AbstractTrait.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── IgnoreCodeCoverageClass.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── Author.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ └── DataProviderIssue2833 │ │ │ │ │ └── SecondTest.php │ │ │ ├── end-to-end │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ ├── phpt_external.php │ │ │ │ │ └── NullPrinter.php │ │ │ │ ├── regression │ │ │ │ │ ├── GitHub │ │ │ │ │ │ ├── 74 │ │ │ │ │ │ │ └── NewException.php │ │ │ │ │ │ ├── 322 │ │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ │ ├── 503 │ │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ │ ├── 797 │ │ │ │ │ │ │ └── bootstrap797.php │ │ │ │ │ │ ├── 873 │ │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ │ ├── 1216 │ │ │ │ │ │ │ ├── phpunit1216.xml │ │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ │ └── Issue1216Test.php │ │ │ │ │ │ ├── 1265 │ │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ │ ├── 1330 │ │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ │ ├── 1351 │ │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ │ ├── 1437 │ │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ │ ├── 1468 │ │ │ │ │ │ │ └── Issue1468Test.php │ │ │ │ │ │ ├── 1471 │ │ │ │ │ │ │ └── Issue1471Test.php │ │ │ │ │ │ ├── 1570 │ │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ │ ├── 2085 │ │ │ │ │ │ │ └── configuration_enforce_time_limit_options.xml │ │ │ │ │ │ ├── 2158 │ │ │ │ │ │ │ └── constant.inc │ │ │ │ │ │ ├── 2435 │ │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ │ ├── 2448 │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ └── Test.php │ │ │ │ │ │ ├── 2591 │ │ │ │ │ │ │ ├── bootstrapWithBootstrapNoGlobal.php │ │ │ │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ │ │ │ └── bootstrapNoBootstrap.php │ │ │ │ │ │ ├── 2811 │ │ │ │ │ │ │ └── Issue2811Test.php │ │ │ │ │ │ ├── 2972 │ │ │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ │ │ ├── 3379 │ │ │ │ │ │ │ └── phpunit.xml │ │ │ │ │ │ └── 2448-not-existing-test.phpt │ │ │ │ │ └── Trac │ │ │ │ │ │ ├── 684 │ │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ │ └── 783 │ │ │ │ │ │ ├── OneTest.php │ │ │ │ │ │ └── TwoTest.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ ├── phpt-stderr.phpt │ │ │ │ ├── phar-extension-suppressed.phpt │ │ │ │ ├── list-suites.phpt │ │ │ │ ├── dataprovider-issue-2833.phpt │ │ │ │ ├── dataprovider-issue-2859.phpt │ │ │ │ ├── dependencies2.phpt │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── defaulttestsuite.phpt │ │ │ │ ├── concrete-test-class.phpt │ │ │ │ └── default.phpt │ │ │ ├── fail │ │ │ │ └── fail.phpt │ │ │ └── unit │ │ │ │ └── Util │ │ │ │ └── _files │ │ │ │ └── expectedXDebugFilterScript.txt │ │ ├── .gitattributes │ │ ├── src │ │ │ ├── Framework │ │ │ │ ├── MockObject │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ │ │ ├── wsdl_method.tpl.dist │ │ │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ │ │ └── mocked_class_method.tpl.dist │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ │ └── Exception.php │ │ │ │ │ └── ForwardCompatibility │ │ │ │ │ │ └── MockObject.php │ │ │ │ ├── RiskyTest.php │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── OutputError.php │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── Error │ │ │ │ │ ├── Notice.php │ │ │ │ │ ├── Warning.php │ │ │ │ │ └── Deprecated.php │ │ │ │ ├── RiskyTestError.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── SkippedTestError.php │ │ │ │ ├── IncompleteTestError.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ ├── Constraint │ │ │ │ │ └── SameSize.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ │ └── SelfDescribing.php │ │ │ ├── Util │ │ │ │ ├── PHP │ │ │ │ │ └── eval-stdin.php │ │ │ │ └── TestResultCacheInterface.php │ │ │ ├── Runner │ │ │ │ ├── Hook │ │ │ │ │ ├── Hook.php │ │ │ │ │ ├── TestHook.php │ │ │ │ │ ├── AfterLastTestHook.php │ │ │ │ │ ├── BeforeFirstTestHook.php │ │ │ │ │ ├── BeforeTestHook.php │ │ │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ │ │ ├── AfterRiskyTestHook.php │ │ │ │ │ ├── AfterTestErrorHook.php │ │ │ │ │ ├── AfterSkippedTestHook.php │ │ │ │ │ ├── AfterTestFailureHook.php │ │ │ │ │ ├── AfterTestWarningHook.php │ │ │ │ │ └── AfterIncompleteTestHook.php │ │ │ │ ├── Exception.php │ │ │ │ └── Filter │ │ │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ │ │ └── IncludeGroupFilterIterator.php │ │ │ └── Exception.php │ │ ├── .editorconfig │ │ ├── .phan │ │ │ └── config.php │ │ ├── .gitignore │ │ └── phive.xml │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── src │ │ │ ├── Report │ │ │ │ ├── Html │ │ │ │ │ └── Renderer │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ └── octicons.css │ │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── file-directory.svg │ │ │ │ │ │ └── file-code.svg │ │ │ │ │ │ └── coverage_bar.html.dist │ │ │ │ └── Xml │ │ │ │ │ └── Directory.php │ │ │ └── Exception │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ └── MissingCoversAnnotationException.php │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── Crash.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── BankAccount-text.txt │ │ │ │ ├── source_without_namespace.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ │ ├── source_with_namespace.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ │ └── NotExistingCoveredElementTest.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-file-iterator │ │ ├── .gitattributes │ │ └── .gitignore │ ├── 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 │ │ └── bootstrap.php │ │ └── .travis.yml ├── myclabs │ └── deep-copy │ │ ├── .gitignore │ │ ├── fixtures │ │ ├── f008 │ │ │ ├── B.php │ │ │ └── A.php │ │ ├── f005 │ │ │ └── Foo.php │ │ ├── f004 │ │ │ └── UnclonableItem.php │ │ ├── f007 │ │ │ ├── FooDateInterval.php │ │ │ └── FooDateTimeZone.php │ │ ├── f001 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f003 │ │ │ └── Foo.php │ │ └── f006 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-clone.png │ │ └── deep-copy.png │ │ ├── .scrutinizer.yml │ │ ├── .gitattributes │ │ └── 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 ├── phar-io │ ├── manifest │ │ ├── .gitignore │ │ ├── tests │ │ │ └── _fixture │ │ │ │ ├── test.phar │ │ │ │ ├── custom.xml │ │ │ │ ├── library.xml │ │ │ │ ├── invalidversion.xml │ │ │ │ ├── manifest.xml │ │ │ │ └── invalidversionconstraint.xml │ │ ├── src │ │ │ ├── exceptions │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ ├── ManifestElementException.php │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidUrlException.php │ │ │ │ └── InvalidEmailException.php │ │ │ ├── values │ │ │ │ ├── Requirement.php │ │ │ │ ├── Library.php │ │ │ │ └── Application.php │ │ │ └── xml │ │ │ │ └── ExtElement.php │ │ └── phive.xml │ └── version │ │ ├── .gitignore │ │ ├── src │ │ └── exceptions │ │ │ ├── InvalidVersionException.php │ │ │ ├── InvalidPreReleaseSuffixException.php │ │ │ ├── Exception.php │ │ │ └── UnsupportedVersionConstraintException.php │ │ └── phive.xml ├── theseer │ └── tokenizer │ │ ├── .gitignore │ │ ├── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php │ │ ├── phive.xml │ │ └── tests │ │ └── _files │ │ └── test.php ├── phpdocumentor │ ├── reflection-docblock │ │ ├── .coveralls.yml │ │ └── src │ │ │ └── DocBlock │ │ │ └── Tags │ │ │ └── Factory │ │ │ └── Strategy.php │ ├── reflection-common │ │ └── README.md │ └── type-resolver │ │ └── src │ │ └── Type.php ├── autoload.php ├── webmozart │ └── assert │ │ ├── .styleci.yml │ │ └── .composer-auth.json ├── composer │ ├── autoload_namespaces.php │ └── autoload_files.php └── phpspec │ └── prophecy │ └── src │ └── Prophecy │ └── Exception │ ├── InvalidArgumentException.php │ ├── Doubler │ ├── DoublerException.php │ └── DoubleException.php │ ├── Prophecy │ └── ProphecyException.php │ └── Prediction │ ├── PredictionException.php │ └── NoCallsException.php └── tests └── WebServiceTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | examples/*.xml 2 | -------------------------------------------------------------------------------- /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/sebastian/diff/tests/fixtures/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/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/tests/_files/configuration.colors.false.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/.gitignore: -------------------------------------------------------------------------------- 1 | .phpunit.result.cache 2 | 3 | -------------------------------------------------------------------------------- /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/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.columns.default.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.gitignore: -------------------------------------------------------------------------------- 1 | # reset all ignore rules to create sandbox for integration test 2 | !/** -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | build: 2 | environment: 3 | variables: 4 | COMPOSER_ROOT_VERSION: '1.8.0' 5 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | /build 8 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-server/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-server/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | coverage_clover: coverage.xml 3 | json_path: coverage.json 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/_files/tmp 2 | /vendor 3 | /composer.lock 4 | /.idea 5 | /.php_cs 6 | /.php_cs.cache 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_defect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_error.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /build/FunctionSignatureMap.php 4 | /composer.lock 5 | /vendor 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/test.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-server/HEAD/vendor/phar-io/manifest/tests/_fixture/test.phar -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_incomplete.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Exception.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 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-external.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1436: PHPT runner doesn't handle external files. 3 | --FILE_EXTERNAL-- 4 | _files/phpt_external.php 5 | --EXPECT_EXTERNAL-- 6 | _files/expect_external.txt 7 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingBraces.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f005/Foo.php: -------------------------------------------------------------------------------- 1 | cloned = true; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/unmocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /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 | print 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/bootstrap.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/php-code-coverage/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md) for details on how to contribute to this project. 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {namespace}class {class_name} extends \SoapClient 2 | { 3 | public function __construct($wsdl, array $options) 4 | { 5 | parent::__construct('{wsdl}', $options); 6 | } 7 | {methods}} 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-xfail.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports XFAIL section 3 | --FILE-- 4 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-3.0.3.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-server/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-3.0.3.phar -------------------------------------------------------------------------------- /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/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | 3 | finder: 4 | exclude: 5 | - "tests" 6 | 7 | enabled: 8 | - ordered_use 9 | 10 | disabled: 11 | - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2972/issue-2972-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Just a sample test for issue 2972, does not actually test anything 3 | --FILE-- 4 | 7 | ===DONE=== 8 | --EXPECT-- 9 | Hello world 10 | ===DONE=== 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpspec/prophecy/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.phan/config.php: -------------------------------------------------------------------------------- 1 | [ 'src/', 'vendor/' ], 4 | 'exclude_analysis_directory_list' => [ 'vendor/', 'src/Framework/Assert/' ], 5 | 6 | 'target_php_version' => '7.1', 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/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/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/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 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 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f007/FooDateTimeZone.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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/webmozart/assert/.composer-auth.json: -------------------------------------------------------------------------------- 1 | { 2 | "github-oauth": { 3 | "github.com": "PLEASE DO NOT USE THIS TOKEN IN YOUR OWN PROJECTS/FORKS", 4 | "github.com": "This token is reserved for testing the webmozart/* repositories", 5 | "github.com": "a9debbffdd953ee9b3b82dbc3b807cde2086bb86" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php: -------------------------------------------------------------------------------- 1 | foo = $foo; 12 | } 13 | 14 | public function getFoo() 15 | { 16 | return $this->foo; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | expects($any); 6 | 7 | return call_user_func_array([$expects, 'method'], func_get_args()); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_whitelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | AbstractTest.php 8 | 9 | Foo.php 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt_external.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | print 'Hello World'; 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class NoTestCaseClass 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/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/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | function globalFunction(): void 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f001/A.php: -------------------------------------------------------------------------------- 1 | aProp; 12 | } 13 | 14 | public function setAProp($prop) 15 | { 16 | $this->aProp = $prop; 17 | 18 | return $this; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class DummyException extends Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f001/B.php: -------------------------------------------------------------------------------- 1 | bProp; 12 | } 13 | 14 | public function setBProp($prop) 15 | { 16 | $this->bProp = $prop; 17 | 18 | return $this; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /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/configuration_execution_order_options.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodOneLineAnnotationTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/class-with-anonymous-function-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report: 4 | %s 5 | 6 | Summary: 7 | Classes: 0.00% (0/1) 8 | Methods: 0.00% (0/1) 9 | Lines: 87.50% (7/8) 10 | 11 | CoveredClassWithAnonymousFunctionInStaticMethod 12 | Methods: 0.00% ( 0/ 1) Lines: 87.50% ( 7/ 8) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/RiskyTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | interface RiskyTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | interface SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AnInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface AnInterface 11 | { 12 | public function doSomething(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionWithThrowable.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface ExceptionWithThrowable extends \Throwable 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MultiDependencyTest_result_cache.txt: -------------------------------------------------------------------------------- 1 | C:30:"PHPUnit\Runner\TestResultCache":289:{a:2:{s:7:"defects";a:1:{s:29:"MultiDependencyTest::testFive";i:1;}s:5:"times";a:5:{s:28:"MultiDependencyTest::testOne";d:0;s:28:"MultiDependencyTest::testTwo";d:0;s:30:"MultiDependencyTest::testThree";d:0;s:29:"MultiDependencyTest::testFour";d:0;s:29:"MultiDependencyTest::testFive";d:0;}}} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/74/NewException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class NewException extends Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/unit/Util/_files/expectedXDebugFilterScript.txt: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1351/ChildProcessClass1351.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class ChildProcessClass1351 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/Hook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface Hook 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.defaulttestsuite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../_files/DummyFooTest.php 5 | 6 | 7 | ../_files/DummyBarTest.php 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/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/AnotherInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface AnotherInterface 11 | { 12 | public function doSomethingElse(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace foo; 11 | 12 | function func() 13 | { 14 | return true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NonStatic.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class NonStatic 11 | { 12 | public function suite(): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TraversableMockTestInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface TraversableMockTestInterface extends \Traversable 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/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/src/Framework/OutputError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class OutputError extends AssertionFailedError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CustomPrinter.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\TextUI\ResultPrinter; 11 | 12 | class CustomPrinter extends ResultPrinter 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotVoidTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class NotVoidTestCase extends TestCase 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/bootstrap1216.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | $_ENV['configAvailableInBootstrap'] = isset($_ENV['loadedFromConfig']); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapWithBootstrapNoGlobal.php: -------------------------------------------------------------------------------- 1 | 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 | require __DIR__ . '/../../../../bootstrap.php'; 12 | -------------------------------------------------------------------------------- /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 | namespace SebastianBergmann\Comparator; 11 | 12 | class TestClass 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source3.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface TestHook extends Hook 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/EmptyTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class EmptyTestCaseTest extends TestCase 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Timer; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/CodeCoverageException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class CodeCoverageException extends Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AnInterfaceWithReturnType.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface AnInterfaceWithReturnType 11 | { 12 | public function returnAnArray(): array; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Bar.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Bar 11 | { 12 | public function doSomethingElse() 13 | { 14 | return 'result'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InterfaceWithStaticMethod.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface InterfaceWithStaticMethod 11 | { 12 | public static function staticMethod(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithSelfTypeHint.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class ClassWithSelfTypeHint 11 | { 12 | public function foo(self $foo) 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InterfaceWithSemiReservedMethodName.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface InterfaceWithSemiReservedMethodName 11 | { 12 | public function unset(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/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 | -------------------------------------------------------------------------------- /tests/WebServiceTest.php: -------------------------------------------------------------------------------- 1 | assertInstanceOf(WebService::class, $ws); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit; 11 | 12 | /** 13 | * Marker interface for PHPUnit exceptions. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | class Exception extends \RuntimeException implements \PHPUnit\Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithStaticMethod.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class ClassWithStaticMethod 11 | { 12 | public static function staticMethod() 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExampleTrait.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | trait ExampleTrait 11 | { 12 | public function ohHai() 13 | { 14 | return __FUNCTION__; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceA.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | require_once __DIR__ . '/InheritanceB.php'; 11 | 12 | class InheritanceA extends InheritanceB 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InheritedTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class InheritedTestCase extends OneTestCase 11 | { 12 | public function test2(): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Foo_Bar_Issue684Test extends TestCase 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Notice.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | class Notice extends Error 13 | { 14 | public static $enabled = true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Warning.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | class Warning extends Error 13 | { 14 | public static $enabled = true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/RiskyTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class RiskyTestError extends AssertionFailedError implements RiskyTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Foo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Foo 11 | { 12 | public function doSomething(Bar $bar) 13 | { 14 | return $bar->doSomethingElse(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StringableClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class StringableClass 11 | { 12 | public function __toString() 13 | { 14 | return '12345'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class CoveredCodeNotExecutedException extends RiskyTestError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Deprecated.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | class Deprecated extends Error 13 | { 14 | public static $enabled = true; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class InvalidCoversTargetException extends CodeCoverageException 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class MissingCoversAnnotationException extends RiskyTestError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class SkippedTestError extends AssertionFailedError implements SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AssertionExample.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class AssertionExample 11 | { 12 | public function doSomething(): void 13 | { 14 | \assert(false); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OverrideTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class OverrideTestCase extends OneTestCase 11 | { 12 | public function testCase($arg = ''): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/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/phpunit/php-code-coverage/src/Report/Xml/Directory.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 11 | 12 | final class Directory extends Node 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/IncompleteTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class IncompleteTestError extends AssertionFailedError implements IncompleteTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MockTestInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface MockTestInterface 11 | { 12 | public function returnAnything(); 13 | 14 | public function returnAnythingElse(); 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Struct.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Struct 11 | { 12 | public $var; 13 | 14 | public function __construct($var) 15 | { 16 | $this->var = $var; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapWithBootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | $globalString = 'Hello'; 11 | 12 | require __DIR__ . '/../../../../bootstrap.php'; 13 | -------------------------------------------------------------------------------- /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 | namespace SebastianBergmann\Comparator; 11 | 12 | class TestClassComparator extends ObjectComparator 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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/phar-io/version/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Version; 12 | 13 | interface Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Book.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * A book. 13 | */ 14 | class Book 15 | { 16 | // the order of properties is important for testing the cycle! 17 | public $author; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithScalarTypeDeclarations.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class ClassWithScalarTypeDeclarations 11 | { 12 | public function foo(string $string, int $int): void 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class ConcreteTest extends AbstractTest 11 | { 12 | public function testTwo(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoTestCases.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class NoTestCases extends TestCase 13 | { 14 | public function noTestCase(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/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/.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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NothingTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class NothingTest extends TestCase 13 | { 14 | public function testNothing(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # ChangeLog 2 | 3 | All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. 4 | 5 | ## [2.0.0] - 2018-02-01 6 | 7 | ### Changed 8 | 9 | * This component now uses namespaces 10 | 11 | ### Removed 12 | 13 | * This component is no longer supported on PHP 5.3, PHP 5.4, PHP 5.5, PHP 5.6, and PHP 7.0 14 | 15 | [2.0.0]: https://github.com/sebastianbergmann/diff/compare/1.0.9...2.0.0 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FunctionCallback.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | function functionCallback() 11 | { 12 | $args = \func_get_args(); 13 | 14 | if ($args == ['foo', 'bar']) { 15 | return 'pass'; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/SomeClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class SomeClass 11 | { 12 | public function doSomething($a, $b) 13 | { 14 | } 15 | 16 | public function doSomethingElse($c) 17 | { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | tests 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotTrait.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | trait SnapshotTrait 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/invalidversion.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/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/phpunit/phpunit/tests/_files/NoArgTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class NoArgTestCaseTest extends TestCase 13 | { 14 | public function testNothing(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StopsOnWarningTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class StopsOnWarningTest extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f003/Foo.php: -------------------------------------------------------------------------------- 1 | name = $name; 13 | } 14 | 15 | public function getProp() 16 | { 17 | return $this->prop; 18 | } 19 | 20 | public function setProp($prop) 21 | { 22 | $this->prop = $prop; 23 | 24 | return $this; 25 | } 26 | } -------------------------------------------------------------------------------- /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 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Timer; 12 | 13 | final class RuntimeException extends \RuntimeException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Failure extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->fail(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceB.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class InheritanceB extends TestCase 13 | { 14 | public function testSomething(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MockRunner.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Runner\BaseTestRunner; 11 | 12 | class MockRunner extends BaseTestRunner 13 | { 14 | protected function runFailed($message): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class ThrowNoExceptionTestCase extends TestCase 13 | { 14 | public function test(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | // PHPUnit_Framework_TestCase itself does not exist. :-) 11 | require __DIR__ . '/../../../../bootstrap.php'; 12 | 13 | const GITHUB_ISSUE = 797; 14 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/SnapshotFunctions.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | function snapshotFunction() 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | require __DIR__ . '/../vendor/autoload.php'; 11 | 12 | define( 13 | 'TEST_FILES_PATH', 14 | __DIR__ . DIRECTORY_SEPARATOR . '_fixture' . DIRECTORY_SEPARATOR 15 | ); 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | class BadMethodCallException extends \BadMethodCallException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterLastTestHook extends Hook 13 | { 14 | public function executeAfterLastTest(): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.my.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class ConcreteWithMyCustomExtensionTest extends AbstractTest 11 | { 12 | public function testTwo(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DoNoAssertionTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class DoNoAssertionTestCase extends TestCase 13 | { 14 | public function testNothing(): void 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Test extends PHPUnit\Framework\TestCase 11 | { 12 | public function testOne(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f006/A.php: -------------------------------------------------------------------------------- 1 | aProp; 13 | } 14 | 15 | public function setAProp($prop) 16 | { 17 | $this->aProp = $prop; 18 | 19 | return $this; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f006/B.php: -------------------------------------------------------------------------------- 1 | bProp; 13 | } 14 | 15 | public function setBProp($prop) 16 | { 17 | $this->bProp = $prop; 18 | 19 | return $this; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | /** 13 | * Interface for exceptions used by PHPUnit_MockObject. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface BeforeFirstTestHook extends Hook 13 | { 14 | public function executeBeforeFirstTest(): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface BeforeTestHook extends TestHook 13 | { 14 | public function executeBeforeTest(string $test): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Success.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Success extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448-not-existing-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #2448: Weird error when trying to run `Test` from `Test.php` but `Test.php` does not exist 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | interface BlacklistedInterface 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/invalidversionconstraint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestRisky.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestRisky extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->markAsRisky(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestError extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | throw new Exception; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/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-code-coverage/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception interface for php-code-coverage component. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | ## Installation 6 | 7 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-text-template` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Text_Template: 8 | 9 | { 10 | "require": { 11 | "phpunit/php-text-template": "~1.2" 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/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 | class Issue2435Test extends PHPUnit\Framework\TestCase 11 | { 12 | public function testOne(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - master 7 | 8 | sudo: false 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 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/phpunit/phpunit/tests/_files/AbstractTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | abstract class AbstractTest extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | $this->assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState; 14 | 15 | class RuntimeException extends \RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedChildClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | class BlacklistedChildClass extends BlacklistedClass 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | class BlacklistedClass 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestSkipped.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestSkipped extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->markTestSkipped('Skipped test'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1570/Issue1570Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1570Test extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | print '*'; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/README.md: -------------------------------------------------------------------------------- 1 | # Recursion Context 2 | 3 | ... 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | composer require sebastian/recursion-context 10 | 11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 12 | 13 | composer require --dev sebastian/recursion-context 14 | 15 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithToString.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * A class with a __toString() method. 13 | */ 14 | class ClassWithToString 15 | { 16 | public function __toString() 17 | { 18 | return 'string representation'; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyBarTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class DummyBarTest extends TestCase 13 | { 14 | public function testBarEqualsBar(): void 15 | { 16 | $this->assertEquals('Bar', 'Bar'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyFooTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class DummyFooTest extends TestCase 13 | { 14 | public function testFooEqualsFoo(): void 15 | { 16 | $this->assertEquals('Foo', 'Foo'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestGeneratorMaker.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class TestGeneratorMaker 11 | { 12 | public function create($array = []) 13 | { 14 | foreach ($array as $key => $value) { 15 | yield $key => $value; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/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/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility/MockObject.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | use PHPUnit_Framework_MockObject_MockObject; 13 | 14 | interface MockObject extends PHPUnit_Framework_MockObject_MockObject 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class TestIncomplete extends TestCase 13 | { 14 | protected function runTest(): void 15 | { 16 | $this->markTestIncomplete('Incomplete test'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class WasRun extends TestCase 13 | { 14 | public $wasRun = false; 15 | 16 | protected function runTest(): void 17 | { 18 | $this->wasRun = true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapNoBootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | \ini_set('display_errors', 0); 11 | \ini_set('log_errors', 1); 12 | 13 | $globalString = 'Hello'; 14 | 15 | // require __DIR__ . '/../../../../bootstrap.php'; 16 | -------------------------------------------------------------------------------- /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 | namespace SebastianBergmann\Comparator; 11 | 12 | /** 13 | * A book. 14 | */ 15 | class Book 16 | { 17 | // the order of properties is important for testing the cycle! 18 | public $author; 19 | } 20 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/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 | namespace SebastianBergmann\Comparator; 11 | 12 | class ClassWithToString 13 | { 14 | public function __toString() 15 | { 16 | return 'string representation'; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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 | namespace PHPUnit\Runner; 11 | 12 | interface AfterSuccessfulTestHook extends TestHook 13 | { 14 | public function executeAfterSuccessfulTest(string $test, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class IncompleteTest extends TestCase 13 | { 14 | public function testIncomplete(): void 15 | { 16 | $this->markTestIncomplete('Test incomplete'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestWarning.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | use PHPUnit\Framework\Warning; 12 | 13 | class TestWarning extends TestCase 14 | { 15 | protected function runTest(): void 16 | { 17 | throw new Warning; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1265Test extends TestCase 13 | { 14 | public function testTrue(): void 15 | { 16 | $this->assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | if (\extension_loaded('xdebug')) { 11 | \xdebug_disable(); 12 | } 13 | 14 | throw new Exception( 15 | 'PHPUnit suppresses exceptions thrown outside of test case function' 16 | ); 17 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - 7.3 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 | -------------------------------------------------------------------------------- /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-token-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - 7.3 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/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterRiskyTestHook extends TestHook 13 | { 14 | public function executeAfterRiskyTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterTestErrorHook extends TestHook 13 | { 14 | public function executeAfterTestError(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | abstract class AbstractMockTestClass implements MockTestInterface 11 | { 12 | abstract public function doSomething(); 13 | 14 | public function returnAnything() 15 | { 16 | return 1; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IniTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class IniTest extends TestCase 13 | { 14 | public function testIni(): void 15 | { 16 | $this->assertEquals('application/x-test', \ini_get('default_mimetype')); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/Issue1330Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1330Test extends TestCase 13 | { 14 | public function testTrue(): void 15 | { 16 | $this->assertTrue(PHPUNIT_1330); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/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/src/Runner/Hook/AfterSkippedTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterSkippedTestHook extends TestHook 13 | { 14 | public function executeAfterSkippedTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterTestFailureHook extends TestHook 13 | { 14 | public function executeAfterTestFailure(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterTestWarningHook extends TestHook 13 | { 14 | public function executeAfterTestWarning(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OneTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class OneTestCase extends TestCase 13 | { 14 | public function noTestCase(): void 15 | { 16 | } 17 | 18 | public function testCase($arg = ''): void 19 | { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StaticMockTestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class StaticMockTestClass 11 | { 12 | public static function doSomething() 13 | { 14 | } 15 | 16 | public static function doSomethingElse() 17 | { 18 | return static::doSomething(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/src/Type.php: -------------------------------------------------------------------------------- 1 | 9 | * @license http://www.opensource.org/licenses/mit-license.php MIT 10 | * @link http://phpdoc.org 11 | */ 12 | 13 | namespace phpDocumentor\Reflection; 14 | 15 | interface Type 16 | { 17 | public function __toString(); 18 | } 19 | -------------------------------------------------------------------------------- /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 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class CoverageNoneTest extends TestCase 13 | { 14 | public function testSomething(): void 15 | { 16 | $o = new CoveredClass; 17 | $o->publicMethod(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class ThrowExceptionTestCase extends TestCase 13 | { 14 | public function test(): void 15 | { 16 | throw new RuntimeException('A runtime error occurred'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Prophecy; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface ProphecyException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Constraint/SameSize.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Constraint; 11 | 12 | class SameSize extends Count 13 | { 14 | public function __construct(iterable $expected) 15 | { 16 | parent::__construct($this->getCountOf($expected)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterIncompleteTestHook extends TestHook 13 | { 14 | public function executeAfterIncompleteTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithVariadicArgumentMethod.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * A class with a method that takes a variadic argument. 13 | */ 14 | class ClassWithVariadicArgumentMethod 15 | { 16 | public function foo(...$args) 17 | { 18 | return $args; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class NotPublicTestCase extends TestCase 13 | { 14 | public function testPublic(): void 15 | { 16 | } 17 | 18 | protected function testNotPublic(): void 19 | { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - master 7 | 8 | sudo: false 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 | 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * A marker interface for marking any exception/error as result of an unit 14 | * test as incomplete implementation or currently not implemented. 15 | */ 16 | interface IncompleteTest 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AssertionExampleTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class AssertionExampleTest extends TestCase 13 | { 14 | public function testOne(): void 15 | { 16 | $e = new AssertionExample; 17 | 18 | $e->doSomething(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/list-suites.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --list-suites --configuration=__DIR__.'/../_files/configuration.suites.xml' 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | /** 13 | * @group foo 14 | */ 15 | class OneTest extends TestCase 16 | { 17 | public function testSomething(): void 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/TwoTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | /** 13 | * @group bar 14 | */ 15 | class TwoTest extends TestCase 16 | { 17 | public function testSomething(): void 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/tests/_fixture/BlacklistedImplementor.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | class BlacklistedImplementor implements BlacklistedInterface 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/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/phpunit/phpunit/tests/end-to-end/regression/GitHub/1437/Issue1437Test.php: -------------------------------------------------------------------------------- 1 | 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 Issue1437Test extends TestCase 13 | { 14 | public function testFailure(): void 15 | { 16 | \ob_start(); 17 | $this->assertTrue(false); 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 | namespace SebastianBergmann\Comparator; 11 | 12 | /** 13 | * A struct. 14 | */ 15 | class Struct 16 | { 17 | public $var; 18 | 19 | public function __construct($var) 20 | { 21 | $this->var = $var; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.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/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/tests/_files/MethodCallbackByReference.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class MethodCallbackByReference 11 | { 12 | public function bar(&$a, &$b, $c) 13 | { 14 | Legacy::bar($a, $b, $c); 15 | } 16 | 17 | public function callback(&$a, &$b, $c) 18 | { 19 | $b = 1; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/tests/_files/test.php: -------------------------------------------------------------------------------- 1 | y; 16 | } 17 | 18 | public function getSomeX(): string { 19 | return self::x; 20 | } 21 | 22 | public function some(bar $b): string { 23 | return $b->getSomeX() . '-def'; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/SampleClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class SampleClass 11 | { 12 | public $a; 13 | 14 | public $b; 15 | 16 | public $c; 17 | 18 | public function __construct($a, $b, $c) 19 | { 20 | $this->a = $a; 21 | $this->b = $b; 22 | $this->c = $c; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestAutoreferenced.php: -------------------------------------------------------------------------------- 1 | 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 TestAutoreferenced extends TestCase 13 | { 14 | public $myTestData; 15 | 16 | public function testJsonEncodeException($data): void 17 | { 18 | $this->myTestData = $data; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2811/Issue2811Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Issue2811Test extends PHPUnit\Framework\TestCase 11 | { 12 | public function testOne(): void 13 | { 14 | $this->expectExceptionMessage('hello'); 15 | 16 | throw new \Exception('hello'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Calculator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | class Calculator 11 | { 12 | /** 13 | * @assert (0, 0) == 0 14 | * @assert (0, 1) == 1 15 | * @assert (1, 0) == 1 16 | * @assert (1, 1) == 2 17 | */ 18 | public function add($a, $b) 19 | { 20 | return $a + $b; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionTest.php: -------------------------------------------------------------------------------- 1 | 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 CoverageFunctionTest extends TestCase 13 | { 14 | /** 15 | * @covers ::globalFunction 16 | */ 17 | public function testSomething(): void 18 | { 19 | globalFunction(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/dataprovider-issue-2833.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ../../_files/DataProviderIssue2833 3 | --FILE-- 4 | 2 | 4 | 5 | 6 | . 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /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 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception that is raised when covered code is not executed. 14 | */ 15 | final class CoveredCodeNotExecutedException extends RuntimeException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNamespacedFunctionTest.php: -------------------------------------------------------------------------------- 1 | 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 CoverageNamespacedFunctionTest extends TestCase 13 | { 14 | /** 15 | * @covers foo\func() 16 | */ 17 | public function testFunc(): void 18 | { 19 | foo\func(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ParseTestMethodAnnotationsMock.php: -------------------------------------------------------------------------------- 1 | 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 | * @theClassAnnotation 13 | */ 14 | class ParseTestMethodAnnotationsMock 15 | { 16 | use ParseTestMethodAnnotationsTrait; 17 | } 18 | 19 | /** 20 | * @theTraitAnnotation 21 | */ 22 | trait ParseTestMethodAnnotationsTrait 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/Issue1216Test.php: -------------------------------------------------------------------------------- 1 | 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 Issue1216Test extends TestCase 13 | { 14 | public function testConfigAvailableInBootstrap(): void 15 | { 16 | $this->assertTrue($_ENV['configAvailableInBootstrap']); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception that is raised when @covers must be used but is not. 14 | */ 15 | final class MissingCoversAnnotationException extends RuntimeException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | public function testThree() 24 | { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php: -------------------------------------------------------------------------------- 1 | 6 | * 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\Filter; 11 | 12 | class ExcludeGroupFilterIterator extends GroupFilterIterator 13 | { 14 | protected function doAccept(string $hash): bool 15 | { 16 | return !\in_array($hash, $this->groupTests, true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php: -------------------------------------------------------------------------------- 1 | 6 | * 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\Filter; 11 | 12 | class IncludeGroupFilterIterator extends GroupFilterIterator 13 | { 14 | protected function doAccept(string $hash): bool 15 | { 16 | return \in_array($hash, $this->groupTests, true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/dataprovider-issue-2859.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit -c ../../_files/DataProviderIssue2859/phpunit.xml 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 Library extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isLibrary() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AbstractTrait.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | trait AbstractTrait 11 | { 12 | abstract public function doSomething(); 13 | 14 | public function mockableMethod() 15 | { 16 | return true; 17 | } 18 | 19 | public function anotherMockableMethod() 20 | { 21 | return true; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ChangeCurrentWorkingDirectoryTest.php: -------------------------------------------------------------------------------- 1 | 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 ChangeCurrentWorkingDirectoryTest extends TestCase 13 | { 14 | public function testSomethingThatChangesTheCwd(): void 15 | { 16 | \chdir('../'); 17 | $this->assertTrue(true); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClass.php: -------------------------------------------------------------------------------- 1 | 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 | * @codeCoverageIgnore 13 | */ 14 | class IgnoreCodeCoverageClass 15 | { 16 | public function returnTrue() 17 | { 18 | return true; 19 | } 20 | 21 | public function returnFalse() 22 | { 23 | return false; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.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/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/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/GitHub/2972/unconventiallyNamedIssue2972Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace Issue2972; 11 | 12 | use PHPUnit\Framework\TestCase; 13 | 14 | class Issue2972Test extends TestCase 15 | { 16 | public function testHello(): void 17 | { 18 | $this->assertNotEmpty('Hello world!'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /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/src/Util/TestResultCacheInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface TestResultCacheInterface 13 | { 14 | public function getState($testName): int; 15 | 16 | public function getTime($testName): float; 17 | 18 | public function load(): void; 19 | 20 | public function persist(): void; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class CoverageFunctionParenthesesTest extends TestCase 13 | { 14 | /** 15 | * @covers ::globalFunction() 16 | */ 17 | public function testSomething(): void 18 | { 19 | globalFunction(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/dependencies2.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit StackTest ../../_files/StackTest.php 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1468Test extends TestCase 13 | { 14 | /** 15 | * @todo Implement this test 16 | */ 17 | public function testFailure(): void 18 | { 19 | $this->markTestIncomplete(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/README.md: -------------------------------------------------------------------------------- 1 | # code-unit-reverse-lookup 2 | 3 | Looks up which function or method a line of code belongs to. 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/code-unit-reverse-lookup 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/code-unit-reverse-lookup 14 | 15 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/.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/sebastian/object-reflector/.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/phar-io/manifest/src/values/Application.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 Application extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isApplication() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php: -------------------------------------------------------------------------------- 1 | 9 | * @license http://www.opensource.org/licenses/mit-license.php MIT 10 | * @link http://phpdoc.org 11 | */ 12 | 13 | namespace phpDocumentor\Reflection\DocBlock\Tags\Factory; 14 | 15 | interface Strategy 16 | { 17 | public function create($body); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SelfDescribing.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * Interface for classes that can return a description of itself. 14 | */ 15 | interface SelfDescribing 16 | { 17 | /** 18 | * Returns a string representation of the object. 19 | */ 20 | public function toString(): string; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | 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 CoverageClassTest extends TestCase 13 | { 14 | /** 15 | * @covers CoveredClass 16 | */ 17 | public function testSomething(): void 18 | { 19 | $o = new CoveredClass; 20 | $o->publicMethod(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tests/OneTest.php: -------------------------------------------------------------------------------- 1 | 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\ExampleExtension\TestCaseTrait; 11 | use PHPUnit\Framework\TestCase; 12 | 13 | class OneTest extends TestCase 14 | { 15 | use TestCaseTrait; 16 | 17 | public function testOne(): void 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | 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 FatalTest extends TestCase 13 | { 14 | public function testFatalError(): void 15 | { 16 | if (\extension_loaded('xdebug')) { 17 | \xdebug_disable(); 18 | } 19 | 20 | eval('class FatalTest {}'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/defaulttestsuite.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox --configuration=__DIR__.'/../_files/configuration.defaulttestsuite.xml' 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue503Test extends TestCase 13 | { 14 | public function testCompareDifferentLineEndings(): void 15 | { 16 | $this->assertSame( 17 | "foo\n", 18 | "foo\r\n" 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /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/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.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/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 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 CoveragePublicTest extends TestCase 13 | { 14 | /** 15 | * @covers CoveredClass:: 16 | */ 17 | public function testSomething(): void 18 | { 19 | $o = new CoveredClass; 20 | $o->publicMethod(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2833/SecondTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace Foo\DataProviderIssue2833; 11 | 12 | use PHPUnit\Framework\TestCase; 13 | 14 | class SecondTest extends TestCase 15 | { 16 | public const DUMMY = 'dummy'; 17 | 18 | public function testSecond(): void 19 | { 20 | $this->assertTrue(true); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/NullPrinter.php: -------------------------------------------------------------------------------- 1 | 6 | * 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\Test; 11 | 12 | use PHPUnit\Framework\TestListener; 13 | use PHPUnit\Framework\TestListenerDefaultImplementation; 14 | use PHPUnit\Util\Printer; 15 | 16 | final class NullPrinter extends Printer implements TestListener 17 | { 18 | use TestListenerDefaultImplementation; 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/concrete-test-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ConcreteTest ../../_files/ConcreteTest.php 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | use PHPUnit\Framework\TestCase; 11 | 12 | class Issue1471Test extends TestCase 13 | { 14 | public function testFailure(): void 15 | { 16 | $this->expectOutputString('*'); 17 | 18 | print '*'; 19 | 20 | $this->assertTrue(false); 21 | } 22 | } 23 | --------------------------------------------------------------------------------