├── .gitignore ├── admin.php ├── gpl.txt ├── meta-dashboard.php ├── typerocket-v6.php └── typerocket ├── .gitignore ├── app ├── Auth │ ├── CommentPolicy.php │ ├── OptionPolicy.php │ ├── PagePolicy.php │ ├── PostPolicy.php │ ├── TermPolicy.php │ └── UserPolicy.php ├── Components │ └── ContentComponent.php ├── Controllers │ ├── CategoryController.php │ ├── CommentController.php │ ├── OptionController.php │ ├── PageController.php │ ├── PostController.php │ ├── TagController.php │ └── UserController.php ├── Elements │ └── Form.php ├── Http │ ├── Kernel.php │ └── Middleware │ │ └── VerifyNonce.php ├── Models │ ├── Attachment.php │ ├── Category.php │ ├── Comment.php │ ├── Option.php │ ├── Page.php │ ├── Post.php │ ├── Tag.php │ └── User.php └── Services │ └── AuthService.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── components.php ├── cookies.php ├── database.php ├── external.php ├── galaxy.php ├── paths.php ├── queue.php └── urls.php ├── galaxy ├── helpers.php ├── init.php ├── plugin ├── SettingsController.php └── Updater.php ├── routes └── public.php ├── storage ├── cache │ └── .gitignore └── logs │ └── .gitignore ├── vendor ├── autoload.php ├── bin │ ├── php-parse │ └── phpunit ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── doctrine │ └── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ │ ├── psalm.xml │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php ├── myclabs │ └── deep-copy │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── ChainableFilter.php │ │ ├── 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 ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── phpyLang.php │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── Builder │ │ ├── ClassConst.php │ │ ├── Class_.php │ │ ├── Declaration.php │ │ ├── EnumCase.php │ │ ├── Enum_.php │ │ ├── FunctionLike.php │ │ ├── Function_.php │ │ ├── Interface_.php │ │ ├── Method.php │ │ ├── Namespace_.php │ │ ├── Param.php │ │ ├── Property.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── Trait_.php │ │ └── Use_.php │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AttributeEmulator.php │ │ │ ├── CoaleseEqualTokenEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── FlexibleDocStringEmulator.php │ │ │ ├── FnTokenEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── NumericLiteralSeparatorEmulator.php │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ └── TokenEmulator.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.php │ │ │ ├── AssignOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.php │ │ │ ├── BinaryOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ └── Spaceship.php │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ └── Unset_.php │ │ │ ├── ClassConstFetch.php │ │ │ ├── Clone_.php │ │ │ ├── Closure.php │ │ │ ├── ClosureUse.php │ │ │ ├── ConstFetch.php │ │ │ ├── Empty_.php │ │ │ ├── Error.php │ │ │ ├── ErrorSuppress.php │ │ │ ├── Eval_.php │ │ │ ├── Exit_.php │ │ │ ├── FuncCall.php │ │ │ ├── Include_.php │ │ │ ├── Instanceof_.php │ │ │ ├── Isset_.php │ │ │ ├── List_.php │ │ │ ├── Match_.php │ │ │ ├── MethodCall.php │ │ │ ├── New_.php │ │ │ ├── NullsafeMethodCall.php │ │ │ ├── NullsafePropertyFetch.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── Print_.php │ │ │ ├── PropertyFetch.php │ │ │ ├── ShellExec.php │ │ │ ├── StaticCall.php │ │ │ ├── StaticPropertyFetch.php │ │ │ ├── Ternary.php │ │ │ ├── Throw_.php │ │ │ ├── UnaryMinus.php │ │ │ ├── UnaryPlus.php │ │ │ ├── Variable.php │ │ │ ├── YieldFrom.php │ │ │ └── Yield_.php │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── NullableType.php │ │ ├── Param.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ ├── LNumber.php │ │ │ ├── MagicConst.php │ │ │ ├── MagicConst │ │ │ │ ├── Class_.php │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Line.php │ │ │ │ ├── Method.php │ │ │ │ ├── Namespace_.php │ │ │ │ └── Trait_.php │ │ │ └── String_.php │ │ ├── Stmt.php │ │ ├── Stmt │ │ │ ├── Break_.php │ │ │ ├── Case_.php │ │ │ ├── Catch_.php │ │ │ ├── ClassConst.php │ │ │ ├── ClassLike.php │ │ │ ├── ClassMethod.php │ │ │ ├── Class_.php │ │ │ ├── Const_.php │ │ │ ├── Continue_.php │ │ │ ├── DeclareDeclare.php │ │ │ ├── Declare_.php │ │ │ ├── Do_.php │ │ │ ├── Echo_.php │ │ │ ├── ElseIf_.php │ │ │ ├── Else_.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── Expression.php │ │ │ ├── Finally_.php │ │ │ ├── For_.php │ │ │ ├── Foreach_.php │ │ │ ├── Function_.php │ │ │ ├── Global_.php │ │ │ ├── Goto_.php │ │ │ ├── GroupUse.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If_.php │ │ │ ├── InlineHTML.php │ │ │ ├── Interface_.php │ │ │ ├── Label.php │ │ │ ├── Namespace_.php │ │ │ ├── Nop.php │ │ │ ├── Property.php │ │ │ ├── PropertyProperty.php │ │ │ ├── Return_.php │ │ │ ├── StaticVar.php │ │ │ ├── Static_.php │ │ │ ├── Switch_.php │ │ │ ├── Throw_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Multiple.php │ │ ├── Php5.php │ │ ├── Php7.php │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ └── PrettyPrinterAbstract.php ├── phar-io │ ├── manifest │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── ManifestDocumentMapper.php │ │ │ ├── ManifestLoader.php │ │ │ ├── ManifestSerializer.php │ │ │ ├── exceptions │ │ │ ├── ElementCollectionException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidApplicationNameException.php │ │ │ ├── InvalidEmailException.php │ │ │ ├── InvalidUrlException.php │ │ │ ├── ManifestDocumentException.php │ │ │ ├── ManifestDocumentLoadingException.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 │ │ │ ├── ManifestElement.php │ │ │ ├── PhpElement.php │ │ │ └── RequiresElement.php │ └── version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BuildMetaData.php │ │ ├── PreReleaseSuffix.php │ │ ├── Version.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ ├── VersionNumber.php │ │ ├── constraints │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ └── VersionConstraint.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ └── UnsupportedVersionConstraintException.php ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog-9.2.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── PhpdbgDriver.php │ │ │ ├── Selector.php │ │ │ ├── Xdebug2Driver.php │ │ │ └── Xdebug3Driver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── PhpdbgNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── WrongXdebugVersionException.php │ │ │ ├── Xdebug2NotEnabledException.php │ │ │ ├── Xdebug3NotEnabledException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ ├── RawCodeCoverageData.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── octicons.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.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 │ │ │ ├── StaticAnalysis │ │ │ ├── CacheWarmer.php │ │ │ ├── CachingFileAnalyser.php │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ ├── FileAnalyser.php │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ └── ParsingFileAnalyser.php │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-9.6.md │ │ ├── DEPRECATIONS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 8.5.xsd │ │ └── 9.2.xsd │ │ └── src │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── Constraint │ │ │ ├── Boolean │ │ │ │ ├── IsFalse.php │ │ │ │ └── IsTrue.php │ │ │ ├── Callback.php │ │ │ ├── Cardinality │ │ │ │ ├── Count.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── LessThan.php │ │ │ │ └── SameSize.php │ │ │ ├── Constraint.php │ │ │ ├── Equality │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ └── IsEqualWithDelta.php │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ └── ExceptionMessageRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── ObjectEquals.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ └── ObjectHasProperty.php │ │ │ ├── Operator │ │ │ │ ├── BinaryOperator.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Operator.php │ │ │ │ └── UnaryOperator.php │ │ │ ├── String │ │ │ │ ├── IsJson.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Error.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── ErrorTestCase.php │ │ ├── Exception │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotExistException.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── OutputError.php │ │ │ ├── PHPTAssertionFailedError.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── SyntheticSkippedError.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ └── Warning.php │ │ ├── ExceptionWrapper.php │ │ ├── ExecutionOrderDependency.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── InvalidParameterGroupException.php │ │ ├── MockObject │ │ │ ├── Api │ │ │ │ ├── Api.php │ │ │ │ └── Method.php │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ ├── UnknownClassException.php │ │ │ │ ├── UnknownTraitException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── intersection.tpl │ │ │ │ ├── mocked_class.tpl │ │ │ │ ├── mocked_method.tpl │ │ │ │ ├── mocked_method_never_or_void.tpl │ │ │ │ ├── mocked_static_method.tpl │ │ │ │ ├── proxied_method.tpl │ │ │ │ ├── proxied_method_never_or_void.tpl │ │ │ │ ├── trait_class.tpl │ │ │ │ ├── wsdl_class.tpl │ │ │ │ └── wsdl_method.tpl │ │ │ ├── Invocation.php │ │ │ ├── InvocationHandler.php │ │ │ ├── Matcher.php │ │ │ ├── MethodNameConstraint.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockClass.php │ │ │ ├── MockMethod.php │ │ │ ├── MockMethodSet.php │ │ │ ├── MockObject.php │ │ │ ├── MockTrait.php │ │ │ ├── MockType.php │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ │ └── Verifiable.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestListenerDefaultImplementation.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuiteIterator.php │ │ └── WarningTestCase.php │ │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── DefaultTestResultCache.php │ │ ├── Exception.php │ │ ├── Extension │ │ │ ├── ExtensionHandler.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ └── NameFilterIterator.php │ │ ├── Hook │ │ │ ├── AfterIncompleteTestHook.php │ │ │ ├── AfterLastTestHook.php │ │ │ ├── AfterRiskyTestHook.php │ │ │ ├── AfterSkippedTestHook.php │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ ├── AfterTestErrorHook.php │ │ │ ├── AfterTestFailureHook.php │ │ │ ├── AfterTestHook.php │ │ │ ├── AfterTestWarningHook.php │ │ │ ├── BeforeFirstTestHook.php │ │ │ ├── BeforeTestHook.php │ │ │ ├── Hook.php │ │ │ ├── TestHook.php │ │ │ └── TestListenerAdapter.php │ │ ├── NullTestResultCache.php │ │ ├── PhptTestCase.php │ │ ├── ResultCacheExtension.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestResultCache.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── CliArguments │ │ │ ├── Builder.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ └── Mapper.php │ │ ├── Command.php │ │ ├── DefaultResultPrinter.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── ReflectionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── ResultPrinter.php │ │ ├── TestRunner.php │ │ ├── TestSuiteMapper.php │ │ └── XmlConfiguration │ │ │ ├── CodeCoverage │ │ │ ├── CodeCoverage.php │ │ │ ├── Filter │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ └── DirectoryCollectionIterator.php │ │ │ ├── FilterMapper.php │ │ │ └── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html.php │ │ │ │ ├── Php.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ ├── Filesystem │ │ │ ├── Directory.php │ │ │ ├── DirectoryCollection.php │ │ │ ├── DirectoryCollectionIterator.php │ │ │ ├── File.php │ │ │ ├── FileCollection.php │ │ │ └── FileCollectionIterator.php │ │ │ ├── Generator.php │ │ │ ├── Group │ │ │ ├── Group.php │ │ │ ├── GroupCollection.php │ │ │ ├── GroupCollectionIterator.php │ │ │ └── Groups.php │ │ │ ├── Loader.php │ │ │ ├── Logging │ │ │ ├── Junit.php │ │ │ ├── Logging.php │ │ │ ├── TeamCity.php │ │ │ ├── TestDox │ │ │ │ ├── Html.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ └── Text.php │ │ │ ├── Migration │ │ │ ├── MigrationBuilder.php │ │ │ ├── MigrationBuilderException.php │ │ │ ├── MigrationException.php │ │ │ ├── Migrations │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ ├── LogToReportMigration.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ └── UpdateSchemaLocationTo93.php │ │ │ └── Migrator.php │ │ │ ├── PHP │ │ │ ├── Constant.php │ │ │ ├── ConstantCollection.php │ │ │ ├── ConstantCollectionIterator.php │ │ │ ├── IniSetting.php │ │ │ ├── IniSettingCollection.php │ │ │ ├── IniSettingCollectionIterator.php │ │ │ ├── Php.php │ │ │ ├── PhpHandler.php │ │ │ ├── Variable.php │ │ │ ├── VariableCollection.php │ │ │ └── VariableCollectionIterator.php │ │ │ ├── PHPUnit │ │ │ ├── Extension.php │ │ │ ├── ExtensionCollection.php │ │ │ ├── ExtensionCollectionIterator.php │ │ │ └── PHPUnit.php │ │ │ └── TestSuite │ │ │ ├── TestDirectory.php │ │ │ ├── TestDirectoryCollection.php │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ ├── TestFile.php │ │ │ ├── TestFileCollection.php │ │ │ ├── TestFileCollectionIterator.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteCollection.php │ │ │ └── TestSuiteCollectionIterator.php │ │ └── Util │ │ ├── Annotation │ │ ├── DocBlock.php │ │ └── Registry.php │ │ ├── Blacklist.php │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── ErrorHandler.php │ │ ├── Exception.php │ │ ├── ExcludeList.php │ │ ├── FileLoader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── InvalidDataSetException.php │ │ ├── Json.php │ │ ├── Log │ │ ├── JUnit.php │ │ └── TeamCity.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ └── WindowsPhpProcess.php │ │ ├── Printer.php │ │ ├── Reflection.php │ │ ├── RegularExpression.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── CliTestDoxPrinter.php │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TestDoxPrinter.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── VersionComparisonOperator.php │ │ ├── XdebugFilterScriptGenerator.php │ │ ├── Xml.php │ │ ├── Xml │ │ ├── Exception.php │ │ ├── FailedSchemaDetectionResult.php │ │ ├── Loader.php │ │ ├── SchemaDetectionResult.php │ │ ├── SchemaDetector.php │ │ ├── SchemaFinder.php │ │ ├── SnapshotNodeList.php │ │ ├── SuccessfulSchemaDetectionResult.php │ │ ├── ValidationResult.php │ │ └── Validator.php │ │ └── XmlTestListRenderer.php ├── psr │ └── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── sebastian │ ├── cli-parser │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── infection.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── 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 │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── complexity │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Calculator.php │ │ │ ├── Complexity │ │ │ ├── Complexity.php │ │ │ ├── ComplexityCollection.php │ │ │ └── ComplexityCollectionIterator.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── Visitor │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ ├── diff │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception │ │ │ ├── ConfigurationException.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ ├── environment │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ ├── OperatingSystem.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── object-reflector │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── resource-operations │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Parameter.php │ │ │ ├── ReflectionMapper.php │ │ │ ├── TypeName.php │ │ │ ├── exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── type │ │ │ ├── CallableType.php │ │ │ ├── FalseType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IntersectionType.php │ │ │ ├── IterableType.php │ │ │ ├── MixedType.php │ │ │ ├── NeverType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── StaticType.php │ │ │ ├── TrueType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnknownType.php │ │ │ └── VoidType.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php ├── symfony │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CHANGELOG.md │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ └── SignalableCommandInterface.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ └── CompletionOutputInterface.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleSignalEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── CommandNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingInputException.php │ │ │ ├── NamespaceNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── NullOutputFormatter.php │ │ │ ├── NullOutputFormatterStyle.php │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ ├── OutputFormatterStyleStack.php │ │ │ └── WrappableOutputFormatterInterface.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── Dumper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ ├── StreamableInputInterface.php │ │ │ └── StringInput.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Output │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── ConsoleSectionOutput.php │ │ │ ├── NullOutput.php │ │ │ ├── Output.php │ │ │ ├── OutputInterface.php │ │ │ ├── StreamOutput.php │ │ │ └── TrimmedBufferOutput.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ ├── ConfirmationQuestion.php │ │ │ └── Question.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── hiddeninput.exe │ │ │ └── completion.bash │ │ ├── SignalRegistry │ │ │ └── SignalRegistry.php │ │ ├── SingleCommandApplication.php │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ ├── CommandCompletionTester.php │ │ │ ├── CommandTester.php │ │ │ ├── Constraint │ │ │ │ └── CommandIsSuccessful.php │ │ │ └── TesterTrait.php │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-grapheme │ │ ├── Grapheme.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── service-contracts │ │ ├── .gitignore │ │ ├── Attribute │ │ │ ├── Required.php │ │ │ └── SubscribedService.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ └── ServiceLocatorTest.php │ │ └── composer.json │ └── string │ │ ├── AbstractString.php │ │ ├── AbstractUnicodeString.php │ │ ├── ByteString.php │ │ ├── CHANGELOG.md │ │ ├── CodePointString.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ │ ├── Inflector │ │ ├── EnglishInflector.php │ │ ├── FrenchInflector.php │ │ └── InflectorInterface.php │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ ├── data │ │ │ ├── wcswidth_table_wide.php │ │ │ └── wcswidth_table_zero.php │ │ └── functions.php │ │ ├── Slugger │ │ ├── AsciiSlugger.php │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json ├── theseer │ └── tokenizer │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php ├── typerocket │ └── core │ │ ├── assets │ │ ├── dist │ │ │ ├── css │ │ │ │ └── core.css │ │ │ ├── img │ │ │ │ ├── chosen-sprite.png │ │ │ │ └── chosen-sprite@2x.png │ │ │ └── js │ │ │ │ ├── builder.ext.js │ │ │ │ ├── core.js │ │ │ │ ├── global.js │ │ │ │ └── lib │ │ │ │ └── chosen.min.js │ │ ├── js │ │ │ ├── builder.ext.jsx │ │ │ ├── core.js │ │ │ ├── global.js │ │ │ └── tooling │ │ │ │ ├── booyah.js │ │ │ │ ├── builder.js │ │ │ │ ├── dev.js │ │ │ │ ├── fn │ │ │ │ ├── chosen.js │ │ │ │ ├── color-picker.js │ │ │ │ ├── date_picker.js │ │ │ │ ├── editor.js │ │ │ │ ├── media-wp.js │ │ │ │ ├── search-common.js │ │ │ │ ├── sorting.js │ │ │ │ ├── tabs.js │ │ │ │ └── tr-helpers.js │ │ │ │ ├── http.js │ │ │ │ ├── items.js │ │ │ │ ├── links.js │ │ │ │ ├── matrix.js │ │ │ │ ├── media-redactor.js │ │ │ │ ├── media.js │ │ │ │ ├── repeater.js │ │ │ │ ├── resets.js │ │ │ │ ├── search.js │ │ │ │ ├── seo.js │ │ │ │ ├── toggle.js │ │ │ │ ├── typerocket.js │ │ │ │ └── util.js │ │ └── sass │ │ │ ├── _css_vars.scss │ │ │ ├── _vars.scss │ │ │ ├── admin-profiles.scss │ │ │ ├── core.scss │ │ │ ├── lib │ │ │ ├── chosen.scss │ │ │ └── ui-datepicker.scss │ │ │ ├── plugins │ │ │ ├── dev.scss │ │ │ ├── page-builder.scss │ │ │ └── seo.scss │ │ │ ├── tooling │ │ │ └── style-guide.scss │ │ │ └── utility │ │ │ ├── alert.scss │ │ │ ├── builder.scss │ │ │ ├── contextual.scss │ │ │ ├── dev.scss │ │ │ ├── editor.scss │ │ │ ├── form-input-range.scss │ │ │ ├── form.scss │ │ │ ├── gallery.scss │ │ │ ├── headings.scss │ │ │ ├── icon-controls.scss │ │ │ ├── image.scss │ │ │ ├── items.scss │ │ │ ├── layout.scss │ │ │ ├── location.scss │ │ │ ├── matrix.scss │ │ │ ├── repeater.scss │ │ │ ├── search.scss │ │ │ ├── sort.scss │ │ │ ├── style.scss │ │ │ ├── swatches.scss │ │ │ ├── tables.scss │ │ │ ├── tabs.scss │ │ │ └── toggle.scss │ │ ├── composer.json │ │ ├── package.json │ │ ├── src │ │ ├── Auth │ │ │ ├── Policy.php │ │ │ └── Roles.php │ │ ├── Console │ │ │ ├── Command.php │ │ │ ├── CommandCollection.php │ │ │ ├── Commands │ │ │ │ ├── ClearCache.php │ │ │ │ ├── CoreUpdate.php │ │ │ │ ├── DownloadWordPress.php │ │ │ │ ├── GenerateSeed.php │ │ │ │ ├── MakeCommand.php │ │ │ │ ├── MakeComponent.php │ │ │ │ ├── MakeComposer.php │ │ │ │ ├── MakeController.php │ │ │ │ ├── MakeFields.php │ │ │ │ ├── MakeJob.php │ │ │ │ ├── MakeMiddleware.php │ │ │ │ ├── MakeMigration.php │ │ │ │ ├── MakeModel.php │ │ │ │ ├── MakePolicy.php │ │ │ │ ├── MakeRule.php │ │ │ │ ├── MakeService.php │ │ │ │ ├── Migrate.php │ │ │ │ ├── PublishExtension.php │ │ │ │ ├── RootInstall.php │ │ │ │ └── SQL.php │ │ │ └── GalaxyConsoleLauncher.php │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ ├── FieldsController.php │ │ │ ├── RestController.php │ │ │ ├── Traits │ │ │ │ └── LoadsModel.php │ │ │ ├── WPCommentController.php │ │ │ ├── WPOptionController.php │ │ │ ├── WPPostController.php │ │ │ ├── WPTermController.php │ │ │ └── WPUserController.php │ │ ├── Core │ │ │ ├── ApplicationKernel.php │ │ │ ├── Config.php │ │ │ ├── Container.php │ │ │ ├── Resolver.php │ │ │ ├── Rooter.php │ │ │ └── System.php │ │ ├── Database │ │ │ ├── Connection.php │ │ │ ├── Connectors │ │ │ │ ├── CoreDatabaseConnector.php │ │ │ │ ├── DatabaseConnector.php │ │ │ │ └── WordPressCoreDatabaseConnector.php │ │ │ ├── EagerLoader.php │ │ │ ├── Migrate.php │ │ │ ├── Migration.php │ │ │ ├── Query.php │ │ │ ├── Results.php │ │ │ ├── ResultsCollection.php │ │ │ ├── ResultsCommentMeta.php │ │ │ ├── ResultsMeta.php │ │ │ ├── ResultsPaged.php │ │ │ ├── ResultsPostMeta.php │ │ │ ├── ResultsTermMeta.php │ │ │ ├── ResultsUserMeta.php │ │ │ ├── SqlRaw.php │ │ │ └── SqlRunner.php │ │ ├── Elements │ │ │ ├── BaseFields.php │ │ │ ├── BaseForm.php │ │ │ ├── Components │ │ │ │ ├── Fieldset.php │ │ │ │ └── Tab.php │ │ │ ├── Dashicons.php │ │ │ ├── FieldColumn.php │ │ │ ├── FieldRow.php │ │ │ ├── FieldSection.php │ │ │ ├── Fields │ │ │ │ ├── Builder.php │ │ │ │ ├── Checkbox.php │ │ │ │ ├── Color.php │ │ │ │ ├── Date.php │ │ │ │ ├── Field.php │ │ │ │ ├── File.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Image.php │ │ │ │ ├── Input.php │ │ │ │ ├── Items.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── Password.php │ │ │ │ ├── Radio.php │ │ │ │ ├── Repeater.php │ │ │ │ ├── ScriptField.php │ │ │ │ ├── Search.php │ │ │ │ ├── Select.php │ │ │ │ ├── Submit.php │ │ │ │ ├── Text.php │ │ │ │ ├── Textarea.php │ │ │ │ ├── Toggle.php │ │ │ │ └── WordPressEditor.php │ │ │ ├── Notice.php │ │ │ ├── Tabs.php │ │ │ └── Traits │ │ │ │ ├── Attributes.php │ │ │ │ ├── BeforeAfterSetting.php │ │ │ │ ├── CloneFields.php │ │ │ │ ├── Conditional.php │ │ │ │ ├── ControlsSetting.php │ │ │ │ ├── DefaultSetting.php │ │ │ │ ├── DisplayPermissions.php │ │ │ │ ├── Fieldable.php │ │ │ │ ├── FormConnectorTrait.php │ │ │ │ ├── GlobalTextFieldAttributes.php │ │ │ │ ├── ImageFeaturesTrait.php │ │ │ │ ├── Limits.php │ │ │ │ ├── MacroTrait.php │ │ │ │ ├── MaxlengthTrait.php │ │ │ │ ├── OptionsTrait.php │ │ │ │ ├── RequiredTrait.php │ │ │ │ └── Settings.php │ │ ├── Exceptions │ │ │ ├── HttpError.php │ │ │ ├── MigrationException.php │ │ │ ├── ModelException.php │ │ │ ├── ModelNotFoundException.php │ │ │ ├── RedirectError.php │ │ │ ├── ResolverException.php │ │ │ └── SqlException.php │ │ ├── Extensions │ │ │ ├── PageBuilder.php │ │ │ ├── PostMessages.php │ │ │ ├── TypeRocketUI.php │ │ │ └── views │ │ │ │ └── typerocket-ui.php │ │ ├── Html │ │ │ ├── Element.php │ │ │ ├── Html.php │ │ │ └── Tag.php │ │ ├── Http │ │ │ ├── Auth.php │ │ │ ├── ControllerContainer.php │ │ │ ├── Cookie.php │ │ │ ├── CustomRequest.php │ │ │ ├── ErrorCollection.php │ │ │ ├── Fields.php │ │ │ ├── Handler.php │ │ │ ├── HttpKernel.php │ │ │ ├── Middleware │ │ │ │ ├── AuthAdmin.php │ │ │ │ ├── AuthRead.php │ │ │ │ ├── BaseVerify.php │ │ │ │ ├── CanEditComments.php │ │ │ │ ├── CanEditPosts.php │ │ │ │ ├── CanEditUsers.php │ │ │ │ ├── CanManageCategories.php │ │ │ │ ├── CanManageOptions.php │ │ │ │ ├── CheckSpamHoneypot.php │ │ │ │ └── Middleware.php │ │ │ ├── Redirect.php │ │ │ ├── Request.php │ │ │ ├── Responders │ │ │ │ ├── CommentsResponder.php │ │ │ │ ├── Hook.php │ │ │ │ ├── HttpResponder.php │ │ │ │ ├── PostsResponder.php │ │ │ │ ├── Responder.php │ │ │ │ ├── TaxonomiesResponder.php │ │ │ │ └── UsersResponder.php │ │ │ ├── Response.php │ │ │ ├── Rewrites │ │ │ │ ├── Builder.php │ │ │ │ ├── FormLocator.php │ │ │ │ └── Matrix.php │ │ │ ├── Route.php │ │ │ ├── RouteCollection.php │ │ │ ├── Router.php │ │ │ ├── SSL.php │ │ │ ├── Stack.php │ │ │ └── WordPressRestAPI.php │ │ ├── Interfaces │ │ │ ├── Formable.php │ │ │ └── ResolvesWith.php │ │ ├── Models │ │ │ ├── AuthUser.php │ │ │ ├── Meta │ │ │ │ ├── WPCommentMeta.php │ │ │ │ ├── WPPostMeta.php │ │ │ │ ├── WPTermMeta.php │ │ │ │ └── WPUserMeta.php │ │ │ ├── Model.php │ │ │ ├── Traits │ │ │ │ ├── ArrayReplaceRecursiveValues.php │ │ │ │ ├── FieldValue.php │ │ │ │ ├── MetaData.php │ │ │ │ └── Searchable.php │ │ │ ├── WPAttachment.php │ │ │ ├── WPComment.php │ │ │ ├── WPMenu.php │ │ │ ├── WPOption.php │ │ │ ├── WPPost.php │ │ │ ├── WPTerm.php │ │ │ ├── WPTermTaxonomy.php │ │ │ └── WPUser.php │ │ ├── Register │ │ │ ├── MetaBox.php │ │ │ ├── Page.php │ │ │ ├── PostType.php │ │ │ ├── Registrable.php │ │ │ ├── Registry.php │ │ │ ├── Resourceful.php │ │ │ └── Taxonomy.php │ │ ├── Services │ │ │ ├── AuthorizerService.php │ │ │ ├── ErrorService.php │ │ │ ├── JobQueueRunner.php │ │ │ ├── MailerService.php │ │ │ ├── SecureAuthCookiesService.php │ │ │ └── Service.php │ │ ├── Template │ │ │ ├── Component.php │ │ │ ├── Composer.php │ │ │ ├── ErrorComponent.php │ │ │ ├── ErrorTemplate.php │ │ │ ├── PostTypeModelComposer.php │ │ │ ├── TemplateEngine.php │ │ │ └── View.php │ │ └── Utility │ │ │ ├── Arr.php │ │ │ ├── Data.php │ │ │ ├── DataCollection.php │ │ │ ├── DateTime.php │ │ │ ├── Dump.php │ │ │ ├── ExceptionReport.php │ │ │ ├── File.php │ │ │ ├── Helper.php │ │ │ ├── Inflect.php │ │ │ ├── Jobs │ │ │ ├── Interfaces │ │ │ │ ├── AllowOneInSchedule.php │ │ │ │ ├── JobCanQueue.php │ │ │ │ └── WithoutOverlapping.php │ │ │ ├── Job.php │ │ │ └── Queue.php │ │ │ ├── Manifest.php │ │ │ ├── Media.php │ │ │ ├── ModelField.php │ │ │ ├── Nil.php │ │ │ ├── Path.php │ │ │ ├── PersistentCache.php │ │ │ ├── QueryCaster.php │ │ │ ├── RuntimeCache.php │ │ │ ├── Sanitize.php │ │ │ ├── Str.php │ │ │ ├── Traits │ │ │ ├── ArrayAccessible.php │ │ │ └── ArrayIterable.php │ │ │ ├── Url.php │ │ │ ├── Validator.php │ │ │ ├── Validators │ │ │ ├── CallbackValidator.php │ │ │ ├── DateTimeLocalValidator.php │ │ │ ├── EmailValidator.php │ │ │ ├── KeyValidator.php │ │ │ ├── MaxLengthValidator.php │ │ │ ├── MinLengthValidator.php │ │ │ ├── NumericValidator.php │ │ │ ├── RequiredValidator.php │ │ │ ├── SizeValidator.php │ │ │ ├── UniqueModelValidator.php │ │ │ ├── UrlValidator.php │ │ │ └── ValidatorRule.php │ │ │ └── Value.php │ │ ├── templates │ │ ├── Auth.txt │ │ ├── Command.txt │ │ ├── Component.txt │ │ ├── Composers │ │ │ ├── Composer.txt │ │ │ └── PostTypeModelComposer.txt │ │ ├── Controllers │ │ │ ├── Base.txt │ │ │ ├── Post.txt │ │ │ ├── Template.txt │ │ │ ├── Term.txt │ │ │ └── Thin.txt │ │ ├── Fields.txt │ │ ├── Job.txt │ │ ├── Middleware.txt │ │ ├── Migration.txt │ │ ├── MigrationClass.txt │ │ ├── MigrationRun.txt │ │ ├── Models │ │ │ ├── Base.txt │ │ │ ├── Post.txt │ │ │ └── Term.txt │ │ ├── Rule.txt │ │ └── Service.txt │ │ └── webpack.mix.js └── woocommerce │ └── action-scheduler │ ├── README.md │ ├── action-scheduler.php │ ├── changelog.txt │ ├── classes │ ├── ActionScheduler_ActionClaim.php │ ├── ActionScheduler_ActionFactory.php │ ├── ActionScheduler_AdminView.php │ ├── ActionScheduler_AsyncRequest_QueueRunner.php │ ├── ActionScheduler_Compatibility.php │ ├── ActionScheduler_DataController.php │ ├── ActionScheduler_DateTime.php │ ├── ActionScheduler_Exception.php │ ├── ActionScheduler_FatalErrorMonitor.php │ ├── ActionScheduler_InvalidActionException.php │ ├── ActionScheduler_ListTable.php │ ├── ActionScheduler_LogEntry.php │ ├── ActionScheduler_NullLogEntry.php │ ├── ActionScheduler_OptionLock.php │ ├── ActionScheduler_QueueCleaner.php │ ├── ActionScheduler_QueueRunner.php │ ├── ActionScheduler_Versions.php │ ├── ActionScheduler_WPCommentCleaner.php │ ├── ActionScheduler_wcSystemStatus.php │ ├── WP_CLI │ │ ├── ActionScheduler_WPCLI_Clean_Command.php │ │ ├── ActionScheduler_WPCLI_QueueRunner.php │ │ ├── ActionScheduler_WPCLI_Scheduler_command.php │ │ ├── Migration_Command.php │ │ └── ProgressBar.php │ ├── abstracts │ │ ├── ActionScheduler.php │ │ ├── ActionScheduler_Abstract_ListTable.php │ │ ├── ActionScheduler_Abstract_QueueRunner.php │ │ ├── ActionScheduler_Abstract_RecurringSchedule.php │ │ ├── ActionScheduler_Abstract_Schedule.php │ │ ├── ActionScheduler_Abstract_Schema.php │ │ ├── ActionScheduler_Lock.php │ │ ├── ActionScheduler_Logger.php │ │ ├── ActionScheduler_Store.php │ │ └── ActionScheduler_TimezoneHelper.php │ ├── actions │ │ ├── ActionScheduler_Action.php │ │ ├── ActionScheduler_CanceledAction.php │ │ ├── ActionScheduler_FinishedAction.php │ │ └── ActionScheduler_NullAction.php │ ├── data-stores │ │ ├── ActionScheduler_DBLogger.php │ │ ├── ActionScheduler_DBStore.php │ │ ├── ActionScheduler_HybridStore.php │ │ ├── ActionScheduler_wpCommentLogger.php │ │ ├── ActionScheduler_wpPostStore.php │ │ ├── ActionScheduler_wpPostStore_PostStatusRegistrar.php │ │ ├── ActionScheduler_wpPostStore_PostTypeRegistrar.php │ │ └── ActionScheduler_wpPostStore_TaxonomyRegistrar.php │ ├── migration │ │ ├── ActionMigrator.php │ │ ├── ActionScheduler_DBStoreMigrator.php │ │ ├── BatchFetcher.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── DryRun_ActionMigrator.php │ │ ├── DryRun_LogMigrator.php │ │ ├── LogMigrator.php │ │ ├── Runner.php │ │ └── Scheduler.php │ ├── schedules │ │ ├── ActionScheduler_CanceledSchedule.php │ │ ├── ActionScheduler_CronSchedule.php │ │ ├── ActionScheduler_IntervalSchedule.php │ │ ├── ActionScheduler_NullSchedule.php │ │ ├── ActionScheduler_Schedule.php │ │ └── ActionScheduler_SimpleSchedule.php │ └── schema │ │ ├── ActionScheduler_LoggerSchema.php │ │ └── ActionScheduler_StoreSchema.php │ ├── deprecated │ ├── ActionScheduler_Abstract_QueueRunner_Deprecated.php │ ├── ActionScheduler_AdminView_Deprecated.php │ ├── ActionScheduler_Schedule_Deprecated.php │ ├── ActionScheduler_Store_Deprecated.php │ └── functions.php │ ├── functions.php │ ├── lib │ ├── WP_Async_Request.php │ └── cron-expression │ │ ├── CronExpression.php │ │ ├── CronExpression_AbstractField.php │ │ ├── CronExpression_DayOfMonthField.php │ │ ├── CronExpression_DayOfWeekField.php │ │ ├── CronExpression_FieldFactory.php │ │ ├── CronExpression_FieldInterface.php │ │ ├── CronExpression_HoursField.php │ │ ├── CronExpression_MinutesField.php │ │ ├── CronExpression_MonthField.php │ │ ├── CronExpression_YearField.php │ │ ├── LICENSE │ │ └── README.md │ ├── license.txt │ └── readme.txt └── wordpress └── assets ├── components ├── content.png └── tr-error-component.png └── typerocket ├── css └── core.css ├── img ├── chosen-sprite.png └── chosen-sprite@2x.png └── js ├── builder.ext.js ├── core.js ├── global.js └── lib └── chosen.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | mix-manifest.json -------------------------------------------------------------------------------- /typerocket/.gitignore: -------------------------------------------------------------------------------- 1 | # Vendor 2 | node_modules 3 | package-lock.json 4 | 5 | # Environment 6 | .env 7 | /wp-config.php 8 | /sql/run/* 9 | .phpunit.result.cache 10 | npm-debug.log 11 | yarn-error.log 12 | /galaxy-config.php 13 | 14 | # WordPress 15 | /wordpress/*.* 16 | /wordpress/.maintenance 17 | /wordpress/wp-admin 18 | /wordpress/wp-includes 19 | /wordpress/wp-content/* 20 | !/wordpress/wp-content/mu-plugins/ 21 | 22 | # Source Maps 23 | *.css.map 24 | *.js.map 25 | 26 | # OS 27 | *~ 28 | .DS_Store* 29 | ehthumbs.db 30 | Thumbs.db 31 | 32 | # IDE 33 | .idea 34 | .settings 35 | .project 36 | .build 37 | .vscode 38 | 39 | # File Types 40 | *.log 41 | *.zip 42 | .svn -------------------------------------------------------------------------------- /typerocket/app/Controllers/CategoryController.php: -------------------------------------------------------------------------------- 1 | belongsToPost(Post::class); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/app/Models/Comment.php: -------------------------------------------------------------------------------- 1 | belongsToTaxonomy(Category::class, Category::TAXONOMY); 13 | } 14 | 15 | public function tags() 16 | { 17 | return $this->belongsToTaxonomy(Tag::class, Tag::TAXONOMY); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/app/Models/Tag.php: -------------------------------------------------------------------------------- 1 | belongsToPost(Post::class); 13 | } 14 | } -------------------------------------------------------------------------------- /typerocket/app/Models/User.php: -------------------------------------------------------------------------------- 1 | [ 14 | 'api_key' => typerocket_env('TYPEROCKET_GOOGLE_MAPS_API_KEY'), 15 | 'map_zoom' => 15, 16 | 'ui' => false 17 | ] 18 | ]; -------------------------------------------------------------------------------- /typerocket/galaxy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | setEngine(TemplateEngine::class); 12 | } 13 | } -------------------------------------------------------------------------------- /typerocket/routes/public.php: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | $className 15 | * 16 | * @return object 17 | * @phpstan-return T 18 | * 19 | * @throws ExceptionInterface 20 | * 21 | * @template T of object 22 | */ 23 | public function instantiate($className); 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php: -------------------------------------------------------------------------------- 1 | filter = $filter; 18 | } 19 | 20 | public function apply($object, $property, $objectCopier) 21 | { 22 | $this->filter->apply($object, $property, $objectCopier); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /typerocket/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | setAccessible(true); 22 | $reflectionProperty->setValue($object, null); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php: -------------------------------------------------------------------------------- 1 | type = $type; 18 | } 19 | 20 | /** 21 | * @param mixed $element 22 | * 23 | * @return boolean 24 | */ 25 | public function matches($element) 26 | { 27 | return is_object($element) ? is_a($element, $this->type) : gettype($element) === $this->type; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /typerocket/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/grammar/tokens.template: -------------------------------------------------------------------------------- 1 | semValue 4 | #semval($,%t) $this->semValue 5 | #semval(%n) $this->stackPos-(%l-%n) 6 | #semval(%n,%t) $this->stackPos-(%l-%n) 7 | 8 | namespace PhpParser\Parser; 9 | #include; 10 | 11 | /* GENERATED file based on grammar/tokens.y */ 12 | final class Tokens 13 | { 14 | #tokenval 15 | const %s = %n; 16 | #endtokenval 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/lib/PhpParser/Builder.php: -------------------------------------------------------------------------------- 1 | '; 11 | } 12 | 13 | public function getType() : string { 14 | return 'Expr_BinaryOp_Greater'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php: -------------------------------------------------------------------------------- 1 | ='; 11 | } 12 | 13 | public function getType() : string { 14 | return 'Expr_BinaryOp_GreaterOrEqual'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php: -------------------------------------------------------------------------------- 1 | >'; 11 | } 12 | 13 | public function getType() : string { 14 | return 'Expr_BinaryOp_ShiftRight'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php: -------------------------------------------------------------------------------- 1 | '; 11 | } 12 | 13 | public function getType() : string { 14 | return 'Expr_BinaryOp_Spaceship'; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php: -------------------------------------------------------------------------------- 1 | setAttribute('origNode', $origNode); 18 | return $node; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /typerocket/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.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 | namespace PharIo\Manifest; 11 | 12 | class ElementCollectionException extends \InvalidArgumentException implements Exception { 13 | } 14 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | interface Exception extends \Throwable { 13 | } 14 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | class InvalidApplicationNameException extends \InvalidArgumentException implements Exception { 13 | public const InvalidFormat = 2; 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | class InvalidEmailException extends \InvalidArgumentException implements Exception { 13 | } 14 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | class InvalidUrlException extends \InvalidArgumentException implements Exception { 13 | } 14 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | class Application extends Type { 13 | public function isApplication(): bool { 14 | return true; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | class Library extends Type { 13 | public function isLibrary(): bool { 14 | return true; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | interface Requirement { 13 | } 14 | -------------------------------------------------------------------------------- /typerocket/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 | namespace PharIo\Manifest; 11 | 12 | class ExtElement extends ManifestElement { 13 | public function getName(): string { 14 | return $this->getAttributeValue('name'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phar-io/manifest/src/xml/ExtElementCollection.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 | namespace PharIo\Manifest; 11 | 12 | class ExtElementCollection extends ElementCollection { 13 | public function current(): ExtElement { 14 | return new ExtElement( 15 | $this->getCurrentElement() 16 | ); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /typerocket/vendor/phar-io/manifest/src/xml/RequiresElement.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 | namespace PharIo\Manifest; 11 | 12 | class RequiresElement extends ManifestElement { 13 | public function getPHPElement(): PhpElement { 14 | return new PhpElement( 15 | $this->getChildByName('php') 16 | ); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /typerocket/vendor/phar-io/version/src/constraints/VersionConstraint.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 | namespace PharIo\Version; 11 | 12 | interface VersionConstraint { 13 | public function complies(Version $version): bool; 14 | 15 | public function asString(): string; 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phar-io/version/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PharIo\Version; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable { 15 | } 16 | -------------------------------------------------------------------------------- /typerocket/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PharIo\Version; 11 | 12 | final class UnsupportedVersionConstraintException extends \RuntimeException implements Exception { 13 | } 14 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class BranchAndPathCoverageNotSupportedException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class DeadCodeDetectionNotSupportedException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage\Util; 11 | 12 | use RuntimeException; 13 | use SebastianBergmann\CodeCoverage\Exception; 14 | 15 | final class DirectoryCouldNotBeCreatedException extends RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/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 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/ParserException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class ParserException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/ReflectionException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class ReflectionException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class StaticAnalysisCacheNotConfiguredException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class TestIdMissingException extends RuntimeException implements Exception 15 | { 16 | public function __construct() 17 | { 18 | parent::__construct('Test ID is missing'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/WrongXdebugVersionException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage\Driver; 11 | 12 | use RuntimeException; 13 | use SebastianBergmann\CodeCoverage\Exception; 14 | 15 | final class WrongXdebugVersionException extends RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Exception/XmlException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use RuntimeException; 13 | 14 | final class XmlException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/branches.html.dist: -------------------------------------------------------------------------------- 1 |
2 |

Branches

3 |

4 | Below are the source code lines that represent each code branch as identified by Xdebug. Please note a branch is not 5 | necessarily coterminous with a line, a line may contain multiple branches and therefore show up more than once. 6 | Please also be aware that some branches may be implicit rather than explicit, e.g. an if statement 7 | always has an else as part of its logical flow even if you didn't write one. 8 |

9 | {{branches}} 10 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar_branch.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/plugin/ac44188f3e68c281364d5bd79f2258183b80312b/typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css: -------------------------------------------------------------------------------- 1 | .octicon { 2 | display: inline-block; 3 | vertical-align: text-top; 4 | fill: currentColor; 5 | } 6 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/line.html.dist: -------------------------------------------------------------------------------- 1 | {{lineNumber}}{{lineContent}} 2 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/lines.html.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{lines}} 4 | 5 |
6 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/paths.html.dist: -------------------------------------------------------------------------------- 1 |
2 |

Paths

3 |

4 | Below are the source code lines that represent each code path as identified by Xdebug. Please note a path is not 5 | necessarily coterminous with a line, a line may contain multiple paths and therefore show up more than once. 6 | Please also be aware that some paths may include implicit rather than explicit branches, e.g. an if statement 7 | always has an else as part of its logical flow even if you didn't write one. 8 |

9 | {{paths}} 10 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage 14 | */ 15 | final class Directory extends Node 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-file-iterator/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | current 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-file-iterator/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-file-iterator/README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/sebastianbergmann/php-file-iterator.svg?branch=master)](https://travis-ci.org/sebastianbergmann/php-file-iterator) 2 | 3 | # php-file-iterator 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 phpunit/php-file-iterator 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 phpunit/php-file-iterator 14 | 15 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-invoker/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 | namespace SebastianBergmann\Invoker; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Invoker; 11 | 12 | use RuntimeException; 13 | 14 | final class ProcessControlExtensionNotLoadedException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Invoker; 11 | 12 | use RuntimeException; 13 | 14 | final class TimeoutException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-text-template/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-text-template/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 6 | 7 | composer require phpunit/php-text-template 8 | 9 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 10 | 11 | composer require --dev phpunit/php-text-template 12 | 13 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-text-template/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 | namespace SebastianBergmann\Template; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-text-template/src/exceptions/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 | namespace SebastianBergmann\Template; 11 | 12 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-text-template/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 | namespace SebastianBergmann\Template; 11 | 12 | use InvalidArgumentException; 13 | 14 | final class RuntimeException extends InvalidArgumentException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-timer/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-timer/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-timer/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 | namespace SebastianBergmann\Timer; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | use LogicException; 13 | 14 | final class NoActiveTimerException extends LogicException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | use RuntimeException; 13 | 14 | final class TimeSinceStartOfRequestNotAvailableException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit; 11 | 12 | use Throwable; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface Exception extends Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/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 | /** 13 | * @internal 14 | */ 15 | final class Deprecated extends Error 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/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 | /** 13 | * @internal 14 | */ 15 | final class Notice extends Error 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/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 | /** 13 | * @internal 14 | */ 15 | final class Warning extends Error 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | class CodeCoverageException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class CoveredCodeNotExecutedException extends RiskyTestError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class IncompleteTestError extends AssertionFailedError implements IncompleteTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class InvalidCoversTargetException extends CodeCoverageException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php: -------------------------------------------------------------------------------- 1 | 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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class InvalidDataProviderException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class MissingCoversAnnotationException extends RiskyTestError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php: -------------------------------------------------------------------------------- 1 | 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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class NoChildTestSuiteException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class OutputError extends AssertionFailedError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | class RiskyTestError extends AssertionFailedError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class SkippedTestError extends AssertionFailedError implements SkippedTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class SkippedTestSuiteError extends AssertionFailedError implements SkippedTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.php: -------------------------------------------------------------------------------- 1 | 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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class SyntheticSkippedError extends SyntheticError implements SkippedTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/Exception/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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class UnintentionallyCoveredCodeError extends RiskyTestError 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | use Throwable; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface IncompleteTest extends Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php: -------------------------------------------------------------------------------- 1 | 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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class InvalidParameterGroupException extends Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class BadMethodCallException extends \BadMethodCallException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php: -------------------------------------------------------------------------------- 1 | 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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class ConfigurableMethodsAlreadyInitializedException extends \PHPUnit\Framework\Exception implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | use Throwable; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface Exception extends Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class ReflectionException extends RuntimeException implements Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class RuntimeException extends \RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/intersection.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | interface {intersection} extends {interfaces} 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}{class_declaration} 4 | { 5 | use \PHPUnit\Framework\MockObject\Api;{method}{clone} 6 | {mocked_methods}}{epilogue} 7 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_static_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} 3 | { 4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}class {class_name} 4 | { 5 | use {trait_name}; 6 | } 7 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {namespace}class {class_name} extends \SoapClient 4 | { 5 | public function __construct($wsdl, array $options) 6 | { 7 | parent::__construct('{wsdl}', $options); 8 | } 9 | {methods}} 10 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/MockObject/MockType.php: -------------------------------------------------------------------------------- 1 | 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 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface MockType 16 | { 17 | /** 18 | * @psalm-return class-string 19 | */ 20 | public function generate(): string; 21 | } 22 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/SelfDescribing.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface SelfDescribing 16 | { 17 | /** 18 | * Returns a string representation of the object. 19 | */ 20 | public function toString(): string; 21 | } 22 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Framework/SkippedTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | use Throwable; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface SkippedTest extends Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/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 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class Exception extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/CliArguments/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\TextUI\CliArguments; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class Exception extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/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\TextUI; 11 | 12 | use Throwable; 13 | 14 | /** 15 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface Exception extends Throwable 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php: -------------------------------------------------------------------------------- 1 | 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\TextUI; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class ReflectionException extends RuntimeException implements Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/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\TextUI; 11 | 12 | /** 13 | * @internal This interface is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class RuntimeException extends \RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/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\TextUI\XmlConfiguration; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class Exception extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.php: -------------------------------------------------------------------------------- 1 | 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\TextUI\XmlConfiguration; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class MigrationBuilderException extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.php: -------------------------------------------------------------------------------- 1 | 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\TextUI\XmlConfiguration; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class MigrationException extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.php: -------------------------------------------------------------------------------- 1 | 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\TextUI\XmlConfiguration; 11 | 12 | use DOMDocument; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | interface Migration 18 | { 19 | public function migrate(DOMDocument $document): void; 20 | } 21 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Util/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\Util; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class Exception extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Util/InvalidDataSetException.php: -------------------------------------------------------------------------------- 1 | 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\Util; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class InvalidDataSetException extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Util/Xml/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\Util\Xml; 11 | 12 | use RuntimeException; 13 | 14 | /** 15 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 16 | */ 17 | final class Exception extends RuntimeException implements \PHPUnit\Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.php: -------------------------------------------------------------------------------- 1 | 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\Util\Xml; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | * 15 | * @psalm-immutable 16 | */ 17 | final class FailedSchemaDetectionResult extends SchemaDetectionResult 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /typerocket/vendor/psr/container/README.md: -------------------------------------------------------------------------------- 1 | Container interface 2 | ============== 3 | 4 | This repository holds all interfaces related to [PSR-11 (Container Interface)][psr-url]. 5 | 6 | Note that this is not a Container implementation of its own. It is merely abstractions that describe the components of a Dependency Injection Container. 7 | 8 | The installable [package][package-url] and [implementations][implementation-url] are listed on Packagist. 9 | 10 | [psr-url]: https://www.php-fig.org/psr/psr-11/ 11 | [package-url]: https://packagist.org/packages/psr/container 12 | [implementation-url]: https://packagist.org/providers/psr/container-implementation 13 | 14 | -------------------------------------------------------------------------------- /typerocket/vendor/psr/container/src/ContainerExceptionInterface.php: -------------------------------------------------------------------------------- 1 | =7.3` 10 | 11 | ## [1.0.0] - 2020-08-12 12 | 13 | * Initial release 14 | 15 | [1.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/bb7bb3297957927962b0a3335befe7b66f7462e9...1.0.0 16 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/cli-parser/README.md: -------------------------------------------------------------------------------- 1 | # sebastian/cli-parser 2 | 3 | Library for parsing `$_SERVER['argv']`, extracted from `phpunit/phpunit`. 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 | ``` 10 | composer require sebastian/cli-parser 11 | ``` 12 | 13 | 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: 14 | 15 | ``` 16 | composer require --dev sebastian/cli-parser 17 | ``` 18 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/cli-parser/infection.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": { 3 | "directories": [ 4 | "src" 5 | ] 6 | }, 7 | "mutators": { 8 | "@default": true 9 | }, 10 | "minMsi": 100, 11 | "minCoveredMsi": 100 12 | } 13 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/cli-parser/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 | namespace SebastianBergmann\CliParser; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/README.md: -------------------------------------------------------------------------------- 1 | # sebastian/code-unit 2 | 3 | Collection of value objects that represent the PHP code units. 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 | ``` 10 | composer require sebastian/code-unit 11 | ``` 12 | 13 | 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: 14 | 15 | ``` 16 | composer require --dev sebastian/code-unit 17 | ``` 18 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/ClassMethodUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class ClassMethodUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true ClassMethodUnit $this 19 | */ 20 | public function isClassMethod(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/ClassUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class ClassUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true ClassUnit $this 19 | */ 20 | public function isClass(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/FunctionUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class FunctionUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true FunctionUnit $this 19 | */ 20 | public function isFunction(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/InterfaceMethodUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class InterfaceMethodUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true InterfaceMethod $this 19 | */ 20 | public function isInterfaceMethod(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/InterfaceUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class InterfaceUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true InterfaceUnit $this 19 | */ 20 | public function isInterface(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/TraitMethodUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class TraitMethodUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true TraitMethodUnit $this 19 | */ 20 | public function isTraitMethod(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/TraitUnit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | /** 13 | * @psalm-immutable 14 | */ 15 | final class TraitUnit extends CodeUnit 16 | { 17 | /** 18 | * @psalm-assert-if-true TraitUnit $this 19 | */ 20 | public function isTrait(): bool 21 | { 22 | return true; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/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 | namespace SebastianBergmann\CodeUnit; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | use RuntimeException; 13 | 14 | final class InvalidCodeUnitException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/exceptions/NoTraitException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | use RuntimeException; 13 | 14 | final class NoTraitException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/code-unit/src/exceptions/ReflectionException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | use RuntimeException; 13 | 14 | final class ReflectionException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/comparator/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 | namespace SebastianBergmann\Comparator; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/comparator/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 | namespace SebastianBergmann\Comparator; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/complexity/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/complexity/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/complexity/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Complexity; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/complexity/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Complexity; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\Diff; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\Diff; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Diff; 11 | 12 | interface LongestCommonSubsequenceCalculator 13 | { 14 | /** 15 | * Calculates the longest common subsequence of two arrays. 16 | */ 17 | public function calculate(array $from, array $to): array; 18 | } 19 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Diff\Output; 11 | 12 | /** 13 | * Defines how an output builder should take a generated 14 | * diff array and return a string representation of that diff. 15 | */ 16 | interface DiffOutputBuilderInterface 17 | { 18 | public function getDiff(array $diff): string; 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\GlobalState; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\GlobalState; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/lines-of-code/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/lines-of-code/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/lines-of-code/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\LinesOfCode; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\LinesOfCode; 11 | 12 | use LogicException; 13 | 14 | final class IllogicalValuesException extends LogicException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/lines-of-code/src/Exception/NegativeValueException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\LinesOfCode; 11 | 12 | use InvalidArgumentException; 13 | 14 | final class NegativeValueException extends InvalidArgumentException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\LinesOfCode; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/object-enumerator/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | !is_array($variable) && !is_object($variable) 6 | is_object($variable) 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/object-enumerator/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\ObjectEnumerator; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\ObjectEnumerator; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/object-reflector/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | is_object($object) 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/object-reflector/.psalm/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\ObjectReflector; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\ObjectReflector; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\RecursionContext; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/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 | namespace SebastianBergmann\RecursionContext; 11 | 12 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/resource-operations/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /.php_cs.dist export-ignore 3 | /build.xml export-ignore 4 | /phpunit.xml export-ignore 5 | /tests export-ignore 6 | 7 | *.php diff=php 8 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /build/FunctionSignatureMap.php 4 | /composer.lock 5 | /vendor 6 | /.phpunit.result.cache 7 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/resource-operations/README.md: -------------------------------------------------------------------------------- 1 | # Resource Operations 2 | 3 | Provides a list of PHP built-in functions that operate on resources. 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | composer require sebastian/resource-operations 10 | 11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 12 | 13 | composer require --dev sebastian/resource-operations 14 | 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/type/src/exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Type; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/type/src/exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Type; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /.php_cs.dist export-ignore 3 | 4 | *.php diff=php 5 | -------------------------------------------------------------------------------- /typerocket/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.php_cs.cache 2 | /.idea 3 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * ExceptionInterface. 16 | * 17 | * @author Jérôme Tamarelle 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * @author Jérôme Tamarelle 16 | */ 17 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/InvalidOptionException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * Represents an incorrect option name or value typed in the console. 16 | * 17 | * @author Jérôme Tamarelle 18 | */ 19 | class InvalidOptionException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/LogicException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * @author Jérôme Tamarelle 16 | */ 17 | class LogicException extends \LogicException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/MissingInputException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * Represents failure to read input from stdin. 16 | * 17 | * @author Gabriel Ostrolucký 18 | */ 19 | class MissingInputException extends RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/NamespaceNotFoundException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * Represents an incorrect namespace typed in the console. 16 | * 17 | * @author Pierre du Plessis 18 | */ 19 | class NamespaceNotFoundException extends CommandNotFoundException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Exception; 13 | 14 | /** 15 | * @author Jérôme Tamarelle 16 | */ 17 | class RuntimeException extends \RuntimeException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Helper/TableSeparator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Console\Helper; 13 | 14 | /** 15 | * Marks a row as being a separator. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class TableSeparator extends TableCell 20 | { 21 | public function __construct(array $options = []) 22 | { 23 | parent::__construct('', $options); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/plugin/ac44188f3e68c281364d5bd79f2258183b80312b/typerocket/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /typerocket/vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Ctype 2 | ======================== 3 | 4 | This component provides `ctype_*` functions to users who run php versions without the ctype extension. 5 | 6 | More information can be found in the 7 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). 8 | 9 | License 10 | ======= 11 | 12 | This library is released under the [MIT license](LICENSE). 13 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/polyfill-intl-normalizer/README.md: -------------------------------------------------------------------------------- 1 | Symfony Polyfill / Intl: Normalizer 2 | =================================== 3 | 4 | This component provides a fallback implementation for the 5 | [`Normalizer`](https://php.net/Normalizer) class provided 6 | by the [Intl](https://php.net/intl) extension. 7 | 8 | More information can be found in the 9 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). 10 | 11 | License 12 | ======= 13 | 14 | This library is released under the [MIT license](LICENSE). 15 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/string/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/string/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /typerocket/vendor/symfony/string/README.md: -------------------------------------------------------------------------------- 1 | String Component 2 | ================ 3 | 4 | The String component provides an object-oriented API to strings and deals 5 | with bytes, UTF-8 code points and grapheme clusters in a unified way. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Documentation](https://symfony.com/doc/current/components/string.html) 11 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 12 | * [Report issues](https://github.com/symfony/symfony/issues) and 13 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 14 | in the [main Symfony repository](https://github.com/symfony/symfony) 15 | -------------------------------------------------------------------------------- /typerocket/vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | .text { 18 | flex: 1; 19 | } 20 | 21 | > .icon { 22 | width: 30px; 23 | display: flex; 24 | justify-items: center; 25 | align-items: center; 26 | } 27 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/assets/sass/utility/location.scss: -------------------------------------------------------------------------------- 1 | /* Location 2 | ----------------------------------------------------------------------- */ 3 | .tr_field_location_google_map { 4 | height: 150px; 5 | background: #ccc; 6 | width: 100%; 7 | } 8 | 9 | .tr_field_location_load_lat_lng_section { 10 | margin: 10px 0; 11 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/assets/sass/utility/matrix.scss: -------------------------------------------------------------------------------- 1 | /* Matrix 2 | ----------------------------------------------------------------------- */ 3 | .tr-matrix-controls { 4 | margin-bottom: 20px; 5 | 6 | select, select.matrix-select { 7 | display: inline-block; 8 | width: auto; 9 | margin: 0 10px 0 0; 10 | } 11 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/assets/sass/utility/sort.scss: -------------------------------------------------------------------------------- 1 | /* Sort Helper 2 | ----------------------------------------------------------------------- */ 3 | .tr-ui-sortable-helper { 4 | opacity: 0.8; 5 | cursor: move; 6 | overflow: hidden; 7 | z-index: 100000000 !important; 8 | } 9 | 10 | .tr-sortable-placeholder { 11 | border: dashed 1px #bbb !important; 12 | visibility: visible !important; 13 | background: none !important; 14 | z-index: 1; 15 | box-shadow: none; 16 | max-height: 300px !important; 17 | box-sizing: border-box; 18 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/assets/sass/utility/style.scss: -------------------------------------------------------------------------------- 1 | /* Utility Styles 2 | ----------------------------------------------------------------------- */ 3 | .tr-round-image-corners img { 4 | border-radius: 4px; 5 | } 6 | 7 | .tr-round-corners { 8 | border-radius: 4px; 9 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Auth/Policy.php: -------------------------------------------------------------------------------- 1 | user = $user; 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Controllers/Traits/LoadsModel.php: -------------------------------------------------------------------------------- 1 | modelClass = $model; 18 | 19 | return $this; 20 | } 21 | 22 | /** 23 | * Get Model 24 | * 25 | * @return mixed 26 | */ 27 | public function getModel() 28 | { 29 | return $this->modelClass; 30 | } 31 | 32 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Database/Connectors/WordPressCoreDatabaseConnector.php: -------------------------------------------------------------------------------- 1 | name = 'wp'; 13 | $this->wpdb = $wpdb; 14 | 15 | return $this; 16 | } 17 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Database/Migration.php: -------------------------------------------------------------------------------- 1 | database = $database; 13 | $this->prefix = $database->prefix; 14 | } 15 | 16 | public function run($type) 17 | { 18 | if($type == 'up') { 19 | $this->up(); 20 | } else { 21 | $this->down(); 22 | } 23 | 24 | } 25 | 26 | abstract function up(); 27 | abstract function down(); 28 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Database/ResultsCollection.php: -------------------------------------------------------------------------------- 1 | setAttribute('placeholder', $text); 16 | } 17 | 18 | /** 19 | * Get Placeholder 20 | * 21 | * @return string 22 | */ 23 | public function getPlaceholder() 24 | { 25 | return (string) $this->getAttribute('placeholder'); 26 | } 27 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Elements/Traits/ImageFeaturesTrait.php: -------------------------------------------------------------------------------- 1 | setSetting('size', $size); 16 | } 17 | 18 | /** 19 | * Set Background Dark 20 | * 21 | * @return $this 22 | */ 23 | public function setBackgroundDark() 24 | { 25 | return $this->setSetting('background', 'dark'); 26 | } 27 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Elements/Traits/Limits.php: -------------------------------------------------------------------------------- 1 | limit = (int) $limit; 17 | return $this; 18 | } 19 | 20 | /** 21 | * Get Item Limit 22 | * 23 | * @return int 24 | */ 25 | public function getLimit() 26 | { 27 | return $this->limit; 28 | } 29 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Elements/Traits/RequiredTrait.php: -------------------------------------------------------------------------------- 1 | markLabelRequired()->setAttribute('required', 'required'); 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Exceptions/HttpError.php: -------------------------------------------------------------------------------- 1 | redirect = $redirect; 12 | 13 | return $this; 14 | } 15 | 16 | return $this->redirect; 17 | } 18 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Exceptions/ResolverException.php: -------------------------------------------------------------------------------- 1 | sql = $sql; 12 | } 13 | 14 | public function getSql() 15 | { 16 | return $this->sql; 17 | } 18 | 19 | public function setSqlError($sql) 20 | { 21 | $this->sqlError = $sql; 22 | } 23 | 24 | public function getSqlError() 25 | { 26 | return $this->sqlError; 27 | } 28 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/CustomRequest.php: -------------------------------------------------------------------------------- 1 | $value) { 16 | $this->{$key} = $value; 17 | } 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/AuthAdmin.php: -------------------------------------------------------------------------------- 1 | next->handle(); 23 | } 24 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/AuthRead.php: -------------------------------------------------------------------------------- 1 | next->handle(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/CanEditComments.php: -------------------------------------------------------------------------------- 1 | isHook() && ! current_user_can( 'edit_posts' ) ) { 19 | HttpError::abort(401); 20 | } 21 | 22 | $this->next->handle(); 23 | } 24 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/CanEditPosts.php: -------------------------------------------------------------------------------- 1 | isHook() && ! current_user_can( 'edit_posts' ) ) { 19 | HttpError::abort(401); 20 | } 21 | 22 | $this->next->handle(); 23 | } 24 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/CanEditUsers.php: -------------------------------------------------------------------------------- 1 | handler->getHook() && ! current_user_can( 'edit_users' ) ) { 19 | HttpError::abort(401); 20 | } 21 | 22 | $this->next->handle(); 23 | } 24 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/CanManageCategories.php: -------------------------------------------------------------------------------- 1 | isHook() ) { 19 | HttpError::abort(401); 20 | } 21 | 22 | $this->next->handle(); 23 | } 24 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Middleware/CanManageOptions.php: -------------------------------------------------------------------------------- 1 | isHook() ) { 19 | HttpError::abort(401); 20 | } 21 | 22 | $this->next->handle(); 23 | } 24 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Responders/HttpResponder.php: -------------------------------------------------------------------------------- 1 | handler->setArgs($args); 21 | 22 | $this->runKernel($request, $response, $this->handler); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Rewrites/Builder.php: -------------------------------------------------------------------------------- 1 | getForm($group, $type); 10 | $class = \TypeRocket\Elements\Fields\Matrix::getComponentClass($type, $group)->form($form)->data($form->getModel()); 11 | \TypeRocket\Elements\Fields\Builder::componentTemplate($class, $group); 12 | \TypeRocket\Elements\Fields\Builder::componentTile($class, $group); 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/Rewrites/Matrix.php: -------------------------------------------------------------------------------- 1 | getForm($group, $type); 10 | $class = \TypeRocket\Elements\Fields\Matrix::getComponentClass($type, $group)->form($form)->data($form->getModel()); 11 | \TypeRocket\Elements\Fields\Matrix::componentTemplate($class, $group); 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Http/WordPressRestAPI.php: -------------------------------------------------------------------------------- 1 | getRestMetaType(); 11 | $fields = $model->getRestMetaFieldsCompiled(); 12 | 13 | foreach ($fields as $field => $args) { 14 | register_meta($type, $field, $args); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Interfaces/ResolvesWith.php: -------------------------------------------------------------------------------- 1 | singleton; 23 | } 24 | 25 | /** 26 | * @return null 27 | */ 28 | public function alias() 29 | { 30 | return static::ALIAS; 31 | } 32 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Utility/DataCollection.php: -------------------------------------------------------------------------------- 1 | data = $data; 21 | } 22 | 23 | /** 24 | * @return array|object 25 | */ 26 | public function getFormFields() 27 | { 28 | return $this->data; 29 | } 30 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/src/Utility/Dump.php: -------------------------------------------------------------------------------- 1 | addArgument('arg', self::REQUIRED, 'Description'); 18 | } 19 | 20 | public function exec() 21 | { 22 | // When command executes 23 | $this->success('Execute!'); 24 | } 25 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/templates/Component.txt: -------------------------------------------------------------------------------- 1 | form(); 16 | } 17 | 18 | /** 19 | * Render 20 | * 21 | * @var array $data component fields 22 | * @var array $info name, item_id, model, first_item, last_item, component_id, hash 23 | */ 24 | public function render(array $data, array $info) 25 | { 26 | ?> 27 | 28 | payload; 14 | } 15 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/templates/Middleware.txt: -------------------------------------------------------------------------------- 1 | request; 11 | $response = $this->response; 12 | 13 | // Do stuff before controller is called 14 | 15 | $this->next->handle(); 16 | 17 | // Do stuff after controller is called 18 | } 19 | } -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/templates/Migration.txt: -------------------------------------------------------------------------------- 1 | -- Description: 2 | -- >>> Up >>> 3 | 4 | -- >>> Down >>> -------------------------------------------------------------------------------- /typerocket/vendor/typerocket/core/templates/MigrationClass.txt: -------------------------------------------------------------------------------- 1 | id = $id; 12 | $this->action_ids = $action_ids; 13 | } 14 | 15 | public function get_id() { 16 | return $this->id; 17 | } 18 | 19 | public function get_actions() { 20 | return $this->action_ids; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /typerocket/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Exception.php: -------------------------------------------------------------------------------- 1 | set_schedule( new ActionScheduler_NullSchedule() ); 10 | } 11 | 12 | public function execute() { 13 | // don't execute 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /typerocket/vendor/woocommerce/action-scheduler/classes/migration/DryRun_ActionMigrator.php: -------------------------------------------------------------------------------- 1 |