├── .gitattributes ├── LICENSE ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Exceptions │ └── NoStepsException.php ├── Progress.php ├── Providers │ └── ProgressServiceProvider.php ├── Step.php └── helpers.php ├── tests └── ProgressTest.php └── vendor ├── autoload.php ├── beberlei └── assert │ ├── LICENSE │ ├── composer.json │ ├── lib │ └── Assert │ │ ├── Assert.php │ │ ├── Assertion.php │ │ ├── AssertionChain.php │ │ ├── AssertionFailedException.php │ │ ├── InvalidArgumentException.php │ │ ├── LazyAssertion.php │ │ ├── LazyAssertionException.php │ │ └── functions.php │ ├── phpstan-code.neon │ └── phpstan-tests.neon ├── 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 │ ├── .doctrine-project.json │ ├── .github │ └── FUNDING.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ └── en │ │ ├── index.rst │ │ └── sidebar.rst │ ├── phpbench.json │ ├── phpcs.xml.dist │ ├── phpstan.neon.dist │ └── src │ └── Doctrine │ └── Instantiator │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── UnexpectedValueException.php │ ├── Instantiator.php │ └── InstantiatorInterface.php ├── myclabs └── deep-copy │ ├── .github │ └── FUNDING.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── 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 │ │ ├── ArrayObjectFilter.php │ │ ├── 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 │ ├── 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 │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phive.xml │ ├── phpunit.xml │ ├── src │ ├── AbstractVersionConstraint.php │ ├── AndVersionConstraintGroup.php │ ├── AnyVersionConstraint.php │ ├── ExactVersionConstraint.php │ ├── Exception.php │ ├── GreaterThanOrEqualToVersionConstraint.php │ ├── InvalidVersionException.php │ ├── OrVersionConstraintGroup.php │ ├── PreReleaseSuffix.php │ ├── SpecificMajorAndMinorVersionConstraint.php │ ├── SpecificMajorVersionConstraint.php │ ├── UnsupportedVersionConstraintException.php │ ├── Version.php │ ├── VersionConstraint.php │ ├── VersionConstraintParser.php │ ├── VersionConstraintValue.php │ └── VersionNumber.php │ └── tests │ ├── Integration │ └── VersionConstraintParserTest.php │ └── Unit │ ├── AbstractVersionConstraintTest.php │ ├── AndVersionConstraintGroupTest.php │ ├── AnyVersionConstraintTest.php │ ├── ExactVersionConstraintTest.php │ ├── GreaterThanOrEqualToVersionConstraintTest.php │ ├── OrVersionConstraintGroupTest.php │ ├── SpecificMajorAndMinorVersionConstraintTest.php │ ├── SpecificMajorVersionConstraintTest.php │ └── VersionTest.php ├── phpdocumentor ├── reflection-common │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ └── push.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── 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 │ │ │ ├── Formatter.php │ │ │ ├── Formatter │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── InvalidTag.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 │ │ │ ├── TagWithType.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php └── type-resolver │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpbench.json │ └── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── AbstractList.php │ ├── AggregatedType.php │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── ClassString.php │ ├── Collection.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Expression.php │ ├── False_.php │ ├── Float_.php │ ├── Integer.php │ ├── Intersection.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 │ ├── True_.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 │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog-2.2.md │ ├── ChangeLog-3.0.md │ ├── ChangeLog-3.1.md │ ├── ChangeLog-3.2.md │ ├── ChangeLog-3.3.md │ ├── ChangeLog-4.0.md │ ├── ChangeLog-5.0.md │ ├── ChangeLog-5.1.md │ ├── ChangeLog-5.2.md │ ├── ChangeLog-5.3.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── CodeCoverage.php │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── HHVM.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 │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.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 │ │ ├── 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 │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .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 │ │ ├── TokenTest.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-mock-objects │ ├── .gitattributes │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── 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 │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ ├── MockBuilder.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 │ └── tests │ │ ├── Builder │ │ └── InvocationMockerTest.php │ │ ├── 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_partial.phpt │ │ ├── class_with_deprecated_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_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 │ │ ├── GeneratorTest.php │ │ ├── Invocation │ │ ├── ObjectInvocationTest.php │ │ └── StaticInvocationTest.php │ │ ├── Matcher │ │ └── ConsecutiveParametersTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _fixture │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnInterfaceWithReturnType.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithAllPossibleReturnTypes.php │ │ ├── ClassWithSelfTypeHint.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── Go ogle-Sea.rch.wsdl │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ ├── StringableClass.php │ │ └── TraversableMockTestInterface.php │ │ └── bootstrap.php └── phpunit │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog-6.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 │ │ ├── BaseTestListener.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 │ │ ├── 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 │ │ ├── PhptTestCase.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.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 │ │ ├── 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 │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── Xml.php │ │ └── XmlTestListRenderer.php │ └── tests │ ├── _files │ ├── AbstractTest.php │ ├── ArrayAccessible.php │ ├── AssertionExample.php │ ├── AssertionExampleTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BankAccountTest2.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── BeforeClassWithOnlyDataProviderTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithToString.php │ ├── ClonedDependencyTest.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CountConstraint.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.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 │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyBarTest.php │ ├── DummyException.php │ ├── DummyFooTest.php │ ├── EmptyTestCaseTest.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FalsyConstraint.php │ ├── FatalTest.php │ ├── IgnoreCodeCoverageClass.php │ ├── IgnoreCodeCoverageClassTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MockRunner.php │ ├── Mockable.php │ ├── MultiDependencyTest.php │ ├── MultipleDataProviderTest.php │ ├── MyCommand.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 │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── ParseTestMethodAnnotationsMock.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── StackTest.php │ ├── StatusTest.php │ ├── StopOnWarningTestSuite.php │ ├── StopsOnWarningTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestAutoreferenced.php │ ├── TestDoxGroupTest.php │ ├── TestGeneratorMaker.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestIteratorAggregate.php │ ├── TestIteratorAggregate2.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWithTest.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.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.custom-printer.xml │ ├── configuration.defaulttestsuite.xml │ ├── configuration.one-file-suite.xml │ ├── configuration.suites.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_stop_on_warning.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-1.0.1.phar │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ ├── bootstrap.php │ ├── end-to-end │ ├── _files │ │ ├── expect_external.txt │ │ ├── phpt-env.expected.txt │ │ └── phpt_external.php │ ├── abstract-test-class.phpt │ ├── assertion.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 │ ├── dependencies-clone.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── disable-code-coverage-ignore.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.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 │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── list-suites.phpt │ ├── list-tests-dataprovider.phpt │ ├── list-tests-xml-dataprovider.phpt │ ├── log-junit.phpt │ ├── log-teamcity.phpt │ ├── mycommand.phpt │ ├── options-after-arguments.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 │ │ │ ├── 2137 │ │ │ │ └── Issue2137Test.php │ │ │ ├── 2145 │ │ │ │ └── Issue2145Test.php │ │ │ ├── 2158 │ │ │ │ ├── Issue2158Test.php │ │ │ │ └── constant.inc │ │ │ ├── 2366 │ │ │ │ └── Issue2366Test.php │ │ │ ├── 2380 │ │ │ │ └── Issue2380Test.php │ │ │ ├── 2382 │ │ │ │ └── Issue2382Test.php │ │ │ ├── 2435 │ │ │ │ └── Issue2435Test.php │ │ │ ├── 2448 │ │ │ │ └── Test.php │ │ │ ├── 2591 │ │ │ │ ├── SeparateClassPreserveTest.php │ │ │ │ ├── SeparateFunctionNoPreserveTest.php │ │ │ │ ├── SeparateFunctionPreserveTest.php │ │ │ │ ├── bootstrapNoBootstrap.php │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ └── bootstrapWithBootstrapNoGlobal.php │ │ │ ├── 2725 │ │ │ │ └── BeforeAfterClassPidTest.php │ │ │ ├── 2731 │ │ │ │ └── Issue2731Test.php │ │ │ ├── 2811 │ │ │ │ └── Issue2811Test.php │ │ │ ├── 2830 │ │ │ │ └── Issue2830Test.php │ │ │ ├── 2972 │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ ├── 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 │ │ │ ├── 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-xdebug.phpt │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap.phpt │ │ │ ├── 2591-separate-function-no-preserve.phpt │ │ │ ├── 2591-separate-function-preserve.phpt │ │ │ ├── 2725-separate-class-before-after-pid.phpt │ │ │ ├── 2731.phpt │ │ │ ├── 2811.phpt │ │ │ ├── 2830.phpt │ │ │ ├── 2972.phpt │ │ │ ├── 322.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-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── stop-on-warning-via-cli.phpt │ ├── stop-on-warning-via-config.phpt │ ├── teamcity-inner-exceptions.phpt │ ├── teamcity.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-exclude-group.phpt │ ├── testdox-group.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ ├── testdox-xml.phpt │ └── testdox.phpt │ ├── fail │ └── fail.phpt │ └── unit │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.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 │ │ ├── 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 │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── Runner │ ├── Filter │ │ └── NameFilterIteratorTest.php │ └── PhptTestCaseTest.php │ ├── TextUI │ └── TestRunnerTest.php │ └── Util │ ├── ConfigurationGeneratorTest.php │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── JsonTest.php │ ├── PHP │ └── AbstractPhpProcessTest.php │ ├── RegularExpressionTest.php │ ├── TestDox │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XmlTest.php ├── 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 │ ├── .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 │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── Line.php │ │ ├── LongestCommonSubsequenceCalculator.php │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ ├── Parser.php │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ └── tests │ │ ├── ChunkTest.php │ │ ├── DiffTest.php │ │ ├── DifferTest.php │ │ ├── DifferTestTest.php │ │ ├── LineTest.php │ │ ├── LongestCommonSubsequenceTest.php │ │ ├── MemoryEfficientImplementationTest.php │ │ ├── ParserTest.php │ │ ├── TimeEfficientImplementationTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .php_cs │ ├── .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 │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog.md │ ├── 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 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── generate.php │ ├── composer.json │ └── src │ │ └── ResourceOperations.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── symfony └── polyfill-ctype │ ├── Ctype.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── theseer └── tokenizer │ ├── .php_cs.dist │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Exception.php │ ├── NamespaceUri.php │ ├── NamespaceUriException.php │ ├── Token.php │ ├── TokenCollection.php │ ├── TokenCollectionException.php │ ├── Tokenizer.php │ └── XMLSerializer.php └── webmozart └── assert ├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── psalm.xml └── src ├── Assert.php └── Mixin.php /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /src/Exceptions/NoStepsException.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', 10 | '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 11 | 'a4ecaeafb8cfb009ad0e052c90355e98' => $vendorDir . '/beberlei/assert/lib/Assert/functions.php', 12 | 'fbcea48c28b81a0a8e53edd8a81bc60d' => $baseDir . '/src/helpers.php', 13 | ); 14 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.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 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | 8 | /build 9 | -------------------------------------------------------------------------------- /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/InvalidApplicationNameException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class InvalidApplicationNameException extends \InvalidArgumentException implements Exception { 14 | const NotAString = 1; 15 | const InvalidFormat = 2; 16 | } 17 | -------------------------------------------------------------------------------- /vendor/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/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/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/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/InvalidVersionException.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/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: composer 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.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\Doubler; 13 | 14 | /** 15 | * Core double interface. 16 | * All doubled classes will implement this one. 17 | * 18 | * @author Konstantin Kudryashov 19 | */ 20 | interface DoubleInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/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/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.cache 6 | 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception that is raised when covered code is not executed. 15 | */ 16 | class CoveredCodeNotExecutedException extends RuntimeException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception interface for php-code-coverage component. 15 | */ 16 | interface Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | /** 14 | * Exception that is raised when @covers must be used but is not. 15 | */ 16 | class MissingCoversAnnotationException extends RuntimeException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage; 12 | 13 | class RuntimeException extends \RuntimeException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-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/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 12 | 13 | class Directory extends Node 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/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: 50.00% (1/2) 9 | Lines: 87.50% (7/8) 10 | 11 | CoveredClassWithAnonymousFunctionInStaticMethod 12 | Methods: 50.00% ( 1/ 2) Lines: 80.00% ( 4/ 5) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/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 | 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-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md) for details on how to contribute to this project. 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/README.md: -------------------------------------------------------------------------------- 1 | [![Latest Stable Version](https://img.shields.io/packagist/v/phpunit/phpunit-mock-objects.svg?style=flat-square)](https://packagist.org/packages/phpunit/phpunit-mock-objects) 2 | [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.0-8892BF.svg?style=flat-square)](https://php.net/) 3 | [![Build Status](https://img.shields.io/travis/sebastianbergmann/phpunit-mock-objects/master.svg?style=flat-square)](https://phpunit.de/build-status.html) 4 | 5 | # phpunit-mock-objects 6 | 7 | **phpunit-mock-objects** is the default mock object library for PHPUnit. 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | class BadMethodCallException extends \BadMethodCallException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/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 PHPUnit\Framework\MockObject; 11 | 12 | /** 13 | * Interface for exceptions used by PHPUnit_MockObject. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/ForwardCompatibility/MockObject.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework\MockObject; 12 | 13 | use PHPUnit_Framework_MockObject_MockObject; 14 | 15 | interface MockObject extends PHPUnit_Framework_MockObject_MockObject 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/deprecation.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/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 | return call_user_func_array(array($expects, 'method'), func_get_args()); 7 | } 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type} 3 | { 4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/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-mock-objects/src/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-mock-objects/src/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | $value) { 12 | $this->{$key} = $value; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassWithSelfTypeHint.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php: -------------------------------------------------------------------------------- 1 | constructorCalled = true; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/SingletonClass.php: -------------------------------------------------------------------------------- 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 | 11 | namespace PHPUnit; 12 | 13 | /** 14 | * Marker interface for PHPUnit exceptions. 15 | */ 16 | interface Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/CodeCoverageException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | class CodeCoverageException extends Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | class CoveredCodeNotExecutedException extends RiskyTestError 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | 11 | namespace PHPUnit\Framework; 12 | 13 | /** 14 | * A marker interface for marking any exception/error as result of an unit 15 | * test as incomplete implementation or currently not implemented. 16 | */ 17 | interface IncompleteTest 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/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 | 11 | namespace PHPUnit\Framework; 12 | 13 | class MissingCoversAnnotationException extends RiskyTestError 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/OutputError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | class OutputError extends AssertionFailedError 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/RiskyTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | interface RiskyTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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/SkippedTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | interface SkippedTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | class SkippedTestError extends AssertionFailedError implements SkippedTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | eval('?>' . \file_get_contents('php://stdin')); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AbstractTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AssertionExample.php: -------------------------------------------------------------------------------- 1 | doSomething(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /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/BaseTestListenerSample.php: -------------------------------------------------------------------------------- 1 | endCount++; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Book.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * A book. 13 | */ 14 | class Book 15 | { 16 | // the order of properties is important for testing the cycle! 17 | public $author = null; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Calculator.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /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 | 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/ConcreteTest.my.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNamespacedFunctionTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public function testSomething() 13 | { 14 | $o = new Foo\CoveredClass; 15 | $o->publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | 17 | public function provide() 18 | { 19 | SecondTest::DUMMY; 20 | 21 | return [[true]]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2833/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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/DataProviderIssue2859/tests/another/TestWithDataProviderTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | 17 | public function provide() 18 | { 19 | return [[true]]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/FirstTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | 20 | public function provide() 21 | { 22 | throw new \Exception(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 12 | } 13 | 14 | public static function providerMethod() 15 | { 16 | return [ 17 | [0, 0, 0], 18 | [0, 1, 1], 19 | [1, 1, 3], 20 | [1, 0, 1] 21 | ]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencySuccessTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | 11 | /** 12 | * @depends testOne 13 | */ 14 | public function testTwo() 15 | { 16 | $this->assertTrue(true); 17 | } 18 | 19 | /** 20 | * @depends DependencySuccessTest::testTwo 21 | */ 22 | public function testThree() 23 | { 24 | $this->assertTrue(true); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencyTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite(DependencySuccessTest::class); 11 | $suite->addTestSuite(DependencyFailureTest::class); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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() 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 | use PHPUnit\Framework\TestCase; 11 | 12 | class DummyFooTest extends TestCase 13 | { 14 | public function testFooEqualsFoo() 15 | { 16 | $this->assertEquals('Foo', 'Foo'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/EmptyTestCaseTest.php: -------------------------------------------------------------------------------- 1 | fail(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FalsyConstraint.php: -------------------------------------------------------------------------------- 1 | assertTrue($sut->returnTrue()); 10 | } 11 | 12 | public function testReturnFalse() 13 | { 14 | $sut = new IgnoreCodeCoverageClass(); 15 | $this->assertFalse($sut->returnFalse()); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceA.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IsolationTest.php: -------------------------------------------------------------------------------- 1 | assertFalse($this->isInIsolation()); 9 | } 10 | 11 | public function testIsInIsolationReturnsTrue() 12 | { 13 | $this->assertTrue($this->isInIsolation()); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/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/MockRunner.php: -------------------------------------------------------------------------------- 1 | constructorCalled = false; 10 | } 11 | 12 | public function foo() 13 | { 14 | return true; 15 | } 16 | 17 | public function bar() 18 | { 19 | return true; 20 | } 21 | 22 | public function __clone() 23 | { 24 | $this->cloned = true; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MyCommand.php: -------------------------------------------------------------------------------- 1 | longOptions['my-option='] = 'myHandler'; 9 | $this->longOptions['my-other-option'] = null; 10 | } 11 | 12 | public function myHandler($value) 13 | { 14 | echo __METHOD__ . " $value\n"; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | public function testSomething() 10 | { 11 | $o = new Foo\CoveredClass; 12 | $o->publicMethod(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | public function testThree() 24 | { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Singleton.php: -------------------------------------------------------------------------------- 1 | addTestSuite(NoTestCases::class); 11 | $suite->addTestSuite(CoverageClassTest::class); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StopsOnWarningTest.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Success.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestAutoreferenced.php: -------------------------------------------------------------------------------- 1 | myTestData = $data; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestDoxGroupTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | 15 | /** 16 | * @group two 17 | */ 18 | public function testTwo() 19 | { 20 | $this->assertTrue(true); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestGeneratorMaker.php: -------------------------------------------------------------------------------- 1 | $value) { 7 | yield $key => $value; 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIteratorAggregate.php: -------------------------------------------------------------------------------- 1 | traversable = $traversable; 10 | } 11 | 12 | public function getIterator() 13 | { 14 | return $this->traversable; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIteratorAggregate2.php: -------------------------------------------------------------------------------- 1 | traversable = $traversable; 13 | } 14 | 15 | public function getIterator() 16 | { 17 | return $this->traversable; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestSkipped.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 15 | } 16 | 17 | public static function providerMethod() 18 | { 19 | return [ 20 | [0, 0, 0], 21 | [0, 1, 1], 22 | [1, 1, 3], 23 | [1, 0, 1] 24 | ]; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WrapperIteratorAggregate.php: -------------------------------------------------------------------------------- 1 | baseCollection = $baseCollection; 14 | } 15 | 16 | public function getIterator() 17 | { 18 | foreach ($this->baseCollection as $k => $v) { 19 | yield $k => $v; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_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.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_stop_on_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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 | assertExampleExtensionInitialized(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.1.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.1.phar -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_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 | 0 && $argv[1] == 'help') { 8 | echo '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 | assertTrue(true); 9 | print '1'; 10 | } 11 | 12 | /** 13 | * @runInSeparateProcess 14 | */ 15 | public function testTwo() 16 | { 17 | $this->assertTrue(true); 18 | print '2'; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/Issue1216Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/bootstrap1216.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /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 | assertTrue(PHPUNIT_1330); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /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/1337/Issue1337Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($a); 12 | } 13 | 14 | public function dataProvider() 15 | { 16 | return [ 17 | 'c:\\'=> [true], 18 | 0.9 => [true] 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1348/Issue1348Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | 12 | public function testSTDERR() 13 | { 14 | fwrite(STDERR, 'STDERR works as usual.'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1351/ChildProcessClass1351.php: -------------------------------------------------------------------------------- 1 | fail('This should not be reached'); 17 | } 18 | 19 | protected function tearDown() 20 | { 21 | print __FUNCTION__; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1437/Issue1437Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1468/Issue1468Test.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1471/Issue1471Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('*'); 9 | 10 | print '*'; 11 | 12 | $this->assertTrue(false); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1472.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | https://github.com/sebastianbergmann/phpunit/issues/1472 3 | --FILE-- 4 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2380.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #2380: Data Providers cannot be generators anymore 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann and contributors. 14 | 15 | . 1 / 1 (100%) 16 | 17 | Time: %s, Memory: %s 18 | 19 | OK (1 test, 1 assertion) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2380/Issue2380Test.php: -------------------------------------------------------------------------------- 1 | assertNotEmpty($data); 12 | } 13 | 14 | /** 15 | * @return Generator 16 | */ 17 | public function generatorData() 18 | { 19 | yield ['testing']; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2382/Issue2382Test.php: -------------------------------------------------------------------------------- 1 | assertInstanceOf(\Exception::class, $test); 12 | } 13 | 14 | public function dataProvider() 15 | { 16 | return [ 17 | [ 18 | $this->getMockBuilder(\Exception::class)->getMock() 19 | ] 20 | ]; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2435.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-2435: Test empty @group annotation 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann and contributors. 15 | 16 | . 1 / 1 (100%) 17 | 18 | Time: %s, Memory: %s 19 | 20 | OK (1 test, 1 assertion) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2435/Issue2435Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /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 | 11 | --EXPECTF-- 12 | Cannot open file "Test.php". 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapNoBootstrap.php: -------------------------------------------------------------------------------- 1 | expectException(Exception::class); 7 | $this->expectExceptionMessage(''); 8 | 9 | throw new Exception('message'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2811/Issue2811Test.php: -------------------------------------------------------------------------------- 1 | expectExceptionMessage('hello'); 7 | 8 | throw new \Exception('hello'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2830/Issue2830Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 14 | } 15 | 16 | public function simpleDataProvider() 17 | { 18 | return [ 19 | ['foo'], 20 | ]; 21 | } 22 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2972.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-2972: Test suite shouldn't fail when it contains both *.phpt files and unconventionally named tests 3 | --FILE-- 4 | 11 | --EXPECTF-- 12 | PHPUnit %s by Sebastian Bergmann and contributors. 13 | 14 | .. 2 / 2 (100%) 15 | 16 | Time: %s, Memory: %s 17 | 18 | OK (2 tests, 2 assertions) 19 | -------------------------------------------------------------------------------- /vendor/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 | assertNotEmpty('Hello world!'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | 14 | /** 15 | * @group two 16 | */ 17 | public function testTwo() 18 | { 19 | $this->assertTrue(true); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/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/433/Issue433Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('test'); 9 | print 'test'; 10 | } 11 | 12 | public function testOutputWithExpectationAfter() 13 | { 14 | print 'test'; 15 | $this->expectOutputString('test'); 16 | } 17 | 18 | public function testNotMatchingOutput() 19 | { 20 | print 'bar'; 21 | $this->expectOutputString('foo'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 9 | "foo\n", 10 | "foo\r\n" 11 | ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 9 | (object) [1, 2, "Test\r\n", 4, 5, 6, 7, 8], 10 | (object) [1, 2, "Test\r\n", 4, 1, 6, 7, 8] 11 | ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | 11 | /** 12 | * @depends testDependee 13 | * @dataProvider dependentProvider 14 | */ 15 | public function testDependent($a) 16 | { 17 | $this->assertTrue(true); 18 | } 19 | 20 | public function dependentProvider() 21 | { 22 | throw new Exception; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/Issue797Test.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | assertTrue($data); 12 | } 13 | 14 | /** 15 | * @depends testSomething 16 | */ 17 | public function testSomethingElse() 18 | { 19 | $this->assertTrue(true); 20 | } 21 | 22 | public function provider() 23 | { 24 | return [[true]]; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/523/Issue523Test.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 9 | } 10 | } 11 | 12 | class Issue523 extends ArrayIterator 13 | { 14 | protected $field = 'foo'; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | addTestSuite(OneTest::class); 13 | $suite->addTestSuite(TwoTest::class); 14 | 15 | return $suite; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/ParentSuite.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/TwoTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/testdox.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox php://stdout BankAccountTest ../../_files/BankAccountTest.php 3 | --FILE-- 4 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A book. 15 | */ 16 | class Book 17 | { 18 | // the order of properties is important for testing the cycle! 19 | public $author = null; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/sebastian/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 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class ClassWithToString 14 | { 15 | public function __toString() 16 | { 17 | return 'string representation'; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/Struct.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | /** 14 | * A struct. 15 | */ 16 | class Struct 17 | { 18 | public $var; 19 | 20 | public function __construct($var) 21 | { 22 | $this->var = $var; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/TestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClass 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_fixture/TestClassComparator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClassComparator extends ObjectComparator 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/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.0 5 | - 7.0snapshot 6 | - 7.1 7 | - 7.1snapshot 8 | - master 9 | 10 | sudo: false 11 | 12 | before_install: 13 | - composer self-update 14 | - composer clear-cache 15 | 16 | install: 17 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 18 | 19 | script: 20 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 21 | 22 | after_success: 23 | - bash <(curl -s https://codecov.io/bash) 24 | 25 | notifications: 26 | email: false 27 | 28 | -------------------------------------------------------------------------------- /vendor/sebastian/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/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/exporter/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.0 5 | - 7.1 6 | - 7.2 7 | - 7.3 8 | - 7.4snapshot 9 | 10 | before_install: 11 | - composer self-update 12 | - composer clear-cache 13 | 14 | install: 15 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 16 | 17 | script: 18 | - ./vendor/bin/phpunit --coverage-clover=coverage.xml 19 | 20 | after_success: 21 | - bash <(curl -s https://codecov.io/bash) 22 | 23 | notifications: 24 | email: false 25 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # ChangeLog 2 | 3 | All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. 4 | 5 | ## [3.1.2] - 2019-09-14 6 | 7 | ### Fixed 8 | 9 | * Fixed [#29](https://github.com/sebastianbergmann/exporter/pull/29): Second parameter for `str_repeat()` must be an integer 10 | 11 | ### Removed 12 | 13 | * Remove HHVM-specific code that is no longer needed 14 | 15 | [3.1.2]: https://github.com/sebastianbergmann/exporter/compare/3.1.1...3.1.2 16 | -------------------------------------------------------------------------------- /vendor/sebastian/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/ClassWithIntegerAttributeName.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector\TestFixture; 14 | 15 | class ClassWithIntegerAttributeName 16 | { 17 | public function __construct() 18 | { 19 | $i = 1; 20 | $this->$i = 2; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/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 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/README.md: -------------------------------------------------------------------------------- 1 | # Resource Operations 2 | 3 | Provides a list of PHP built-in functions that operate on resources. 4 | 5 | ## Installation 6 | 7 | To add this component as a local, per-project dependency to your project, simply add a dependency on `sebastian/resource-operations` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on this component: 8 | 9 | ```JSON 10 | { 11 | "require": { 12 | "sebastian/resource-operations": "~1.0" 13 | } 14 | } 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Ctype 2 | ======================== 3 | 4 | This component provides `ctype_*` functions to users who run php versions without the ctype extension. 5 | 6 | More information can be found in the 7 | [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md). 8 | 9 | License 10 | ======= 11 | 12 | This library is released under the [MIT license](LICENSE). 13 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | --------------------------------------------------------------------------------