├── .gitignore ├── LICENSE ├── README.org ├── assets ├── certs │ └── .gitkeep ├── key │ └── .gitkeep └── wsdl │ ├── RicezioneTypes_v1.0.xsd │ ├── SdIRiceviFile_v1.0.wsdl │ ├── SdIRiceviNotifica_v1.0.wsdl │ └── TrasmissioneTypes_v1.0.xsd ├── composer.json ├── composer.lock ├── examples ├── invoice.xml ├── notice.xml ├── send-invoice.php └── send-notice.php ├── src ├── Client.php ├── FileSdI.php ├── FileSdIBase.php ├── RispostaSdINotificaEsito.php └── RispostaSdIRiceviFile.php ├── tests ├── ClientTest.php ├── FileSdIBaseTest.php ├── FileSdITest.php └── files │ ├── invoice.xml │ └── notice.xml └── vendor ├── autoload.php ├── bin └── phpunit ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── doctrine └── instantiator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Doctrine │ └── Instantiator │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── UnexpectedValueException.php │ ├── Instantiator.php │ └── InstantiatorInterface.php ├── myclabs └── deep-copy │ ├── .gitattributes │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── clone.png │ ├── deep-clone.png │ ├── deep-copy.png │ └── graph.png │ ├── fixtures │ ├── f001 │ │ ├── A.php │ │ └── B.php │ ├── f002 │ │ └── A.php │ ├── f003 │ │ └── Foo.php │ ├── f004 │ │ └── UnclonableItem.php │ ├── f005 │ │ └── Foo.php │ ├── f006 │ │ ├── A.php │ │ └── B.php │ ├── f007 │ │ ├── FooDateInterval.php │ │ └── FooDateTimeZone.php │ └── f008 │ │ ├── A.php │ │ └── B.php │ └── src │ └── DeepCopy │ ├── DeepCopy.php │ ├── Exception │ ├── CloneException.php │ └── PropertyException.php │ ├── Filter │ ├── Doctrine │ │ ├── DoctrineCollectionFilter.php │ │ ├── DoctrineEmptyCollectionFilter.php │ │ └── DoctrineProxyFilter.php │ ├── Filter.php │ ├── KeepFilter.php │ ├── ReplaceFilter.php │ └── SetNullFilter.php │ ├── Matcher │ ├── Doctrine │ │ └── DoctrineProxyMatcher.php │ ├── Matcher.php │ ├── PropertyMatcher.php │ ├── PropertyNameMatcher.php │ └── PropertyTypeMatcher.php │ ├── Reflection │ └── ReflectionHelper.php │ ├── TypeFilter │ ├── Date │ │ └── DateIntervalFilter.php │ ├── ReplaceFilter.php │ ├── ShallowCopyFilter.php │ ├── Spl │ │ ├── SplDoublyLinkedList.php │ │ └── SplDoublyLinkedListFilter.php │ └── TypeFilter.php │ ├── TypeMatcher │ └── TypeMatcher.php │ └── deep_copy.php ├── phar-io ├── manifest │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── composer.lock │ ├── examples │ │ └── example-01.php │ ├── phive.xml │ ├── phpunit.xml │ ├── src │ │ ├── ManifestDocumentMapper.php │ │ ├── ManifestLoader.php │ │ ├── ManifestSerializer.php │ │ ├── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidApplicationNameException.php │ │ │ ├── InvalidEmailException.php │ │ │ ├── InvalidUrlException.php │ │ │ ├── ManifestDocumentException.php │ │ │ ├── ManifestDocumentMapperException.php │ │ │ ├── ManifestElementException.php │ │ │ └── ManifestLoaderException.php │ │ ├── values │ │ │ ├── Application.php │ │ │ ├── ApplicationName.php │ │ │ ├── Author.php │ │ │ ├── AuthorCollection.php │ │ │ ├── AuthorCollectionIterator.php │ │ │ ├── BundledComponent.php │ │ │ ├── BundledComponentCollection.php │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ ├── CopyrightInformation.php │ │ │ ├── Email.php │ │ │ ├── Extension.php │ │ │ ├── Library.php │ │ │ ├── License.php │ │ │ ├── Manifest.php │ │ │ ├── PhpExtensionRequirement.php │ │ │ ├── PhpVersionRequirement.php │ │ │ ├── Requirement.php │ │ │ ├── RequirementCollection.php │ │ │ ├── RequirementCollectionIterator.php │ │ │ ├── Type.php │ │ │ └── Url.php │ │ └── xml │ │ │ ├── AuthorElement.php │ │ │ ├── AuthorElementCollection.php │ │ │ ├── BundlesElement.php │ │ │ ├── ComponentElement.php │ │ │ ├── ComponentElementCollection.php │ │ │ ├── ContainsElement.php │ │ │ ├── CopyrightElement.php │ │ │ ├── ElementCollection.php │ │ │ ├── ExtElement.php │ │ │ ├── ExtElementCollection.php │ │ │ ├── ExtensionElement.php │ │ │ ├── LicenseElement.php │ │ │ ├── ManifestDocument.php │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ ├── ManifestElement.php │ │ │ ├── PhpElement.php │ │ │ └── RequiresElement.php │ └── tests │ │ ├── ManifestDocumentMapperTest.php │ │ ├── ManifestLoaderTest.php │ │ ├── ManifestSerializerTest.php │ │ ├── _fixture │ │ ├── custom.xml │ │ ├── extension-invalidcompatible.xml │ │ ├── extension.xml │ │ ├── invalidversion.xml │ │ ├── invalidversionconstraint.xml │ │ ├── library.xml │ │ ├── manifest.xml │ │ ├── phpunit-5.6.5.xml │ │ └── test.phar │ │ ├── exceptions │ │ └── ManifestDocumentLoadingExceptionTest.php │ │ ├── values │ │ ├── ApplicationNameTest.php │ │ ├── ApplicationTest.php │ │ ├── AuthorCollectionTest.php │ │ ├── AuthorTest.php │ │ ├── BundledComponentCollectionTest.php │ │ ├── BundledComponentTest.php │ │ ├── CopyrightInformationTest.php │ │ ├── EmailTest.php │ │ ├── ExtensionTest.php │ │ ├── LibraryTest.php │ │ ├── LicenseTest.php │ │ ├── ManifestTest.php │ │ ├── PhpExtensionRequirementTest.php │ │ ├── PhpVersionRequirementTest.php │ │ ├── RequirementCollectionTest.php │ │ └── UrlTest.php │ │ └── xml │ │ ├── AuthorElementCollectionTest.php │ │ ├── AuthorElementTest.php │ │ ├── BundlesElementTest.php │ │ ├── ComponentElementCollectionTest.php │ │ ├── ComponentElementTest.php │ │ ├── ContainsElementTest.php │ │ ├── CopyrightElementTest.php │ │ ├── ExtElementCollectionTest.php │ │ ├── ExtElementTest.php │ │ ├── ExtensionElementTest.php │ │ ├── LicenseElementTest.php │ │ ├── ManifestDocumentTest.php │ │ ├── PhpElementTest.php │ │ └── RequiresElementTest.php └── version │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phive.xml │ ├── phpunit.xml │ ├── src │ ├── PreReleaseSuffix.php │ ├── Version.php │ ├── VersionConstraintParser.php │ ├── VersionConstraintValue.php │ ├── VersionNumber.php │ ├── constraints │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ └── VersionConstraint.php │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ └── UnsupportedVersionConstraintException.php │ └── tests │ ├── Integration │ └── VersionConstraintParserTest.php │ └── Unit │ ├── AbstractVersionConstraintTest.php │ ├── AndVersionConstraintGroupTest.php │ ├── AnyVersionConstraintTest.php │ ├── ExactVersionConstraintTest.php │ ├── GreaterThanOrEqualToVersionConstraintTest.php │ ├── OrVersionConstraintGroupTest.php │ ├── PreReleaseSuffixTest.php │ ├── SpecificMajorAndMinorVersionConstraintTest.php │ ├── SpecificMajorVersionConstraintTest.php │ └── VersionTest.php ├── phpdocumentor ├── reflection-common │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── .coveralls.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── easy-coding-standard.neon │ └── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ ├── Description.php │ │ ├── DescriptionFactory.php │ │ ├── ExampleFinder.php │ │ ├── Serializer.php │ │ ├── StandardTagFactory.php │ │ ├── Tag.php │ │ ├── TagFactory.php │ │ └── Tags │ │ │ ├── Author.php │ │ │ ├── BaseTag.php │ │ │ ├── Covers.php │ │ │ ├── Deprecated.php │ │ │ ├── Example.php │ │ │ ├── Factory │ │ │ ├── StaticMethod.php │ │ │ └── Strategy.php │ │ │ ├── Formatter.php │ │ │ ├── Formatter │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── Link.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── PropertyRead.php │ │ │ ├── PropertyWrite.php │ │ │ ├── Reference │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ │ ├── Return_.php │ │ │ ├── See.php │ │ │ ├── Since.php │ │ │ ├── Source.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php └── type-resolver │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Float_.php │ ├── Integer.php │ ├── Iterable_.php │ ├── Mixed_.php │ ├── Null_.php │ ├── Nullable.php │ ├── Object_.php │ ├── Parent_.php │ ├── Resource_.php │ ├── Scalar.php │ ├── Self_.php │ ├── Static_.php │ ├── String_.php │ ├── This.php │ └── Void_.php ├── phpspec └── prophecy │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Prophecy │ ├── Argument.php │ ├── Argument │ ├── ArgumentsWildcard.php │ └── Token │ │ ├── AnyValueToken.php │ │ ├── AnyValuesToken.php │ │ ├── ApproximateValueToken.php │ │ ├── ArrayCountToken.php │ │ ├── ArrayEntryToken.php │ │ ├── ArrayEveryEntryToken.php │ │ ├── CallbackToken.php │ │ ├── ExactValueToken.php │ │ ├── IdenticalValueToken.php │ │ ├── LogicalAndToken.php │ │ ├── LogicalNotToken.php │ │ ├── ObjectStateToken.php │ │ ├── StringContainsToken.php │ │ ├── TokenInterface.php │ │ └── TypeToken.php │ ├── Call │ ├── Call.php │ └── CallCenter.php │ ├── Comparator │ ├── ClosureComparator.php │ ├── Factory.php │ └── ProphecyComparator.php │ ├── Doubler │ ├── CachedDoubler.php │ ├── ClassPatch │ │ ├── ClassPatchInterface.php │ │ ├── DisableConstructorPatch.php │ │ ├── HhvmExceptionPatch.php │ │ ├── KeywordPatch.php │ │ ├── MagicCallPatch.php │ │ ├── ProphecySubjectPatch.php │ │ ├── ReflectionClassNewInstancePatch.php │ │ ├── SplFileInfoPatch.php │ │ ├── ThrowablePatch.php │ │ └── TraversablePatch.php │ ├── DoubleInterface.php │ ├── Doubler.php │ ├── Generator │ │ ├── ClassCodeGenerator.php │ │ ├── ClassCreator.php │ │ ├── ClassMirror.php │ │ ├── Node │ │ │ ├── ArgumentNode.php │ │ │ ├── ClassNode.php │ │ │ └── MethodNode.php │ │ ├── ReflectionInterface.php │ │ └── TypeHintReference.php │ ├── LazyDouble.php │ └── NameGenerator.php │ ├── Exception │ ├── Call │ │ └── UnexpectedCallException.php │ ├── Doubler │ │ ├── ClassCreatorException.php │ │ ├── ClassMirrorException.php │ │ ├── ClassNotFoundException.php │ │ ├── DoubleException.php │ │ ├── DoublerException.php │ │ ├── InterfaceNotFoundException.php │ │ ├── MethodNotExtendableException.php │ │ ├── MethodNotFoundException.php │ │ └── ReturnByReferenceException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Prediction │ │ ├── AggregateException.php │ │ ├── FailedPredictionException.php │ │ ├── NoCallsException.php │ │ ├── PredictionException.php │ │ ├── UnexpectedCallsCountException.php │ │ └── UnexpectedCallsException.php │ └── Prophecy │ │ ├── MethodProphecyException.php │ │ ├── ObjectProphecyException.php │ │ └── ProphecyException.php │ ├── PhpDocumentor │ ├── ClassAndInterfaceTagRetriever.php │ ├── ClassTagRetriever.php │ ├── LegacyClassTagRetriever.php │ └── MethodTagRetrieverInterface.php │ ├── Prediction │ ├── CallPrediction.php │ ├── CallTimesPrediction.php │ ├── CallbackPrediction.php │ ├── NoCallsPrediction.php │ └── PredictionInterface.php │ ├── Promise │ ├── CallbackPromise.php │ ├── PromiseInterface.php │ ├── ReturnArgumentPromise.php │ ├── ReturnPromise.php │ └── ThrowPromise.php │ ├── Prophecy │ ├── MethodProphecy.php │ ├── ObjectProphecy.php │ ├── ProphecyInterface.php │ ├── ProphecySubjectInterface.php │ ├── Revealer.php │ └── RevealerInterface.php │ ├── Prophet.php │ └── Util │ ├── ExportUtil.php │ └── StringUtil.php ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── stale.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog-6.1.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── CodeCoverage.php │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PHPDBG.php │ │ │ └── Xdebug.php │ │ ├── Exception │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnintentionallyCoveredCodeException.php │ │ ├── Filter.php │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── octicons.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ └── Xml │ │ │ │ ├── BuildInformation.php │ │ │ │ ├── Coverage.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Report.php │ │ │ │ ├── Source.php │ │ │ │ ├── Tests.php │ │ │ │ ├── Totals.php │ │ │ │ └── Unit.php │ │ ├── Util.php │ │ └── Version.php │ └── tests │ │ ├── TestCase.php │ │ ├── _files │ │ ├── BankAccount-clover.xml │ │ ├── BankAccount-crap4j.xml │ │ ├── BankAccount-text.txt │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── Crash.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── Report │ │ │ ├── HTML │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ ├── dashboard.html │ │ │ │ │ └── index.html │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── dashboard.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── dashboard.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── source_with_ignore.php.html │ │ │ └── XML │ │ │ │ ├── CoverageForBankAccount │ │ │ │ ├── BankAccount.php.xml │ │ │ │ └── index.xml │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ ├── index.xml │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ ├── index.xml │ │ │ │ └── source_with_ignore.php.xml │ │ ├── class-with-anonymous-function-clover.xml │ │ ├── class-with-anonymous-function-crap4j.xml │ │ ├── class-with-anonymous-function-text.txt │ │ ├── ignored-lines-clover.xml │ │ ├── ignored-lines-crap4j.xml │ │ ├── ignored-lines-text.txt │ │ ├── source_with_class_and_anonymous_function.php │ │ ├── source_with_ignore.php │ │ ├── source_with_namespace.php │ │ ├── source_with_oneline_annotations.php │ │ ├── source_without_ignore.php │ │ └── source_without_namespace.php │ │ ├── bootstrap.php │ │ └── tests │ │ ├── BuilderTest.php │ │ ├── CloverTest.php │ │ ├── CodeCoverageTest.php │ │ ├── Crap4jTest.php │ │ ├── FilterTest.php │ │ ├── HTMLTest.php │ │ ├── TextTest.php │ │ ├── UtilTest.php │ │ └── XmlTest.php ├── php-file-iterator │ ├── .gitattributes │ ├── .github │ │ └── stale.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php │ └── tests │ │ └── FactoryTest.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Exception.php │ │ ├── RuntimeException.php │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .github │ │ └── stale.yml │ ├── .gitignore │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ └── CachingFactory.php │ └── tests │ │ ├── Token │ │ ├── ClassTest.php │ │ ├── ClosureTest.php │ │ ├── FunctionTest.php │ │ ├── IncludeTest.php │ │ ├── InterfaceTest.php │ │ └── NamespaceTest.php │ │ ├── _fixture │ │ ├── classExtendsNamespacedClass.php │ │ ├── classInNamespace.php │ │ ├── classInScopedNamespace.php │ │ ├── classUsesNamespacedFunction.php │ │ ├── class_with_method_named_empty.php │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ ├── class_with_multiple_anonymous_classes_and_functions.php │ │ ├── closure.php │ │ ├── issue19.php │ │ ├── issue30.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── php-code-coverage-issue-424.php │ │ ├── source.php │ │ ├── source2.php │ │ ├── source3.php │ │ ├── source4.php │ │ └── source5.php │ │ └── bootstrap.php └── phpunit │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── stale.yml │ ├── .gitignore │ ├── .phan │ └── config.php │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog-6.5.md │ ├── ChangeLog-7.5.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── build.xml │ ├── composer.json │ ├── phive.xml │ ├── phpunit │ ├── phpunit.xml │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── CodeCoverageException.php │ │ ├── Constraint │ │ │ ├── ArrayHasKey.php │ │ │ ├── ArraySubset.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Constraint.php │ │ │ ├── Count.php │ │ │ ├── DirectoryExists.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── ExceptionMessageRegularExpression.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsFinite.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInfinite.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNan.php │ │ │ ├── IsNull.php │ │ │ ├── IsReadable.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── IsWritable.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── LogicalAnd.php │ │ │ ├── LogicalNot.php │ │ │ ├── LogicalOr.php │ │ │ ├── LogicalXor.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── RegularExpression.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatchesFormatDescription.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ └── TraversableContainsOnly.php │ │ ├── CoveredCodeNotExecutedException.php │ │ ├── DataProviderTestSuite.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Error.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception.php │ │ ├── ExceptionWrapper.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── MissingCoversAnnotationException.php │ │ ├── MockObject │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── NamespaceMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ ├── ForwardCompatibility │ │ │ │ └── MockObject.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation │ │ │ │ ├── Invocation.php │ │ │ │ ├── ObjectInvocation.php │ │ │ │ └── StaticInvocation.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Invokable.php │ │ │ ├── Matcher.php │ │ │ ├── Matcher │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── DeferredError.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── InvokedRecorder.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── StatelessInvocation.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockMethod.php │ │ │ ├── MockMethodSet.php │ │ │ ├── MockObject.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MatcherCollection.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ │ ├── OutputError.php │ │ ├── RiskyTest.php │ │ ├── RiskyTestError.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestListenerDefaultImplementation.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuiteIterator.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ ├── Warning.php │ │ └── WarningTestCase.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ └── NameFilterIterator.php │ │ ├── Hook │ │ │ ├── AfterIncompleteTestHook.php │ │ │ ├── AfterLastTestHook.php │ │ │ ├── AfterRiskyTestHook.php │ │ │ ├── AfterSkippedTestHook.php │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ ├── AfterTestErrorHook.php │ │ │ ├── AfterTestFailureHook.php │ │ │ ├── AfterTestHook.php │ │ │ ├── AfterTestWarningHook.php │ │ │ ├── BeforeFirstTestHook.php │ │ │ ├── BeforeTestHook.php │ │ │ ├── Hook.php │ │ │ ├── TestHook.php │ │ │ └── TestListenerAdapter.php │ │ ├── PhptTestCase.php │ │ ├── ResultCacheExtension.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Blacklist.php │ │ ├── Configuration.php │ │ ├── ConfigurationGenerator.php │ │ ├── ErrorHandler.php │ │ ├── FileLoader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.php │ │ ├── GlobalState.php │ │ ├── InvalidArgumentHelper.php │ │ ├── Json.php │ │ ├── Log │ │ ├── JUnit.php │ │ └── TeamCity.php │ │ ├── NullTestResultCache.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl.dist │ │ │ ├── TestCaseClass.tpl.dist │ │ │ └── TestCaseMethod.tpl.dist │ │ ├── WindowsPhpProcess.php │ │ └── eval-stdin.php │ │ ├── Printer.php │ │ ├── RegularExpression.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── CliTestDoxPrinter.php │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TestResult.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TestResultCache.php │ │ ├── TestResultCacheInterface.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── XdebugFilterScriptGenerator.php │ │ ├── Xml.php │ │ └── XmlTestListRenderer.php │ └── tests │ ├── _files │ ├── 3194.php │ ├── AbstractMockTestClass.php │ ├── AbstractTest.php │ ├── AbstractTrait.php │ ├── AnInterface.php │ ├── AnInterfaceWithReturnType.php │ ├── AnotherInterface.php │ ├── ArrayAccessible.php │ ├── AssertionExample.php │ ├── AssertionExampleTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BankAccountTest2.php │ ├── Bar.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── BeforeClassWithOnlyDataProviderTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassThatImplementsSerializable.php │ ├── ClassWithAllPossibleReturnTypes.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithSelfTypeHint.php │ ├── ClassWithStaticMethod.php │ ├── ClassWithToString.php │ ├── ClassWithVariadicArgumentMethod.php │ ├── ClonedDependencyTest.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CountConstraint.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.php │ ├── CoverageCoversOverridesCoversNothingTest.php │ ├── CoverageFunctionParenthesesTest.php │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ ├── CoverageFunctionTest.php │ ├── CoverageMethodOneLineAnnotationTest.php │ ├── CoverageMethodParenthesesTest.php │ ├── CoverageMethodParenthesesWhitespaceTest.php │ ├── CoverageMethodTest.php │ ├── CoverageNamespacedFunctionTest.php │ ├── CoverageNoneTest.php │ ├── CoverageNotPrivateTest.php │ ├── CoverageNotProtectedTest.php │ ├── CoverageNotPublicTest.php │ ├── CoverageNothingTest.php │ ├── CoveragePrivateTest.php │ ├── CoverageProtectedTest.php │ ├── CoveragePublicTest.php │ ├── CoverageTwoDefaultClassAnnotations.php │ ├── CoveredClass.php │ ├── CoveredFunction.php │ ├── CustomPrinter.php │ ├── DataProviderDebugTest.php │ ├── DataProviderDependencyTest.php │ ├── DataProviderFilterTest.php │ ├── DataProviderIncompleteTest.php │ ├── DataProviderIssue2833 │ │ ├── FirstTest.php │ │ └── SecondTest.php │ ├── DataProviderIssue2859 │ │ ├── phpunit.xml │ │ └── tests │ │ │ └── another │ │ │ └── TestWithDataProviderTest.php │ ├── DataProviderIssue2922 │ │ ├── FirstTest.php │ │ └── SecondTest.php │ ├── DataProviderSkippedTest.php │ ├── DataProviderTest.php │ ├── DataProviderTestDoxTest.php │ ├── DataproviderExecutionOrderTest.php │ ├── DataproviderExecutionOrderTest_result_cache.txt │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoNoAssertionTestCase.php │ ├── DoesNotPerformAssertionsButPerformingAssertionsTest.php │ ├── DoubleTestCase.php │ ├── DummyBarTest.php │ ├── DummyException.php │ ├── DummyFooTest.php │ ├── EmptyTestCaseTest.php │ ├── ExampleTrait.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionInTestDetectedInTeardown.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── ExceptionWithThrowable.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FalsyConstraint.php │ ├── FatalTest.php │ ├── Foo.php │ ├── FunctionCallback.php │ ├── Go ogle-Sea.rch.wsdl │ ├── GoogleSearch.wsdl │ ├── IgnoreCodeCoverageClass.php │ ├── IgnoreCodeCoverageClassTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── InterfaceWithSemiReservedMethodName.php │ ├── InterfaceWithStaticMethod.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MethodCallback.php │ ├── MethodCallbackByReference.php │ ├── MockRunner.php │ ├── MockTestInterface.php │ ├── Mockable.php │ ├── MultiDependencyTest.php │ ├── MultiDependencyTest_result_cache.txt │ ├── MultipleDataProviderTest.php │ ├── MyCommand.php │ ├── MyTestListener.php │ ├── NamedConstraint.php │ ├── NamespaceCoverageClassExtendedTest.php │ ├── NamespaceCoverageClassTest.php │ ├── NamespaceCoverageCoversClassPublicTest.php │ ├── NamespaceCoverageCoversClassTest.php │ ├── NamespaceCoverageMethodTest.php │ ├── NamespaceCoverageNotPrivateTest.php │ ├── NamespaceCoverageNotProtectedTest.php │ ├── NamespaceCoverageNotPublicTest.php │ ├── NamespaceCoveragePrivateTest.php │ ├── NamespaceCoverageProtectedTest.php │ ├── NamespaceCoveragePublicTest.php │ ├── NamespaceCoveredClass.php │ ├── NamespaceCoveredFunction.php │ ├── NoArgTestCaseTest.php │ ├── NoTestCaseClass.php │ ├── NoTestCases.php │ ├── NonStatic.php │ ├── NotExistingCoveredElementTest.php │ ├── NotPublicTestCase.php │ ├── NotSelfDescribingTest.php │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── ParseTestMethodAnnotationsMock.php │ ├── PartialMockTestClass.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── RouterTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── SingletonClass.php │ ├── SomeClass.php │ ├── StackTest.php │ ├── StaticMockTestClass.php │ ├── StatusTest.php │ ├── StopOnErrorTestSuite.php │ ├── StopOnWarningTestSuite.php │ ├── StopsOnWarningTest.php │ ├── StringableClass.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestAutoreferenced.php │ ├── TestDoxGroupTest.php │ ├── TestGeneratorMaker.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestIteratorAggregate.php │ ├── TestIteratorAggregate2.php │ ├── TestRisky.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWarning.php │ ├── TestWithTest.php │ ├── TestableCliTestDoxPrinter.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.php │ ├── TraversableMockTestInterface.php │ ├── TruthyConstraint.php │ ├── VariousIterableDataProviderTest.php │ ├── WasRun.php │ ├── WrapperIteratorAggregate.php │ ├── bar.xml │ ├── configuration.colors.empty.xml │ ├── configuration.colors.false.xml │ ├── configuration.colors.invalid.xml │ ├── configuration.colors.true.xml │ ├── configuration.columns.default.xml │ ├── configuration.custom-printer.xml │ ├── configuration.defaulttestsuite.xml │ ├── configuration.one-file-suite.xml │ ├── configuration.suites.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_execution_order_options.xml │ ├── configuration_stop_on_defect.xml │ ├── configuration_stop_on_error.xml │ ├── configuration_stop_on_incomplete.xml │ ├── configuration_stop_on_warning.xml │ ├── configuration_whitelist.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── phpt-for-coverage.phpt │ ├── phpt-xfail.phpt │ ├── phpunit-example-extension │ │ ├── phpunit.xml │ │ ├── tests │ │ │ └── OneTest.php │ │ └── tools │ │ │ └── phpunit.d │ │ │ └── phpunit-example-extension-3.0.3.phar │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ ├── bootstrap.php │ ├── end-to-end │ ├── _files │ │ ├── Extension.php │ │ ├── HookTest.php │ │ ├── NullPrinter.php │ │ ├── expect_external.txt │ │ ├── hooks.xml │ │ ├── phpt-env.expected.txt │ │ └── phpt_external.php │ ├── abstract-test-class.phpt │ ├── assertion.phpt │ ├── cache-result.phpt │ ├── code-coverage-ignore.phpt │ ├── code-coverage-phpt.phpt │ ├── colors-always.phpt │ ├── concrete-test-class.phpt │ ├── custom-printer-debug.phpt │ ├── custom-printer-verbose.phpt │ ├── dataprovider-debug.phpt │ ├── dataprovider-issue-2833.phpt │ ├── dataprovider-issue-2859.phpt │ ├── dataprovider-issue-2922.phpt │ ├── dataprovider-log-xml-isolation.phpt │ ├── dataprovider-log-xml.phpt │ ├── dataprovider-testdox.phpt │ ├── debug.phpt │ ├── default-isolation.phpt │ ├── default.phpt │ ├── defaulttestsuite-using-testsuite.phpt │ ├── defaulttestsuite.phpt │ ├── defects-first-order-via-cli.phpt │ ├── dependencies-clone.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── disable-code-coverage-ignore.phpt │ ├── dump-xdebug-filter.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.phpt │ ├── execution-order-options-via-config.phpt │ ├── failure-isolation.phpt │ ├── failure-reverse-list.phpt │ ├── failure.phpt │ ├── fatal-isolation.phpt │ ├── filter-class-isolation.phpt │ ├── filter-class.phpt │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ ├── filter-dataprovider-by-classname-and-range.phpt │ ├── filter-dataprovider-by-number-isolation.phpt │ ├── filter-dataprovider-by-number.phpt │ ├── filter-dataprovider-by-only-range-isolation.phpt │ ├── filter-dataprovider-by-only-range.phpt │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ ├── filter-dataprovider-by-only-regexp.phpt │ ├── filter-dataprovider-by-only-string-isolation.phpt │ ├── filter-dataprovider-by-only-string.phpt │ ├── filter-dataprovider-by-range-isolation.phpt │ ├── filter-dataprovider-by-range.phpt │ ├── filter-dataprovider-by-regexp-isolation.phpt │ ├── filter-dataprovider-by-regexp.phpt │ ├── filter-dataprovider-by-string-isolation.phpt │ ├── filter-dataprovider-by-string.phpt │ ├── filter-method-case-insensitive.phpt │ ├── filter-method-case-sensitive-no-result.phpt │ ├── filter-method-isolation.phpt │ ├── filter-method.phpt │ ├── filter-no-results.phpt │ ├── forward-compatibility.phpt │ ├── group-isolation.phpt │ ├── group.phpt │ ├── help.phpt │ ├── help2.phpt │ ├── hooks.phpt │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── list-suites.phpt │ ├── list-tests-dataprovider.phpt │ ├── list-tests-xml-dataprovider.phpt │ ├── log-junit-phpt.phpt │ ├── log-junit.phpt │ ├── log-teamcity-phpt.phpt │ ├── log-teamcity.phpt │ ├── mock-objects │ │ ├── generator │ │ │ ├── 232.phpt │ │ │ ├── 3154_namespaced_constant_resolving.phpt │ │ │ ├── 397.phpt │ │ │ ├── abstract_class.phpt │ │ │ ├── class.phpt │ │ │ ├── class_call_parent_clone.phpt │ │ │ ├── class_call_parent_constructor.phpt │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── class_nonexistent_method.phpt │ │ │ ├── class_partial.phpt │ │ │ ├── class_with_deprecated_method.phpt │ │ │ ├── class_with_final_method.phpt │ │ │ ├── class_with_method_named_method.phpt │ │ │ ├── class_with_method_with_nullable_typehinted_variadic_arguments.phpt │ │ │ ├── class_with_method_with_typehinted_variadic_arguments.phpt │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ ├── constant_as_parameter_default_value.phpt │ │ │ ├── interface.phpt │ │ │ ├── invocation_object_clone_object.phpt │ │ │ ├── namespaced_class.phpt │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_partial.phpt │ │ │ ├── namespaced_interface.phpt │ │ │ ├── nonexistent_class.phpt │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ ├── nullable_types.phpt │ │ │ ├── proxy.phpt │ │ │ ├── return_type_declarations_closure.phpt │ │ │ ├── return_type_declarations_final.phpt │ │ │ ├── return_type_declarations_generator.phpt │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ ├── return_type_declarations_parent.phpt │ │ │ ├── return_type_declarations_self.phpt │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ ├── return_type_declarations_void.phpt │ │ │ ├── scalar_type_declarations.phpt │ │ │ ├── wsdl_class.phpt │ │ │ ├── wsdl_class_namespace.phpt │ │ │ └── wsdl_class_partial.phpt │ │ └── mock-method │ │ │ ├── call_original.phpt │ │ │ ├── call_original_with_argument.phpt │ │ │ ├── call_original_with_argument_variadic.phpt │ │ │ ├── call_original_with_return_type_void.phpt │ │ │ ├── clone_method_arguments.phpt │ │ │ ├── deprecated_with_description.phpt │ │ │ ├── deprecated_without_description.phpt │ │ │ ├── private_method.phpt │ │ │ ├── protected_method.phpt │ │ │ ├── return_by_reference.phpt │ │ │ ├── return_by_reference_with_return_type.phpt │ │ │ ├── return_type.phpt │ │ │ ├── return_type_parent.phpt │ │ │ ├── return_type_self.phpt │ │ │ ├── static_method.phpt │ │ │ ├── static_method_with_return_type.phpt │ │ │ ├── with_argument.phpt │ │ │ ├── with_argument_default.phpt │ │ │ ├── with_argument_default_constant.phpt │ │ │ ├── with_argument_default_null.phpt │ │ │ ├── with_argument_nullable.phpt │ │ │ ├── with_argument_reference.phpt │ │ │ ├── with_argument_typed_array.phpt │ │ │ ├── with_argument_typed_callable.phpt │ │ │ ├── with_argument_typed_class.phpt │ │ │ ├── with_argument_typed_scalar.phpt │ │ │ ├── with_argument_typed_self.phpt │ │ │ ├── with_argument_typed_unkown_class.phpt │ │ │ ├── with_argument_typed_variadic.phpt │ │ │ ├── with_argument_variadic.phpt │ │ │ └── with_arguments.phpt │ ├── mycommand.phpt │ ├── options-after-arguments.phpt │ ├── order-by-default-invalid-via-cli.phpt │ ├── output-isolation.phpt │ ├── phar-extension-suppressed.phpt │ ├── phar-extension.phpt │ ├── phpt-args.phpt │ ├── phpt-env.phpt │ ├── phpt-external.phpt │ ├── phpt-stderr.phpt │ ├── phpt-stdin.phpt │ ├── phpt-xfail.phpt │ ├── regression │ │ ├── GitHub │ │ │ ├── 74 │ │ │ │ ├── Issue74Test.php │ │ │ │ └── NewException.php │ │ │ ├── 244 │ │ │ │ └── Issue244Test.php │ │ │ ├── 322 │ │ │ │ ├── Issue322Test.php │ │ │ │ └── phpunit322.xml │ │ │ ├── 433 │ │ │ │ └── Issue433Test.php │ │ │ ├── 445 │ │ │ │ └── Issue445Test.php │ │ │ ├── 498 │ │ │ │ └── Issue498Test.php │ │ │ ├── 503 │ │ │ │ └── Issue503Test.php │ │ │ ├── 581 │ │ │ │ └── Issue581Test.php │ │ │ ├── 765 │ │ │ │ └── Issue765Test.php │ │ │ ├── 797 │ │ │ │ ├── Issue797Test.php │ │ │ │ └── bootstrap797.php │ │ │ ├── 873 │ │ │ │ └── Issue873Test.php │ │ │ ├── 1149 │ │ │ │ └── Issue1149Test.php │ │ │ ├── 1216 │ │ │ │ ├── Issue1216Test.php │ │ │ │ ├── bootstrap1216.php │ │ │ │ └── phpunit1216.xml │ │ │ ├── 1265 │ │ │ │ ├── Issue1265Test.php │ │ │ │ └── phpunit1265.xml │ │ │ ├── 1330 │ │ │ │ ├── Issue1330Test.php │ │ │ │ └── phpunit1330.xml │ │ │ ├── 1335 │ │ │ │ ├── Issue1335Test.php │ │ │ │ └── bootstrap1335.php │ │ │ ├── 1337 │ │ │ │ └── Issue1337Test.php │ │ │ ├── 1348 │ │ │ │ └── Issue1348Test.php │ │ │ ├── 1351 │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ └── Issue1351Test.php │ │ │ ├── 1374 │ │ │ │ └── Issue1374Test.php │ │ │ ├── 1437 │ │ │ │ └── Issue1437Test.php │ │ │ ├── 1468 │ │ │ │ └── Issue1468Test.php │ │ │ ├── 1471 │ │ │ │ └── Issue1471Test.php │ │ │ ├── 1472 │ │ │ │ └── Issue1472Test.php │ │ │ ├── 1570 │ │ │ │ └── Issue1570Test.php │ │ │ ├── 2085 │ │ │ │ ├── Issue2085Test.php │ │ │ │ └── configuration_enforce_time_limit_options.xml │ │ │ ├── 2137 │ │ │ │ └── Issue2137Test.php │ │ │ ├── 2145 │ │ │ │ └── Issue2145Test.php │ │ │ ├── 2158 │ │ │ │ ├── Issue2158Test.php │ │ │ │ └── constant.inc │ │ │ ├── 2366 │ │ │ │ └── Issue2366Test.php │ │ │ ├── 2380 │ │ │ │ └── Issue2380Test.php │ │ │ ├── 2382 │ │ │ │ └── Issue2382Test.php │ │ │ ├── 2435 │ │ │ │ └── Issue2435Test.php │ │ │ ├── 2448 │ │ │ │ ├── .gitignore │ │ │ │ └── Test.php │ │ │ ├── 2591 │ │ │ │ ├── SeparateClassPreserveTest.php │ │ │ │ ├── SeparateFunctionNoPreserveTest.php │ │ │ │ ├── SeparateFunctionPreserveTest.php │ │ │ │ ├── bootstrapNoBootstrap.php │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ └── bootstrapWithBootstrapNoGlobal.php │ │ │ ├── 2724 │ │ │ │ └── SeparateClassRunMethodInNewProcessTest.php │ │ │ ├── 2725 │ │ │ │ └── BeforeAfterClassPidTest.php │ │ │ ├── 2731 │ │ │ │ └── Issue2731Test.php │ │ │ ├── 2811 │ │ │ │ └── Issue2811Test.php │ │ │ ├── 2830 │ │ │ │ └── Issue2830Test.php │ │ │ ├── 2972 │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ ├── 3093 │ │ │ │ ├── Issue3093Test.php │ │ │ │ └── issue-3093-test.phpt │ │ │ ├── 3107 │ │ │ │ ├── Issue3107Test.php │ │ │ │ └── issue-3107-test.phpt │ │ │ ├── 3156 │ │ │ │ └── Issue3156Test.php │ │ │ ├── 3364 │ │ │ │ ├── issue-3364-test.phpt │ │ │ │ └── tests │ │ │ │ │ ├── Issue3364SetupBeforeClassTest.php │ │ │ │ │ └── Issue3364SetupTest.php │ │ │ ├── 3379 │ │ │ │ ├── Issue3379Test.php │ │ │ │ ├── Issue3379TestListener.php │ │ │ │ └── phpunit.xml │ │ │ ├── 3380 │ │ │ │ └── issue-3380-test.phpt │ │ │ ├── 3396 │ │ │ │ └── issue-3396-test.phpt │ │ │ ├── 1149.phpt │ │ │ ├── 1216.phpt │ │ │ ├── 1265.phpt │ │ │ ├── 1330.phpt │ │ │ ├── 1335.phpt │ │ │ ├── 1337.phpt │ │ │ ├── 1348.phpt │ │ │ ├── 1351.phpt │ │ │ ├── 1374.phpt │ │ │ ├── 1437.phpt │ │ │ ├── 1468.phpt │ │ │ ├── 1471.phpt │ │ │ ├── 1472.phpt │ │ │ ├── 1570.phpt │ │ │ ├── 2085-enforce-time-limit-options-via-config-without-invoker.phpt │ │ │ ├── 2085-without-invoker.phpt │ │ │ ├── 2085.phpt │ │ │ ├── 2137-filter.phpt │ │ │ ├── 2137-no_filter.phpt │ │ │ ├── 2145.phpt │ │ │ ├── 2158.phpt │ │ │ ├── 2366.phpt │ │ │ ├── 2380.phpt │ │ │ ├── 2382.phpt │ │ │ ├── 2435.phpt │ │ │ ├── 244.phpt │ │ │ ├── 2448-existing-test.phpt │ │ │ ├── 2448-not-existing-test.phpt │ │ │ ├── 2591-separate-class-preserve-no-bootstrap.phpt │ │ │ ├── 2591-separate-class-preserve.phpt │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap-php73.phpt │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap-xdebug.phpt │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap.phpt │ │ │ ├── 2591-separate-function-no-preserve.phpt │ │ │ ├── 2591-separate-function-preserve.phpt │ │ │ ├── 2724-diff-pid-from-master-process.phpt │ │ │ ├── 2725-separate-class-before-after-pid.phpt │ │ │ ├── 2731.phpt │ │ │ ├── 2811.phpt │ │ │ ├── 2830.phpt │ │ │ ├── 2972.phpt │ │ │ ├── 322.phpt │ │ │ ├── 3379.phpt │ │ │ ├── 433.phpt │ │ │ ├── 445.phpt │ │ │ ├── 498.phpt │ │ │ ├── 503.phpt │ │ │ ├── 581.phpt │ │ │ ├── 74.phpt │ │ │ ├── 765.phpt │ │ │ ├── 797.phpt │ │ │ ├── 863.phpt │ │ │ └── 873.phpt │ │ └── Trac │ │ │ ├── 523 │ │ │ └── Issue523Test.php │ │ │ ├── 578 │ │ │ └── Issue578Test.php │ │ │ ├── 684 │ │ │ └── Issue684Test.php │ │ │ ├── 783 │ │ │ ├── ChildSuite.php │ │ │ ├── OneTest.php │ │ │ ├── ParentSuite.php │ │ │ └── TwoTest.php │ │ │ ├── 1021 │ │ │ └── Issue1021Test.php │ │ │ ├── 1021.phpt │ │ │ ├── 523.phpt │ │ │ ├── 578.phpt │ │ │ ├── 684.phpt │ │ │ └── 783.phpt │ ├── repeat.phpt │ ├── report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt │ ├── report-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── stop-on-defect-via-cli.phpt │ ├── stop-on-defect-via-config.phpt │ ├── stop-on-error-via-cli.phpt │ ├── stop-on-error-via-config.phpt │ ├── stop-on-incomplete-via-cli.phpt │ ├── stop-on-incomplete-via-config.phpt │ ├── stop-on-warning-via-cli.phpt │ ├── stop-on-warning-via-config.phpt │ ├── teamcity-inner-exceptions.phpt │ ├── teamcity.phpt │ ├── test-order-randomized-seed-with-dependency-resolution.phpt │ ├── test-order-randomized-with-dependency-resolution.phpt │ ├── test-order-reversed-with-dependency-resolution.phpt │ ├── test-order-reversed-without-dependency-resolution.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-dataprovider-placeholder.phpt │ ├── testdox-exclude-group.phpt │ ├── testdox-group.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ ├── testdox-verbose.phpt │ ├── testdox-xml.phpt │ └── testdox.phpt │ ├── fail │ └── fail.phpt │ └── unit │ ├── Framework │ ├── AssertTest.php │ ├── Constraint │ │ ├── ArrayHasKeyTest.php │ │ ├── ArraySubsetTest.php │ │ ├── AttributeTest.php │ │ ├── CallbackTest.php │ │ ├── ClassHasAttributeTest.php │ │ ├── ClassHasStaticAttributeTest.php │ │ ├── ConstraintTestCase.php │ │ ├── CountTest.php │ │ ├── DirectoryExistsTest.php │ │ ├── ExceptionMessageRegExpTest.php │ │ ├── ExceptionMessageTest.php │ │ ├── FileExistsTest.php │ │ ├── GreaterThanTest.php │ │ ├── IsEmptyTest.php │ │ ├── IsEqualTest.php │ │ ├── IsIdenticalTest.php │ │ ├── IsInstanceOfTest.php │ │ ├── IsJsonTest.php │ │ ├── IsNullTest.php │ │ ├── IsReadableTest.php │ │ ├── IsTypeTest.php │ │ ├── IsWritableTest.php │ │ ├── JsonMatchesErrorMessageProviderTest.php │ │ ├── JsonMatchesTest.php │ │ ├── LessThanTest.php │ │ ├── LogicalAndTest.php │ │ ├── LogicalOrTest.php │ │ ├── LogicalXorTest.php │ │ ├── ObjectHasAttributeTest.php │ │ ├── RegularExpressionTest.php │ │ ├── SameSizeTest.php │ │ ├── StringContainsTest.php │ │ ├── StringEndsWithTest.php │ │ ├── StringMatchesFormatDescriptionTest.php │ │ ├── StringStartsWithTest.php │ │ └── TraversableContainsTest.php │ ├── ConstraintTest.php │ ├── ExceptionWrapperTest.php │ ├── MockObject │ │ ├── Builder │ │ │ └── InvocationMockerTest.php │ │ ├── GeneratorTest.php │ │ ├── Invocation │ │ │ ├── ObjectInvocationTest.php │ │ │ └── StaticInvocationTest.php │ │ ├── Matcher │ │ │ └── ConsecutiveParametersTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockMethodTest.php │ │ ├── MockObjectTest.php │ │ └── ProxyObjectTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ ├── TestListenerTest.php │ ├── TestResultTest.php │ └── TestSuiteTest.php │ ├── Runner │ ├── Filter │ │ └── NameFilterIteratorTest.php │ ├── PhptTestCaseTest.php │ ├── ResultCacheExtensionTest.php │ └── TestSuiteSorterTest.php │ ├── TextUI │ └── TestRunnerTest.php │ └── Util │ ├── ConfigurationGeneratorTest.php │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── JsonTest.php │ ├── NullTestResultCacheTest.php │ ├── PHP │ └── AbstractPhpProcessTest.php │ ├── RegularExpressionTest.php │ ├── TestDox │ ├── CliTestDoxPrinterTest.php │ └── NamePrettifierTest.php │ ├── TestResultCacheTest.php │ ├── TestTest.php │ ├── XDebugFilterScriptGeneratorTest.php │ ├── XmlTest.php │ └── _files │ └── expectedXDebugFilterScript.txt ├── sebastian ├── code-unit-reverse-lookup │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Wizard.php │ └── tests │ │ └── WizardTest.php ├── comparator │ ├── .github │ │ └── stale.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── ArrayComparator.php │ │ ├── Comparator.php │ │ ├── ComparisonFailure.php │ │ ├── DOMNodeComparator.php │ │ ├── DateTimeComparator.php │ │ ├── DoubleComparator.php │ │ ├── ExceptionComparator.php │ │ ├── Factory.php │ │ ├── MockObjectComparator.php │ │ ├── NumericComparator.php │ │ ├── ObjectComparator.php │ │ ├── ResourceComparator.php │ │ ├── ScalarComparator.php │ │ ├── SplObjectStorageComparator.php │ │ └── TypeComparator.php │ └── tests │ │ ├── ArrayComparatorTest.php │ │ ├── ComparisonFailureTest.php │ │ ├── DOMNodeComparatorTest.php │ │ ├── DateTimeComparatorTest.php │ │ ├── DoubleComparatorTest.php │ │ ├── ExceptionComparatorTest.php │ │ ├── FactoryTest.php │ │ ├── MockObjectComparatorTest.php │ │ ├── NumericComparatorTest.php │ │ ├── ObjectComparatorTest.php │ │ ├── ResourceComparatorTest.php │ │ ├── ScalarComparatorTest.php │ │ ├── SplObjectStorageComparatorTest.php │ │ ├── TypeComparatorTest.php │ │ └── _fixture │ │ ├── Author.php │ │ ├── Book.php │ │ ├── ClassWithToString.php │ │ ├── SampleClass.php │ │ ├── Struct.php │ │ ├── TestClass.php │ │ └── TestClassComparator.php ├── diff │ ├── .github │ │ └── stale.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── Exception │ │ │ ├── ConfigurationException.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── Line.php │ │ ├── LongestCommonSubsequenceCalculator.php │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ ├── Parser.php │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ └── tests │ │ ├── ChunkTest.php │ │ ├── DiffTest.php │ │ ├── DifferTest.php │ │ ├── Exception │ │ ├── ConfigurationExceptionTest.php │ │ └── InvalidArgumentExceptionTest.php │ │ ├── LineTest.php │ │ ├── LongestCommonSubsequenceTest.php │ │ ├── MemoryEfficientImplementationTest.php │ │ ├── Output │ │ ├── AbstractChunkOutputBuilderTest.php │ │ ├── DiffOnlyOutputBuilderTest.php │ │ ├── Integration │ │ │ ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php │ │ │ └── UnifiedDiffOutputBuilderIntegrationTest.php │ │ ├── StrictUnifiedDiffOutputBuilderDataProvider.php │ │ ├── StrictUnifiedDiffOutputBuilderTest.php │ │ ├── UnifiedDiffOutputBuilderDataProvider.php │ │ └── UnifiedDiffOutputBuilderTest.php │ │ ├── ParserTest.php │ │ ├── TimeEfficientImplementationTest.php │ │ ├── Utils │ │ ├── FileUtils.php │ │ ├── UnifiedDiffAssertTrait.php │ │ ├── UnifiedDiffAssertTraitIntegrationTest.php │ │ └── UnifiedDiffAssertTraitTest.php │ │ └── fixtures │ │ ├── .editorconfig │ │ ├── UnifiedDiffAssertTraitIntegrationTest │ │ ├── 1_a.txt │ │ ├── 1_b.txt │ │ ├── 2_a.txt │ │ └── 2_b.txt │ │ ├── out │ │ ├── .editorconfig │ │ └── .gitignore │ │ ├── patch.txt │ │ ├── patch2.txt │ │ └── serialized_diff.bin ├── environment │ ├── .github │ │ └── stale.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Console.php │ │ ├── OperatingSystem.php │ │ └── Runtime.php │ └── tests │ │ ├── ConsoleTest.php │ │ ├── OperatingSystemTest.php │ │ └── RuntimeTest.php ├── exporter │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Exporter.php │ └── tests │ │ └── ExporterTest.php ├── global-state │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Blacklist.php │ │ ├── CodeExporter.php │ │ ├── Restorer.php │ │ ├── Snapshot.php │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ └── tests │ │ ├── BlacklistTest.php │ │ ├── CodeExporterTest.php │ │ ├── RestorerTest.php │ │ ├── SnapshotTest.php │ │ └── _fixture │ │ ├── BlacklistedChildClass.php │ │ ├── BlacklistedClass.php │ │ ├── BlacklistedImplementor.php │ │ ├── BlacklistedInterface.php │ │ ├── SnapshotClass.php │ │ ├── SnapshotDomDocument.php │ │ ├── SnapshotFunctions.php │ │ └── SnapshotTrait.php ├── object-enumerator │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Enumerator.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ ├── EnumeratorTest.php │ │ └── _fixture │ │ └── ExceptionThrower.php ├── object-reflector │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── ObjectReflector.php │ └── tests │ │ ├── ObjectReflectorTest.php │ │ └── _fixture │ │ ├── ChildClass.php │ │ ├── ClassWithIntegerAttributeName.php │ │ └── ParentClass.php ├── recursion-context │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ └── ContextTest.php ├── resource-operations │ ├── .github │ │ └── stale.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── generate.php │ ├── composer.json │ ├── src │ │ └── ResourceOperations.php │ └── tests │ │ └── ResourceOperationsTest.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── theseer └── tokenizer │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phive.xml │ ├── phpunit.xml │ ├── src │ ├── Exception.php │ ├── NamespaceUri.php │ ├── NamespaceUriException.php │ ├── Token.php │ ├── TokenCollection.php │ ├── TokenCollectionException.php │ ├── Tokenizer.php │ └── XMLSerializer.php │ └── tests │ ├── NamespaceUriTest.php │ ├── TokenCollectionTest.php │ ├── TokenTest.php │ ├── TokenizerTest.php │ ├── XMLSerializerTest.php │ └── _files │ ├── customns.xml │ ├── test.php │ ├── test.php.tokens │ └── test.php.xml └── webmozart └── assert ├── .composer-auth.json ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src └── Assert.php /.gitignore: -------------------------------------------------------------------------------- 1 | examples/*.key 2 | examples/*.pem 3 | assets/certs/* 4 | !assets/certs/.gitkeep 5 | assets/key/* 6 | !assets/key/.gitkeep 7 | -------------------------------------------------------------------------------- /assets/certs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/assets/certs/.gitkeep -------------------------------------------------------------------------------- /assets/key/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/assets/key/.gitkeep -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpspec/prophecy/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.png binary 5 | 6 | tests/ export-ignore 7 | phpunit.xml.dist export-ignore 8 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.phar 2 | /composer.lock 3 | /vendor/* 4 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | build: 2 | environment: 3 | variables: 4 | COMPOSER_ROOT_VERSION: '1.8.0' 5 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /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/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/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/myclabs/deep-copy/fixtures/f004/UnclonableItem.php: -------------------------------------------------------------------------------- 1 | cloned = true; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /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/myclabs/deep-copy/fixtures/f007/FooDateInterval.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f007/FooDateTimeZone.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/A.php: -------------------------------------------------------------------------------- 1 | foo = $foo; 12 | } 13 | 14 | public function getFoo() 15 | { 16 | return $this->foo; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /src/autoload.php 4 | /tools 5 | /vendor 6 | 7 | /build 8 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /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/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/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/phar-io/manifest/src/exceptions/ManifestDocumentException.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/phar-io/manifest/src/values/Library.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class Library extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isLibrary() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/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/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/phar-io/manifest/tests/_fixture/custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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/invalidversionconstraint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/library.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/phar-io/manifest/tests/_fixture/test.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/phar-io/manifest/tests/_fixture/test.phar -------------------------------------------------------------------------------- /vendor/phar-io/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | 8 | -------------------------------------------------------------------------------- /vendor/phar-io/version/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.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/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | [![Build Status](https://travis-ci.org/phpDocumentor/ReflectionCommon.svg?branch=master)](https://travis-ci.org/phpDocumentor/ReflectionCommon) 3 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | coverage_clover: coverage.xml 3 | json_path: coverage.json 4 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /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/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/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/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-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/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-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/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css: -------------------------------------------------------------------------------- 1 | .octicon { 2 | display: inline-block; 3 | vertical-align: text-top; 4 | fill: currentColor; 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/php-code-coverage/tests/_files/BankAccount-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report: 4 | %s 5 | 6 | Summary: 7 | Classes: 0.00% (0/1) 8 | Methods: 75.00% (3/4) 9 | Lines: 50.00% (5/10) 10 | 11 | BankAccount 12 | Methods: 75.00% ( 3/ 4) Lines: 50.00% ( 5/ 10) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassExtendedTest.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/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /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/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/CoverageNotPublicTest.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/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.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/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 10 | */ 11 | public function testSomething() 12 | { 13 | $o = new Foo\CoveredClass; 14 | $o->publicMethod(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.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/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /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/NamespaceCoverageNotProtectedTest.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/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/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/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/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | public function testThree() 24 | { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /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/php-code-coverage/tests/_files/ignored-lines-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report:%w 4 | %s 5 | %w 6 | Summary:%w 7 | Classes: (0/0) 8 | Methods: (0/0) 9 | Lines: 50.00% (1/2) 10 | 11 | -------------------------------------------------------------------------------- /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 | 11 | namespace SebastianBergmann\Timer; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /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/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /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/php-token-stream/tests/_fixture/classExtendsNamespacedClass.php: -------------------------------------------------------------------------------- 1 | method_in_anonymous_class(); 11 | } 12 | 13 | public function methodTwo() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/closure.php: -------------------------------------------------------------------------------- 1 | 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/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | indent_style = space 7 | indent_size = 4 8 | charset = utf-8 9 | 10 | [tests/_files/*_result_cache.txt] 11 | insert_final_newline = false 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /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/.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/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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/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/src/Framework/MockObject/Generator/deprecation.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function method() 3 | { 4 | $any = new \PHPUnit\Framework\MockObject\Matcher\AnyInvokedCount; 5 | $expects = $this->expects($any); 6 | 7 | return call_user_func_array([$expects, 'method'], func_get_args()); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type} 3 | { 4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /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/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/src/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /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/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/phpunit/src/Framework/RiskyTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class RiskyTestError extends AssertionFailedError implements RiskyTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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/src/Framework/SkippedTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | interface SkippedTest 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/src/Framework/SkippedTestSuiteError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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/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/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/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/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/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/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/AfterSuccessfulTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterSuccessfulTestHook extends TestHook 13 | { 14 | public function executeAfterSuccessfulTest(string $test, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/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/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/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/src/Runner/Hook/TestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 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/src/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | eval('?>' . \file_get_contents('php://stdin')); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/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/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/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/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/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/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/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/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/_files/Author.php: -------------------------------------------------------------------------------- 1 | 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/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/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/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/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/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/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/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/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/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/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/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/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/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/_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/_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/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | 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/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/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | function globalFunction(): void 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/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/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/_files/DataProviderIssue2859/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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/_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/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/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/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/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/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/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/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/_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/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/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/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/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/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/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/_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/_files/InterfaceWithSemiReservedMethodName.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | interface InterfaceWithSemiReservedMethodName 11 | { 12 | public function unset(); 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_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/JsonData/arrayObject.json: -------------------------------------------------------------------------------- 1 | ["Mascott", "Tux", "OS", "Linux"] 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /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/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/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/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/_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/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/NoTestCaseClass.php: -------------------------------------------------------------------------------- 1 | 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/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/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/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/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/_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/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/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/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/_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/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/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/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/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/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/_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/_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/_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/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/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/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/_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/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/_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/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/_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/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/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.empty.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.false.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.columns.default.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.custom-printer.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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/phpunit/tests/_files/configuration.one-file-suite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../../tests/end-to-end/debug.phpt 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.suites.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_execution_order_options.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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_incomplete.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-for-coverage.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT for testing coverage 3 | --FILE-- 4 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /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/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | tests 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-3.0.3.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-3.0.3.phar -------------------------------------------------------------------------------- /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/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /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/phpunit/tests/end-to-end/concrete-test-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ConcreteTest ../../_files/ConcreteTest.php 3 | --FILE-- 4 | 0 && $argv[1] == 'help') { 8 | print 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-env.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner should support ENV section 3 | --ENV-- 4 | FOO=bar 5 | --FILE-- 6 | 11 | --EXPECTF_EXTERNAL-- 12 | _files/phpt-env.expected.txt 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/phpunit/phpunit/tests/end-to-end/phpt-stderr.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1169: PHPT runner doesn't look at STDERR. 3 | --FILE-- 4 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /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 | 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/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/1216/phpunit1216.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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/1265/phpunit1265.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/phpunit1330.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/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/phpunit/phpunit/tests/end-to-end/regression/GitHub/1468/Issue1468Test.php: -------------------------------------------------------------------------------- 1 | 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/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/phpunit/phpunit/tests/end-to-end/regression/GitHub/2085/configuration_enforce_time_limit_options.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2158/constant.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2435/Issue2435Test.php: -------------------------------------------------------------------------------- 1 | 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/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 | class Test extends PHPUnit\Framework\TestCase 11 | { 12 | public function testOne(): void 13 | { 14 | $this->assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /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/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/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/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/end-to-end/regression/GitHub/2972/issue-2972-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Just a sample test for issue 2972, does not actually test anything 3 | --FILE-- 4 | 7 | ===DONE=== 8 | --EXPECT-- 9 | Hello world 10 | ===DONE=== 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/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/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/phpunit/phpunit/tests/end-to-end/regression/GitHub/3379/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | . 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | 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/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/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/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/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/tests/end-to-end/regression/Trac/783/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\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/phpunit/phpunit/tests/fail/fail.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | // This test intentionally fails and it is checked by Travis. 3 | --FILE-- 4 | --EXPECTF-- 5 | unexpected 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/unit/Util/_files/expectedXDebugFilterScript.txt: -------------------------------------------------------------------------------- 1 | 6 | * 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/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/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/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/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | /from.txt.orig -------------------------------------------------------------------------------- /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/sebastian/diff/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/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/sebastian/diff/tests/fixtures/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taocomp/php-sdicoop-client/d15c6833b4d38f098af1909771337fd68414b07b/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_a.txt: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | a 4 | a 5 | a 6 | a 7 | a 8 | a 9 | a 10 | a 11 | a 12 | a 13 | a 14 | a 15 | a 16 | a 17 | a 18 | a 19 | a 20 | a 21 | a 22 | a 23 | a 24 | a 25 | a 26 | a 27 | a 28 | a 29 | a 30 | a 31 | a 32 | a 33 | a 34 | a 35 | a -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_b.txt: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | a 4 | a 5 | a 6 | a 7 | a 8 | a 9 | a 10 | a 11 | b 12 | a 13 | a 14 | a 15 | a 16 | a 17 | a 18 | c -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.gitignore: -------------------------------------------------------------------------------- 1 | # reset all ignore rules to create sandbox for integration test 2 | !/** -------------------------------------------------------------------------------- /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/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/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /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/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | -------------------------------------------------------------------------------- /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/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /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/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/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/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/sebastian/global-state/tests/_fixture/BlacklistedInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\GlobalState\TestFixture; 14 | 15 | interface BlacklistedInterface 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/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/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/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/sebastian/object-enumerator/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | composer.phar 4 | vendor/ 5 | cache.properties 6 | build/LICENSE 7 | build/README.md 8 | build/*.tgz 9 | -------------------------------------------------------------------------------- /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-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/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/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/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /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/sebastian/object-reflector/README.md: -------------------------------------------------------------------------------- 1 | # Object Reflector 2 | 3 | Allows reflection of object attributes, including inherited and non-public ones. 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-reflector 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-reflector 14 | 15 | -------------------------------------------------------------------------------- /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/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/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/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /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/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/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/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/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /build/FunctionSignatureMap.php 4 | /composer.lock 5 | /vendor 6 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/README.md: -------------------------------------------------------------------------------- 1 | # Resource Operations 2 | 3 | Provides a list of PHP built-in functions that operate on resources. 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | composer require sebastian/resource-operations 10 | 11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 12 | 13 | composer require --dev sebastian/resource-operations 14 | 15 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /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/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Exception.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/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/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 | --------------------------------------------------------------------------------