├── .editorconfig ├── .gitignore ├── assets └── css │ └── index.css ├── classes ├── CacheHandler.php ├── HtmlGenerator.php ├── PageGenerator.php └── SpreadsheetLoader.php ├── composer.json ├── composer.lock ├── index.php ├── package.json ├── php_errors.log ├── readme.md ├── snippets └── spreadsheet-table.php ├── tags └── spreadsheet.php ├── tests ├── SpreadsheetTest.php ├── bootstrap.php ├── content │ └── home │ │ └── home.txt └── site │ ├── plugins │ └── kirby3-spreadsheet │ │ └── index.php │ └── templates │ └── default.php └── vendor ├── autoload.php ├── bin ├── composer ├── ecs ├── jsonlint ├── php-cs-fixer ├── phpcbf ├── phpcs ├── phpinsights ├── phploc ├── phpunit ├── security-checker └── validate-json ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── ca-bundle │ ├── res │ │ └── cacert.pem │ └── src │ │ └── CaBundle.php ├── composer │ ├── PORTING_INFO │ ├── bin │ │ ├── compile │ │ └── composer │ ├── composer.lock │ └── src │ │ ├── Composer │ │ ├── Autoload │ │ │ ├── AutoloadGenerator.php │ │ │ ├── ClassLoader.php │ │ │ └── ClassMapGenerator.php │ │ ├── Cache.php │ │ ├── Command │ │ │ ├── AboutCommand.php │ │ │ ├── ArchiveCommand.php │ │ │ ├── BaseCommand.php │ │ │ ├── BaseDependencyCommand.php │ │ │ ├── CheckPlatformReqsCommand.php │ │ │ ├── ClearCacheCommand.php │ │ │ ├── ConfigCommand.php │ │ │ ├── CreateProjectCommand.php │ │ │ ├── DependsCommand.php │ │ │ ├── DiagnoseCommand.php │ │ │ ├── DumpAutoloadCommand.php │ │ │ ├── ExecCommand.php │ │ │ ├── GlobalCommand.php │ │ │ ├── HomeCommand.php │ │ │ ├── InitCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── LicensesCommand.php │ │ │ ├── OutdatedCommand.php │ │ │ ├── ProhibitsCommand.php │ │ │ ├── RemoveCommand.php │ │ │ ├── RequireCommand.php │ │ │ ├── RunScriptCommand.php │ │ │ ├── ScriptAliasCommand.php │ │ │ ├── SearchCommand.php │ │ │ ├── SelfUpdateCommand.php │ │ │ ├── ShowCommand.php │ │ │ ├── StatusCommand.php │ │ │ ├── SuggestsCommand.php │ │ │ ├── UpdateCommand.php │ │ │ └── ValidateCommand.php │ │ ├── Compiler.php │ │ ├── Composer.php │ │ ├── Config.php │ │ ├── Config │ │ │ ├── ConfigSourceInterface.php │ │ │ └── JsonConfigSource.php │ │ ├── Console │ │ │ ├── Application.php │ │ │ └── HtmlOutputFormatter.php │ │ ├── DependencyResolver │ │ │ ├── Decisions.php │ │ │ ├── DefaultPolicy.php │ │ │ ├── GenericRule.php │ │ │ ├── Operation │ │ │ │ ├── InstallOperation.php │ │ │ │ ├── MarkAliasInstalledOperation.php │ │ │ │ ├── MarkAliasUninstalledOperation.php │ │ │ │ ├── OperationInterface.php │ │ │ │ ├── SolverOperation.php │ │ │ │ ├── UninstallOperation.php │ │ │ │ └── UpdateOperation.php │ │ │ ├── PolicyInterface.php │ │ │ ├── Pool.php │ │ │ ├── Problem.php │ │ │ ├── Request.php │ │ │ ├── Rule.php │ │ │ ├── Rule2Literals.php │ │ │ ├── RuleSet.php │ │ │ ├── RuleSetGenerator.php │ │ │ ├── RuleSetIterator.php │ │ │ ├── RuleWatchChain.php │ │ │ ├── RuleWatchGraph.php │ │ │ ├── RuleWatchNode.php │ │ │ ├── Solver.php │ │ │ ├── SolverBugException.php │ │ │ ├── SolverProblemsException.php │ │ │ └── Transaction.php │ │ ├── Downloader │ │ │ ├── ArchiveDownloader.php │ │ │ ├── ChangeReportInterface.php │ │ │ ├── DownloadManager.php │ │ │ ├── DownloaderInterface.php │ │ │ ├── DvcsDownloaderInterface.php │ │ │ ├── FileDownloader.php │ │ │ ├── FilesystemException.php │ │ │ ├── FossilDownloader.php │ │ │ ├── GitDownloader.php │ │ │ ├── GzipDownloader.php │ │ │ ├── HgDownloader.php │ │ │ ├── PathDownloader.php │ │ │ ├── PearPackageExtractor.php │ │ │ ├── PerforceDownloader.php │ │ │ ├── PharDownloader.php │ │ │ ├── RarDownloader.php │ │ │ ├── SvnDownloader.php │ │ │ ├── TarDownloader.php │ │ │ ├── TransportException.php │ │ │ ├── VcsCapableDownloaderInterface.php │ │ │ ├── VcsDownloader.php │ │ │ ├── XzDownloader.php │ │ │ └── ZipDownloader.php │ │ ├── EventDispatcher │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventSubscriberInterface.php │ │ │ └── ScriptExecutionException.php │ │ ├── Exception │ │ │ └── NoSslException.php │ │ ├── Factory.php │ │ ├── IO │ │ │ ├── BaseIO.php │ │ │ ├── BufferIO.php │ │ │ ├── ConsoleIO.php │ │ │ ├── IOInterface.php │ │ │ └── NullIO.php │ │ ├── Installer.php │ │ ├── Installer │ │ │ ├── BinaryInstaller.php │ │ │ ├── BinaryPresenceInterface.php │ │ │ ├── InstallationManager.php │ │ │ ├── InstallerEvent.php │ │ │ ├── InstallerEvents.php │ │ │ ├── InstallerInterface.php │ │ │ ├── LibraryInstaller.php │ │ │ ├── MetapackageInstaller.php │ │ │ ├── NoopInstaller.php │ │ │ ├── PackageEvent.php │ │ │ ├── PackageEvents.php │ │ │ ├── PearBinaryInstaller.php │ │ │ ├── PearInstaller.php │ │ │ ├── PluginInstaller.php │ │ │ ├── ProjectInstaller.php │ │ │ └── SuggestedPackagesReporter.php │ │ ├── Json │ │ │ ├── JsonFile.php │ │ │ ├── JsonFormatter.php │ │ │ ├── JsonManipulator.php │ │ │ └── JsonValidationException.php │ │ ├── Package │ │ │ ├── AliasPackage.php │ │ │ ├── Archiver │ │ │ │ ├── ArchivableFilesFilter.php │ │ │ │ ├── ArchivableFilesFinder.php │ │ │ │ ├── ArchiveManager.php │ │ │ │ ├── ArchiverInterface.php │ │ │ │ ├── BaseExcludeFilter.php │ │ │ │ ├── ComposerExcludeFilter.php │ │ │ │ ├── GitExcludeFilter.php │ │ │ │ ├── HgExcludeFilter.php │ │ │ │ ├── PharArchiver.php │ │ │ │ └── ZipArchiver.php │ │ │ ├── BasePackage.php │ │ │ ├── Comparer │ │ │ │ └── Comparer.php │ │ │ ├── CompletePackage.php │ │ │ ├── CompletePackageInterface.php │ │ │ ├── Dumper │ │ │ │ └── ArrayDumper.php │ │ │ ├── Link.php │ │ │ ├── LinkConstraint │ │ │ │ ├── EmptyConstraint.php │ │ │ │ ├── LinkConstraintInterface.php │ │ │ │ ├── MultiConstraint.php │ │ │ │ ├── SpecificConstraint.php │ │ │ │ └── VersionConstraint.php │ │ │ ├── Loader │ │ │ │ ├── ArrayLoader.php │ │ │ │ ├── InvalidPackageException.php │ │ │ │ ├── JsonLoader.php │ │ │ │ ├── LoaderInterface.php │ │ │ │ ├── RootPackageLoader.php │ │ │ │ └── ValidatingArrayLoader.php │ │ │ ├── Locker.php │ │ │ ├── Package.php │ │ │ ├── PackageInterface.php │ │ │ ├── RootAliasPackage.php │ │ │ ├── RootPackage.php │ │ │ └── RootPackageInterface.php │ │ ├── Plugin │ │ │ ├── Capability │ │ │ │ ├── Capability.php │ │ │ │ └── CommandProvider.php │ │ │ ├── Capable.php │ │ │ ├── CommandEvent.php │ │ │ ├── PluginEvents.php │ │ │ ├── PluginInterface.php │ │ │ ├── PluginManager.php │ │ │ ├── PreCommandRunEvent.php │ │ │ └── PreFileDownloadEvent.php │ │ ├── Question │ │ │ └── StrictConfirmationQuestion.php │ │ ├── Repository │ │ │ ├── ArrayRepository.php │ │ │ ├── ArtifactRepository.php │ │ │ ├── BaseRepository.php │ │ │ ├── ComposerRepository.php │ │ │ ├── CompositeRepository.php │ │ │ ├── ConfigurableRepositoryInterface.php │ │ │ ├── FilesystemRepository.php │ │ │ ├── InstalledArrayRepository.php │ │ │ ├── InstalledFilesystemRepository.php │ │ │ ├── InstalledRepositoryInterface.php │ │ │ ├── InvalidRepositoryException.php │ │ │ ├── PackageRepository.php │ │ │ ├── PathRepository.php │ │ │ ├── Pear │ │ │ │ ├── BaseChannelReader.php │ │ │ │ ├── ChannelInfo.php │ │ │ │ ├── ChannelReader.php │ │ │ │ ├── ChannelRest10Reader.php │ │ │ │ ├── ChannelRest11Reader.php │ │ │ │ ├── DependencyConstraint.php │ │ │ │ ├── DependencyInfo.php │ │ │ │ ├── PackageDependencyParser.php │ │ │ │ ├── PackageInfo.php │ │ │ │ └── ReleaseInfo.php │ │ │ ├── PearRepository.php │ │ │ ├── PlatformRepository.php │ │ │ ├── RepositoryFactory.php │ │ │ ├── RepositoryInterface.php │ │ │ ├── RepositoryManager.php │ │ │ ├── RepositorySecurityException.php │ │ │ ├── Vcs │ │ │ │ ├── BitbucketDriver.php │ │ │ │ ├── FossilDriver.php │ │ │ │ ├── GitBitbucketDriver.php │ │ │ │ ├── GitDriver.php │ │ │ │ ├── GitHubDriver.php │ │ │ │ ├── GitLabDriver.php │ │ │ │ ├── HgBitbucketDriver.php │ │ │ │ ├── HgDriver.php │ │ │ │ ├── PerforceDriver.php │ │ │ │ ├── SvnDriver.php │ │ │ │ ├── VcsDriver.php │ │ │ │ └── VcsDriverInterface.php │ │ │ ├── VcsRepository.php │ │ │ ├── VersionCacheInterface.php │ │ │ ├── WritableArrayRepository.php │ │ │ └── WritableRepositoryInterface.php │ │ ├── Script │ │ │ ├── CommandEvent.php │ │ │ ├── Event.php │ │ │ ├── PackageEvent.php │ │ │ └── ScriptEvents.php │ │ ├── SelfUpdate │ │ │ ├── Keys.php │ │ │ └── Versions.php │ │ ├── Util │ │ │ ├── AuthHelper.php │ │ │ ├── Bitbucket.php │ │ │ ├── ComposerMirror.php │ │ │ ├── ConfigValidator.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Filesystem.php │ │ │ ├── Git.php │ │ │ ├── GitHub.php │ │ │ ├── GitLab.php │ │ │ ├── Hg.php │ │ │ ├── IniHelper.php │ │ │ ├── NoProxyPattern.php │ │ │ ├── PackageSorter.php │ │ │ ├── Perforce.php │ │ │ ├── Platform.php │ │ │ ├── ProcessExecutor.php │ │ │ ├── RemoteFilesystem.php │ │ │ ├── Silencer.php │ │ │ ├── SpdxLicense.php │ │ │ ├── StreamContextFactory.php │ │ │ ├── Svn.php │ │ │ ├── TlsHelper.php │ │ │ ├── Url.php │ │ │ └── Zip.php │ │ └── XdebugHandler.php │ │ └── bootstrap.php ├── semver │ └── src │ │ ├── Comparator.php │ │ ├── Constraint │ │ ├── AbstractConstraint.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── EmptyConstraint.php │ │ └── MultiConstraint.php │ │ ├── Semver.php │ │ └── VersionParser.php ├── spdx-licenses │ └── src │ │ └── SpdxLicenses.php └── xdebug-handler │ └── src │ ├── PhpConfig.php │ ├── Process.php │ ├── Status.php │ └── XdebugHandler.php ├── doctrine ├── annotations │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Annotations │ │ │ ├── Annotation.php │ │ │ ├── Annotation │ │ │ ├── Attribute.php │ │ │ ├── Attributes.php │ │ │ ├── Enum.php │ │ │ ├── IgnoreAnnotation.php │ │ │ ├── Required.php │ │ │ └── Target.php │ │ │ ├── AnnotationException.php │ │ │ ├── AnnotationReader.php │ │ │ ├── AnnotationRegistry.php │ │ │ ├── CachedReader.php │ │ │ ├── DocLexer.php │ │ │ ├── DocParser.php │ │ │ ├── FileCacheReader.php │ │ │ ├── IndexedReader.php │ │ │ ├── PhpParser.php │ │ │ ├── Reader.php │ │ │ ├── SimpleAnnotationReader.php │ │ │ └── TokenParser.php │ └── phpstan.neon ├── instantiator │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php └── lexer │ └── lib │ └── Doctrine │ └── Common │ └── Lexer │ └── AbstractLexer.php ├── friendsofphp └── php-cs-fixer │ ├── README.rst │ ├── dev-tools │ ├── bin-download.sh │ ├── build.sh │ ├── check-shell-scripts.sh │ ├── ci-integration.sh │ ├── info-extractor.php │ └── trigger-website.sh │ ├── doc │ ├── checkstyle.xsd │ ├── junit-10.xsd │ └── xml.xsd │ ├── php-cs-fixer │ └── src │ ├── AbstractAlignFixerHelper.php │ ├── AbstractDoctrineAnnotationFixer.php │ ├── AbstractFixer.php │ ├── AbstractFopenFlagFixer.php │ ├── AbstractFunctionReferenceFixer.php │ ├── AbstractLinesBeforeNamespaceFixer.php │ ├── AbstractNoUselessElseFixer.php │ ├── AbstractPhpdocTypesFixer.php │ ├── AbstractProxyFixer.php │ ├── AbstractPsrAutoloadingFixer.php │ ├── Cache │ ├── Cache.php │ ├── CacheInterface.php │ ├── CacheManagerInterface.php │ ├── Directory.php │ ├── DirectoryInterface.php │ ├── FileCacheManager.php │ ├── FileHandler.php │ ├── FileHandlerInterface.php │ ├── NullCacheManager.php │ ├── Signature.php │ └── SignatureInterface.php │ ├── Config.php │ ├── ConfigInterface.php │ ├── ConfigurationException │ ├── InvalidConfigurationException.php │ ├── InvalidFixerConfigurationException.php │ ├── InvalidForEnvFixerConfigurationException.php │ └── RequiredFixerConfigurationException.php │ ├── Console │ ├── Application.php │ ├── Command │ │ ├── DescribeCommand.php │ │ ├── DescribeNameNotFoundException.php │ │ ├── FixCommand.php │ │ ├── FixCommandExitStatusCalculator.php │ │ ├── HelpCommand.php │ │ ├── ReadmeCommand.php │ │ └── SelfUpdateCommand.php │ ├── ConfigurationResolver.php │ ├── Output │ │ ├── ErrorOutput.php │ │ ├── NullOutput.php │ │ ├── ProcessOutput.php │ │ └── ProcessOutputInterface.php │ ├── SelfUpdate │ │ ├── GithubClient.php │ │ ├── GithubClientInterface.php │ │ ├── NewVersionChecker.php │ │ └── NewVersionCheckerInterface.php │ └── WarningsDetector.php │ ├── Differ │ ├── DiffConsoleFormatter.php │ ├── DifferInterface.php │ ├── FullDiffer.php │ ├── NullDiffer.php │ ├── SebastianBergmannDiffer.php │ ├── SebastianBergmannShortDiffer.php │ └── UnifiedDiffer.php │ ├── DocBlock │ ├── Annotation.php │ ├── DocBlock.php │ ├── Line.php │ ├── ShortDescription.php │ ├── Tag.php │ └── TagComparator.php │ ├── Doctrine │ └── Annotation │ │ ├── Token.php │ │ └── Tokens.php │ ├── Error │ ├── Error.php │ └── ErrorsManager.php │ ├── FileReader.php │ ├── FileRemoval.php │ ├── Finder.php │ ├── Fixer │ ├── Alias │ │ ├── BacktickToShellExecFixer.php │ │ ├── EregToPregFixer.php │ │ ├── MbStrFunctionsFixer.php │ │ ├── NoAliasFunctionsFixer.php │ │ ├── NoMixedEchoPrintFixer.php │ │ ├── PowToExponentiationFixer.php │ │ ├── RandomApiMigrationFixer.php │ │ └── SetTypeToCastFixer.php │ ├── ArrayNotation │ │ ├── ArraySyntaxFixer.php │ │ ├── NoMultilineWhitespaceAroundDoubleArrowFixer.php │ │ ├── NoTrailingCommaInSinglelineArrayFixer.php │ │ ├── NoWhitespaceBeforeCommaInArrayFixer.php │ │ ├── NormalizeIndexBraceFixer.php │ │ ├── TrailingCommaInMultilineArrayFixer.php │ │ ├── TrimArraySpacesFixer.php │ │ └── WhitespaceAfterCommaInArrayFixer.php │ ├── Basic │ │ ├── BracesFixer.php │ │ ├── EncodingFixer.php │ │ ├── NonPrintableCharacterFixer.php │ │ ├── Psr0Fixer.php │ │ └── Psr4Fixer.php │ ├── Casing │ │ ├── LowercaseConstantsFixer.php │ │ ├── LowercaseKeywordsFixer.php │ │ ├── LowercaseStaticReferenceFixer.php │ │ ├── MagicConstantCasingFixer.php │ │ ├── MagicMethodCasingFixer.php │ │ ├── NativeFunctionCasingFixer.php │ │ └── NativeFunctionTypeDeclarationCasingFixer.php │ ├── CastNotation │ │ ├── CastSpacesFixer.php │ │ ├── LowercaseCastFixer.php │ │ ├── ModernizeTypesCastingFixer.php │ │ ├── NoShortBoolCastFixer.php │ │ ├── NoUnsetCastFixer.php │ │ └── ShortScalarCastFixer.php │ ├── ClassNotation │ │ ├── ClassAttributesSeparationFixer.php │ │ ├── ClassDefinitionFixer.php │ │ ├── FinalClassFixer.php │ │ ├── FinalInternalClassFixer.php │ │ ├── MethodSeparationFixer.php │ │ ├── NoBlankLinesAfterClassOpeningFixer.php │ │ ├── NoNullPropertyInitializationFixer.php │ │ ├── NoPhp4ConstructorFixer.php │ │ ├── NoUnneededFinalMethodFixer.php │ │ ├── OrderedClassElementsFixer.php │ │ ├── OrderedInterfacesFixer.php │ │ ├── ProtectedToPrivateFixer.php │ │ ├── SelfAccessorFixer.php │ │ ├── SingleClassElementPerStatementFixer.php │ │ ├── SingleTraitInsertPerStatementFixer.php │ │ └── VisibilityRequiredFixer.php │ ├── ClassUsage │ │ └── DateTimeImmutableFixer.php │ ├── Comment │ │ ├── CommentToPhpdocFixer.php │ │ ├── HashToSlashCommentFixer.php │ │ ├── HeaderCommentFixer.php │ │ ├── MultilineCommentOpeningClosingFixer.php │ │ ├── NoEmptyCommentFixer.php │ │ ├── NoTrailingWhitespaceInCommentFixer.php │ │ └── SingleLineCommentStyleFixer.php │ ├── ConfigurableFixerInterface.php │ ├── ConfigurationDefinitionFixerInterface.php │ ├── ConstantNotation │ │ └── NativeConstantInvocationFixer.php │ ├── ControlStructure │ │ ├── ElseifFixer.php │ │ ├── IncludeFixer.php │ │ ├── NoAlternativeSyntaxFixer.php │ │ ├── NoBreakCommentFixer.php │ │ ├── NoSuperfluousElseifFixer.php │ │ ├── NoTrailingCommaInListCallFixer.php │ │ ├── NoUnneededControlParenthesesFixer.php │ │ ├── NoUnneededCurlyBracesFixer.php │ │ ├── NoUselessElseFixer.php │ │ ├── SwitchCaseSemicolonToColonFixer.php │ │ ├── SwitchCaseSpaceFixer.php │ │ └── YodaStyleFixer.php │ ├── DefinedFixerInterface.php │ ├── DeprecatedFixerInterface.php │ ├── DoctrineAnnotation │ │ ├── DoctrineAnnotationArrayAssignmentFixer.php │ │ ├── DoctrineAnnotationBracesFixer.php │ │ ├── DoctrineAnnotationIndentationFixer.php │ │ └── DoctrineAnnotationSpacesFixer.php │ ├── FixerInterface.php │ ├── FunctionNotation │ │ ├── CombineNestedDirnameFixer.php │ │ ├── FopenFlagOrderFixer.php │ │ ├── FopenFlagsFixer.php │ │ ├── FunctionDeclarationFixer.php │ │ ├── FunctionTypehintSpaceFixer.php │ │ ├── ImplodeCallFixer.php │ │ ├── MethodArgumentSpaceFixer.php │ │ ├── NativeFunctionInvocationFixer.php │ │ ├── NoSpacesAfterFunctionNameFixer.php │ │ ├── NoUnreachableDefaultArgumentValueFixer.php │ │ ├── PhpdocToReturnTypeFixer.php │ │ ├── ReturnTypeDeclarationFixer.php │ │ ├── StaticLambdaFixer.php │ │ └── VoidReturnFixer.php │ ├── Import │ │ ├── FullyQualifiedStrictTypesFixer.php │ │ ├── NoLeadingImportSlashFixer.php │ │ ├── NoUnusedImportsFixer.php │ │ ├── OrderedImportsFixer.php │ │ ├── SingleImportPerStatementFixer.php │ │ └── SingleLineAfterImportsFixer.php │ ├── LanguageConstruct │ │ ├── ClassKeywordRemoveFixer.php │ │ ├── CombineConsecutiveIssetsFixer.php │ │ ├── CombineConsecutiveUnsetsFixer.php │ │ ├── DeclareEqualNormalizeFixer.php │ │ ├── DirConstantFixer.php │ │ ├── ErrorSuppressionFixer.php │ │ ├── ExplicitIndirectVariableFixer.php │ │ ├── FunctionToConstantFixer.php │ │ ├── IsNullFixer.php │ │ ├── NoUnsetOnPropertyFixer.php │ │ └── SilencedDeprecationErrorFixer.php │ ├── ListNotation │ │ └── ListSyntaxFixer.php │ ├── NamespaceNotation │ │ ├── BlankLineAfterNamespaceFixer.php │ │ ├── NoBlankLinesBeforeNamespaceFixer.php │ │ ├── NoLeadingNamespaceWhitespaceFixer.php │ │ └── SingleBlankLineBeforeNamespaceFixer.php │ ├── Naming │ │ └── NoHomoglyphNamesFixer.php │ ├── Operator │ │ ├── AlignDoubleArrowFixerHelper.php │ │ ├── AlignEqualsFixerHelper.php │ │ ├── BinaryOperatorSpacesFixer.php │ │ ├── ConcatSpaceFixer.php │ │ ├── IncrementStyleFixer.php │ │ ├── LogicalOperatorsFixer.php │ │ ├── NewWithBracesFixer.php │ │ ├── NotOperatorWithSpaceFixer.php │ │ ├── NotOperatorWithSuccessorSpaceFixer.php │ │ ├── ObjectOperatorWithoutWhitespaceFixer.php │ │ ├── PreIncrementFixer.php │ │ ├── StandardizeIncrementFixer.php │ │ ├── StandardizeNotEqualsFixer.php │ │ ├── TernaryOperatorSpacesFixer.php │ │ ├── TernaryToNullCoalescingFixer.php │ │ └── UnaryOperatorSpacesFixer.php │ ├── PhpTag │ │ ├── BlankLineAfterOpeningTagFixer.php │ │ ├── FullOpeningTagFixer.php │ │ ├── LinebreakAfterOpeningTagFixer.php │ │ ├── NoClosingTagFixer.php │ │ └── NoShortEchoTagFixer.php │ ├── PhpUnit │ │ ├── PhpUnitConstructFixer.php │ │ ├── PhpUnitDedicateAssertFixer.php │ │ ├── PhpUnitDedicateAssertInternalTypeFixer.php │ │ ├── PhpUnitExpectationFixer.php │ │ ├── PhpUnitFqcnAnnotationFixer.php │ │ ├── PhpUnitInternalClassFixer.php │ │ ├── PhpUnitMethodCasingFixer.php │ │ ├── PhpUnitMockFixer.php │ │ ├── PhpUnitMockShortWillReturnFixer.php │ │ ├── PhpUnitNamespacedFixer.php │ │ ├── PhpUnitNoExpectationAnnotationFixer.php │ │ ├── PhpUnitOrderedCoversFixer.php │ │ ├── PhpUnitSetUpTearDownVisibilityFixer.php │ │ ├── PhpUnitSizeClassFixer.php │ │ ├── PhpUnitStrictFixer.php │ │ ├── PhpUnitTargetVersion.php │ │ ├── PhpUnitTestAnnotationFixer.php │ │ ├── PhpUnitTestCaseStaticMethodCallsFixer.php │ │ └── PhpUnitTestClassRequiresCoversFixer.php │ ├── Phpdoc │ │ ├── AlignMultilineCommentFixer.php │ │ ├── GeneralPhpdocAnnotationRemoveFixer.php │ │ ├── NoBlankLinesAfterPhpdocFixer.php │ │ ├── NoEmptyPhpdocFixer.php │ │ ├── NoSuperfluousPhpdocTagsFixer.php │ │ ├── PhpdocAddMissingParamAnnotationFixer.php │ │ ├── PhpdocAlignFixer.php │ │ ├── PhpdocAnnotationWithoutDotFixer.php │ │ ├── PhpdocIndentFixer.php │ │ ├── PhpdocInlineTagFixer.php │ │ ├── PhpdocNoAccessFixer.php │ │ ├── PhpdocNoAliasTagFixer.php │ │ ├── PhpdocNoEmptyReturnFixer.php │ │ ├── PhpdocNoPackageFixer.php │ │ ├── PhpdocNoUselessInheritdocFixer.php │ │ ├── PhpdocOrderFixer.php │ │ ├── PhpdocReturnSelfReferenceFixer.php │ │ ├── PhpdocScalarFixer.php │ │ ├── PhpdocSeparationFixer.php │ │ ├── PhpdocSingleLineVarSpacingFixer.php │ │ ├── PhpdocSummaryFixer.php │ │ ├── PhpdocToCommentFixer.php │ │ ├── PhpdocTrimConsecutiveBlankLineSeparationFixer.php │ │ ├── PhpdocTrimFixer.php │ │ ├── PhpdocTypesFixer.php │ │ ├── PhpdocTypesOrderFixer.php │ │ ├── PhpdocVarAnnotationCorrectOrderFixer.php │ │ └── PhpdocVarWithoutNameFixer.php │ ├── ReturnNotation │ │ ├── BlankLineBeforeReturnFixer.php │ │ ├── NoUselessReturnFixer.php │ │ ├── ReturnAssignmentFixer.php │ │ └── SimplifiedNullReturnFixer.php │ ├── Semicolon │ │ ├── MultilineWhitespaceBeforeSemicolonsFixer.php │ │ ├── NoEmptyStatementFixer.php │ │ ├── NoMultilineWhitespaceBeforeSemicolonsFixer.php │ │ ├── NoSinglelineWhitespaceBeforeSemicolonsFixer.php │ │ ├── SemicolonAfterInstructionFixer.php │ │ └── SpaceAfterSemicolonFixer.php │ ├── Strict │ │ ├── DeclareStrictTypesFixer.php │ │ ├── StrictComparisonFixer.php │ │ └── StrictParamFixer.php │ ├── StringNotation │ │ ├── EscapeImplicitBackslashesFixer.php │ │ ├── ExplicitStringVariableFixer.php │ │ ├── HeredocToNowdocFixer.php │ │ ├── NoBinaryStringFixer.php │ │ ├── SimpleToComplexStringVariableFixer.php │ │ ├── SingleQuoteFixer.php │ │ └── StringLineEndingFixer.php │ ├── Whitespace │ │ ├── ArrayIndentationFixer.php │ │ ├── BlankLineBeforeStatementFixer.php │ │ ├── CompactNullableTypehintFixer.php │ │ ├── HeredocIndentationFixer.php │ │ ├── IndentationTypeFixer.php │ │ ├── LineEndingFixer.php │ │ ├── MethodChainingIndentationFixer.php │ │ ├── NoExtraBlankLinesFixer.php │ │ ├── NoExtraConsecutiveBlankLinesFixer.php │ │ ├── NoSpacesAroundOffsetFixer.php │ │ ├── NoSpacesInsideParenthesisFixer.php │ │ ├── NoTrailingWhitespaceFixer.php │ │ ├── NoWhitespaceInBlankLineFixer.php │ │ └── SingleBlankLineAtEofFixer.php │ └── WhitespacesAwareFixerInterface.php │ ├── FixerConfiguration │ ├── AliasedFixerOption.php │ ├── AliasedFixerOptionBuilder.php │ ├── AllowedValueSubset.php │ ├── DeprecatedFixerOption.php │ ├── DeprecatedFixerOptionInterface.php │ ├── FixerConfigurationResolver.php │ ├── FixerConfigurationResolverInterface.php │ ├── FixerConfigurationResolverRootless.php │ ├── FixerOption.php │ ├── FixerOptionBuilder.php │ ├── FixerOptionInterface.php │ └── InvalidOptionsForEnvException.php │ ├── FixerDefinition │ ├── CodeSample.php │ ├── CodeSampleInterface.php │ ├── FileSpecificCodeSample.php │ ├── FileSpecificCodeSampleInterface.php │ ├── FixerDefinition.php │ ├── FixerDefinitionInterface.php │ ├── VersionSpecificCodeSample.php │ ├── VersionSpecificCodeSampleInterface.php │ ├── VersionSpecification.php │ └── VersionSpecificationInterface.php │ ├── FixerFactory.php │ ├── FixerFileProcessedEvent.php │ ├── FixerNameValidator.php │ ├── Indicator │ └── PhpUnitTestCaseIndicator.php │ ├── Linter │ ├── CachingLinter.php │ ├── Linter.php │ ├── LinterInterface.php │ ├── LintingException.php │ ├── LintingResultInterface.php │ ├── ProcessLinter.php │ ├── ProcessLinterProcessBuilder.php │ ├── ProcessLintingResult.php │ ├── TokenizerLinter.php │ ├── TokenizerLintingResult.php │ └── UnavailableLinterException.php │ ├── PharChecker.php │ ├── PharCheckerInterface.php │ ├── Preg.php │ ├── PregException.php │ ├── Report │ ├── CheckstyleReporter.php │ ├── GitlabReporter.php │ ├── JsonReporter.php │ ├── JunitReporter.php │ ├── ReportSummary.php │ ├── ReporterFactory.php │ ├── ReporterInterface.php │ ├── TextReporter.php │ └── XmlReporter.php │ ├── RuleSet.php │ ├── RuleSetInterface.php │ ├── Runner │ ├── FileCachingLintingIterator.php │ ├── FileFilterIterator.php │ ├── FileLintingIterator.php │ └── Runner.php │ ├── StdinFileInfo.php │ ├── Tokenizer │ ├── AbstractTransformer.php │ ├── Analyzer │ │ ├── Analysis │ │ │ ├── ArgumentAnalysis.php │ │ │ ├── NamespaceAnalysis.php │ │ │ ├── NamespaceUseAnalysis.php │ │ │ ├── StartEndTokenAwareAnalysis.php │ │ │ └── TypeAnalysis.php │ │ ├── ArgumentsAnalyzer.php │ │ ├── CommentsAnalyzer.php │ │ ├── FunctionsAnalyzer.php │ │ ├── NamespaceUsesAnalyzer.php │ │ └── NamespacesAnalyzer.php │ ├── CT.php │ ├── CodeHasher.php │ ├── Generator │ │ └── NamespacedStringTokenGenerator.php │ ├── Resolver │ │ └── TypeShortNameResolver.php │ ├── Token.php │ ├── Tokens.php │ ├── TokensAnalyzer.php │ ├── Transformer │ │ ├── ArrayTypehintTransformer.php │ │ ├── BraceClassInstantiationTransformer.php │ │ ├── ClassConstantTransformer.php │ │ ├── CurlyBraceTransformer.php │ │ ├── ImportTransformer.php │ │ ├── NamespaceOperatorTransformer.php │ │ ├── NullableTypeTransformer.php │ │ ├── ReturnRefTransformer.php │ │ ├── SquareBraceTransformer.php │ │ ├── TypeAlternationTransformer.php │ │ ├── TypeColonTransformer.php │ │ ├── UseTransformer.php │ │ └── WhitespacyCommentTransformer.php │ ├── TransformerInterface.php │ └── Transformers.php │ ├── ToolInfo.php │ ├── ToolInfoInterface.php │ ├── Utils.php │ ├── WhitespacesFixerConfig.php │ └── WordMatcher.php ├── jean85 └── pretty-package-versions │ └── src │ ├── PrettyVersions.php │ └── Version.php ├── justinrainbow └── json-schema │ ├── bin │ └── validate-json │ ├── demo │ └── demo.php │ └── src │ └── JsonSchema │ ├── Constraints │ ├── BaseConstraint.php │ ├── CollectionConstraint.php │ ├── Constraint.php │ ├── ConstraintInterface.php │ ├── EnumConstraint.php │ ├── Factory.php │ ├── FormatConstraint.php │ ├── NumberConstraint.php │ ├── ObjectConstraint.php │ ├── SchemaConstraint.php │ ├── StringConstraint.php │ ├── TypeCheck │ │ ├── LooseTypeCheck.php │ │ ├── StrictTypeCheck.php │ │ └── TypeCheckInterface.php │ ├── TypeConstraint.php │ └── UndefinedConstraint.php │ ├── Entity │ └── JsonPointer.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── InvalidConfigException.php │ ├── InvalidSchemaException.php │ ├── InvalidSchemaMediaTypeException.php │ ├── InvalidSourceUriException.php │ ├── JsonDecodingException.php │ ├── ResourceNotFoundException.php │ ├── RuntimeException.php │ ├── UnresolvableJsonPointerException.php │ ├── UriResolverException.php │ └── ValidationException.php │ ├── Iterator │ └── ObjectIterator.php │ ├── Rfc3339.php │ ├── SchemaStorage.php │ ├── SchemaStorageInterface.php │ ├── Uri │ ├── Retrievers │ │ ├── AbstractRetriever.php │ │ ├── Curl.php │ │ ├── FileGetContents.php │ │ ├── PredefinedArray.php │ │ └── UriRetrieverInterface.php │ ├── UriResolver.php │ └── UriRetriever.php │ ├── UriResolverInterface.php │ ├── UriRetrieverInterface.php │ └── Validator.php ├── league └── container │ └── src │ ├── Argument │ ├── ArgumentResolverInterface.php │ ├── ArgumentResolverTrait.php │ ├── ClassName.php │ ├── ClassNameInterface.php │ ├── RawArgument.php │ └── RawArgumentInterface.php │ ├── Container.php │ ├── ContainerAwareInterface.php │ ├── ContainerAwareTrait.php │ ├── Definition │ ├── Definition.php │ ├── DefinitionAggregate.php │ ├── DefinitionAggregateInterface.php │ └── DefinitionInterface.php │ ├── Exception │ ├── ContainerException.php │ └── NotFoundException.php │ ├── Inflector │ ├── Inflector.php │ ├── InflectorAggregate.php │ ├── InflectorAggregateInterface.php │ └── InflectorInterface.php │ ├── ReflectionContainer.php │ └── ServiceProvider │ ├── AbstractServiceProvider.php │ ├── BootableServiceProviderInterface.php │ ├── ServiceProviderAggregate.php │ ├── ServiceProviderAggregateInterface.php │ └── ServiceProviderInterface.php ├── myclabs └── deep-copy │ ├── doc │ ├── clone.png │ ├── deep-clone.png │ ├── deep-copy.png │ └── graph.png │ └── src │ └── DeepCopy │ ├── DeepCopy.php │ ├── Exception │ ├── CloneException.php │ └── PropertyException.php │ ├── Filter │ ├── Doctrine │ │ ├── DoctrineCollectionFilter.php │ │ ├── DoctrineEmptyCollectionFilter.php │ │ └── DoctrineProxyFilter.php │ ├── Filter.php │ ├── KeepFilter.php │ ├── ReplaceFilter.php │ └── SetNullFilter.php │ ├── Matcher │ ├── Doctrine │ │ └── DoctrineProxyMatcher.php │ ├── Matcher.php │ ├── PropertyMatcher.php │ ├── PropertyNameMatcher.php │ └── PropertyTypeMatcher.php │ ├── Reflection │ └── ReflectionHelper.php │ ├── TypeFilter │ ├── Date │ │ └── DateIntervalFilter.php │ ├── ReplaceFilter.php │ ├── ShallowCopyFilter.php │ ├── Spl │ │ ├── SplDoublyLinkedList.php │ │ └── SplDoublyLinkedListFilter.php │ └── TypeFilter.php │ ├── TypeMatcher │ └── TypeMatcher.php │ └── deep_copy.php ├── nette ├── finder │ └── src │ │ └── Utils │ │ └── Finder.php ├── robot-loader │ └── src │ │ └── RobotLoader │ │ └── RobotLoader.php └── utils │ └── src │ ├── Iterators │ ├── CachingIterator.php │ └── Mapper.php │ └── Utils │ ├── ArrayHash.php │ ├── ArrayList.php │ ├── Arrays.php │ ├── Callback.php │ ├── DateTime.php │ ├── FileSystem.php │ ├── Html.php │ ├── IHtmlString.php │ ├── ITranslator.php │ ├── Image.php │ ├── Json.php │ ├── ObjectHelpers.php │ ├── ObjectMixin.php │ ├── Paginator.php │ ├── Random.php │ ├── Reflection.php │ ├── SmartObject.php │ ├── StaticClass.php │ ├── Strings.php │ ├── Validators.php │ └── exceptions.php ├── nunomaduro └── phpinsights │ ├── bin │ └── phpinsights │ ├── config │ ├── container.php │ └── routes │ │ └── console.php │ ├── src │ ├── Application │ │ ├── Adapters │ │ │ ├── Drupal │ │ │ │ └── Preset.php │ │ │ ├── Laravel │ │ │ │ ├── Commands │ │ │ │ │ └── InsightsCommand.php │ │ │ │ ├── InsightsServiceProvider.php │ │ │ │ └── Preset.php │ │ │ ├── Magento2 │ │ │ │ └── Preset.php │ │ │ ├── Symfony │ │ │ │ └── Preset.php │ │ │ └── Yii │ │ │ │ └── Preset.php │ │ ├── ConfigResolver.php │ │ ├── Console │ │ │ ├── Analyser.php │ │ │ ├── Commands │ │ │ │ ├── AnalyseCommand.php │ │ │ │ └── InvokableCommand.php │ │ │ ├── Contracts │ │ │ │ ├── Formatter.php │ │ │ │ └── Style.php │ │ │ ├── Definitions │ │ │ │ └── AnalyseDefinition.php │ │ │ ├── Formatters │ │ │ │ ├── Console.php │ │ │ │ ├── FormatResolver.php │ │ │ │ └── Json.php │ │ │ ├── OutputDecorator.php │ │ │ ├── Style.php │ │ │ └── Styles │ │ │ │ ├── Bold.php │ │ │ │ └── Title.php │ │ ├── DefaultPreset.php │ │ └── Injectors │ │ │ ├── FileProcessors.php │ │ │ └── Repositories.php │ ├── Domain │ │ ├── Analyser.php │ │ ├── Collector.php │ │ ├── ComposerFinder.php │ │ ├── ComposerLoader.php │ │ ├── Container.php │ │ ├── Contracts │ │ │ ├── HasAvg.php │ │ │ ├── HasDetails.php │ │ │ ├── HasInsights.php │ │ │ ├── HasMax.php │ │ │ ├── HasPercentage.php │ │ │ ├── HasValue.php │ │ │ ├── Insight.php │ │ │ ├── Metric.php │ │ │ ├── Preset.php │ │ │ ├── Repositories │ │ │ │ └── FilesRepository.php │ │ │ └── Sniffer.php │ │ ├── Details.php │ │ ├── EcsContainer.php │ │ ├── Exceptions │ │ │ ├── ComposerNotFound.php │ │ │ ├── DirectoryNotFound.php │ │ │ ├── InsightClassNotFound.php │ │ │ ├── InternetConnectionNotFound.php │ │ │ ├── PresetNotFound.php │ │ │ └── SniffClassNotFound.php │ │ ├── File.php │ │ ├── FileFactory.php │ │ ├── FileProcessor.php │ │ ├── Insights │ │ │ ├── Composer │ │ │ │ ├── ComposerLockMustBeFresh.php │ │ │ │ ├── ComposerMustBeValid.php │ │ │ │ ├── ComposerMustContainName.php │ │ │ │ └── ComposerMustExist.php │ │ │ ├── CyclomaticComplexityIsHigh.php │ │ │ ├── ForbiddenDefineFunctions.php │ │ │ ├── ForbiddenDefineGlobalConstants.php │ │ │ ├── ForbiddenFinalClasses.php │ │ │ ├── ForbiddenGlobals.php │ │ │ ├── ForbiddenNormalClasses.php │ │ │ ├── ForbiddenPrivateMethods.php │ │ │ ├── ForbiddenSecurityIssues.php │ │ │ ├── ForbiddenTraits.php │ │ │ ├── ForbiddenUsingGlobals.php │ │ │ ├── Insight.php │ │ │ ├── InsightCollection.php │ │ │ ├── InsightCollectionFactory.php │ │ │ ├── InsightFactory.php │ │ │ ├── Laravel │ │ │ │ └── ComposerCheckLaravelVersion.php │ │ │ └── Sniff.php │ │ ├── Kernel.php │ │ ├── Metrics │ │ │ ├── Architecture │ │ │ │ ├── Classes.php │ │ │ │ ├── Composer.php │ │ │ │ ├── Constants.php │ │ │ │ ├── Files.php │ │ │ │ ├── Functions.php │ │ │ │ ├── Globally.php │ │ │ │ ├── Interfaces.php │ │ │ │ ├── Namespaces.php │ │ │ │ └── Traits.php │ │ │ ├── Code │ │ │ │ ├── Classes.php │ │ │ │ ├── Code.php │ │ │ │ ├── Comments.php │ │ │ │ ├── Functions.php │ │ │ │ └── Globally.php │ │ │ ├── Complexity │ │ │ │ └── Complexity.php │ │ │ ├── Security │ │ │ │ └── Security.php │ │ │ └── Style │ │ │ │ └── Style.php │ │ ├── MetricsFinder.php │ │ ├── Reflection.php │ │ ├── Results.php │ │ └── Sniffs │ │ │ ├── ForbiddenSetterSniff.php │ │ │ └── SniffDecorator.php │ └── Infrastructure │ │ └── Repositories │ │ └── LocalFilesRepository.php │ └── stubs │ ├── config.php │ ├── drupal.php │ ├── laravel.php │ ├── magento2.php │ └── symfony.php ├── nuovo └── spreadsheet-reader │ ├── SpreadsheetReader.php │ ├── SpreadsheetReader_CSV.php │ ├── SpreadsheetReader_ODS.php │ ├── SpreadsheetReader_XLS.php │ ├── SpreadsheetReader_XLSX.php │ ├── php-excel-reader │ └── excel_reader2.php │ └── test.php ├── object-calisthenics └── phpcs-calisthenics-rules │ └── src │ └── ObjectCalisthenics │ ├── Exception │ └── Helper │ │ └── NonClassTypeTokenTypeException.php │ ├── Helper │ ├── ClassAnalyzer.php │ ├── NamingHelper.php │ ├── PropertyHelper.php │ └── Structure │ │ └── StructureMetrics.php │ └── Sniffs │ ├── Classes │ └── ForbiddenPublicPropertySniff.php │ ├── CodeAnalysis │ └── OneObjectOperatorPerLineSniff.php │ ├── ControlStructures │ └── NoElseSniff.php │ ├── Files │ ├── ClassTraitAndInterfaceLengthSniff.php │ └── FunctionLengthSniff.php │ ├── Metrics │ ├── MaxNestingLevelSniff.php │ ├── MethodPerClassLimitSniff.php │ └── PropertyPerClassLimitSniff.php │ └── NamingConventions │ ├── ElementNameMinimalLengthSniff.php │ └── NoSetterSniff.php ├── ocramius └── package-versions │ ├── composer.lock │ └── src │ └── PackageVersions │ ├── FallbackVersions.php │ ├── Installer.php │ └── Versions.php ├── paragonie └── random_compat │ ├── build-phar.sh │ ├── dist │ ├── random_compat.phar.pubkey │ └── random_compat.phar.pubkey.asc │ ├── lib │ └── random.php │ ├── other │ └── build_phar.php │ └── psalm-autoload.php ├── phar-io └── manifest │ ├── composer.lock │ └── src │ ├── ManifestDocumentMapper.php │ ├── ManifestLoader.php │ ├── ManifestSerializer.php │ ├── exceptions │ ├── Exception.php │ ├── InvalidApplicationNameException.php │ ├── InvalidEmailException.php │ ├── InvalidUrlException.php │ ├── ManifestDocumentException.php │ ├── ManifestDocumentMapperException.php │ ├── ManifestElementException.php │ └── ManifestLoaderException.php │ ├── values │ ├── Application.php │ ├── ApplicationName.php │ ├── Author.php │ ├── AuthorCollection.php │ ├── AuthorCollectionIterator.php │ ├── BundledComponent.php │ ├── BundledComponentCollection.php │ ├── BundledComponentCollectionIterator.php │ ├── CopyrightInformation.php │ ├── Email.php │ ├── Extension.php │ ├── Library.php │ ├── License.php │ ├── Manifest.php │ ├── PhpExtensionRequirement.php │ ├── PhpVersionRequirement.php │ ├── Requirement.php │ ├── RequirementCollection.php │ ├── RequirementCollectionIterator.php │ ├── Type.php │ └── Url.php │ └── xml │ ├── AuthorElement.php │ ├── AuthorElementCollection.php │ ├── BundlesElement.php │ ├── ComponentElement.php │ ├── ComponentElementCollection.php │ ├── ContainsElement.php │ ├── CopyrightElement.php │ ├── ElementCollection.php │ ├── ExtElement.php │ ├── ExtElementCollection.php │ ├── ExtensionElement.php │ ├── LicenseElement.php │ ├── ManifestDocument.php │ ├── ManifestDocumentLoadingException.php │ ├── ManifestElement.php │ ├── PhpElement.php │ └── RequiresElement.php ├── php-cs-fixer └── diff │ ├── LICENSE_DIFF │ ├── LICENSE_GECKO │ └── src │ ├── GeckoPackages │ └── DiffOutputBuilder │ │ ├── ConfigurationException.php │ │ └── UnifiedDiffOutputBuilder.php │ ├── v1_4 │ ├── Chunk.php │ ├── Diff.php │ ├── Differ.php │ ├── LCS │ │ ├── LongestCommonSubsequence.php │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ ├── Line.php │ └── Parser.php │ ├── v2_0 │ ├── Chunk.php │ ├── Diff.php │ ├── Differ.php │ ├── Exception │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ ├── Line.php │ ├── LongestCommonSubsequenceCalculator.php │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ ├── Output │ │ ├── AbstractChunkOutputBuilder.php │ │ ├── DiffOnlyOutputBuilder.php │ │ ├── DiffOutputBuilderInterface.php │ │ └── UnifiedDiffOutputBuilder.php │ ├── Parser.php │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ └── v3_0 │ ├── 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 ├── phpdocumentor ├── reflection-common │ ├── easy-coding-standard.neon │ ├── phpstan.neon │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── easy-coding-standard.neon │ └── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ ├── Description.php │ │ ├── DescriptionFactory.php │ │ ├── ExampleFinder.php │ │ ├── Serializer.php │ │ ├── StandardTagFactory.php │ │ ├── Tag.php │ │ ├── TagFactory.php │ │ └── Tags │ │ │ ├── Author.php │ │ │ ├── BaseTag.php │ │ │ ├── Covers.php │ │ │ ├── Deprecated.php │ │ │ ├── Example.php │ │ │ ├── Factory │ │ │ ├── StaticMethod.php │ │ │ └── Strategy.php │ │ │ ├── Formatter.php │ │ │ ├── Formatter │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── Link.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── PropertyRead.php │ │ │ ├── PropertyWrite.php │ │ │ ├── Reference │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ │ ├── Return_.php │ │ │ ├── See.php │ │ │ ├── Since.php │ │ │ ├── Source.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php └── type-resolver │ ├── composer.lock │ ├── phpstan.neon │ └── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── AbstractList.php │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── Collection.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Float_.php │ ├── Integer.php │ ├── Iterable_.php │ ├── Mixed_.php │ ├── Null_.php │ ├── Nullable.php │ ├── Object_.php │ ├── Parent_.php │ ├── Resource_.php │ ├── Scalar.php │ ├── Self_.php │ ├── Static_.php │ ├── String_.php │ ├── This.php │ └── Void_.php ├── phploc └── phploc │ ├── build │ ├── phar-autoload.php.in │ └── phar-manifest.php │ ├── phploc │ └── src │ ├── Analyser.php │ ├── CLI │ ├── Application.php │ └── Command.php │ ├── Collector.php │ ├── Exception │ ├── Exception.php │ └── RuntimeException.php │ ├── Log │ ├── Csv.php │ ├── Json.php │ ├── Text.php │ └── Xml.php │ └── Publisher.php ├── phpspec └── prophecy │ └── src │ └── Prophecy │ ├── Argument.php │ ├── Argument │ ├── ArgumentsWildcard.php │ └── Token │ │ ├── AnyValueToken.php │ │ ├── AnyValuesToken.php │ │ ├── ApproximateValueToken.php │ │ ├── ArrayCountToken.php │ │ ├── ArrayEntryToken.php │ │ ├── ArrayEveryEntryToken.php │ │ ├── CallbackToken.php │ │ ├── ExactValueToken.php │ │ ├── IdenticalValueToken.php │ │ ├── LogicalAndToken.php │ │ ├── LogicalNotToken.php │ │ ├── ObjectStateToken.php │ │ ├── StringContainsToken.php │ │ ├── TokenInterface.php │ │ └── TypeToken.php │ ├── Call │ ├── Call.php │ └── CallCenter.php │ ├── Comparator │ ├── ClosureComparator.php │ ├── Factory.php │ └── ProphecyComparator.php │ ├── Doubler │ ├── CachedDoubler.php │ ├── ClassPatch │ │ ├── ClassPatchInterface.php │ │ ├── DisableConstructorPatch.php │ │ ├── HhvmExceptionPatch.php │ │ ├── KeywordPatch.php │ │ ├── MagicCallPatch.php │ │ ├── ProphecySubjectPatch.php │ │ ├── ReflectionClassNewInstancePatch.php │ │ ├── SplFileInfoPatch.php │ │ ├── ThrowablePatch.php │ │ └── TraversablePatch.php │ ├── DoubleInterface.php │ ├── Doubler.php │ ├── Generator │ │ ├── ClassCodeGenerator.php │ │ ├── ClassCreator.php │ │ ├── ClassMirror.php │ │ ├── Node │ │ │ ├── ArgumentNode.php │ │ │ ├── ClassNode.php │ │ │ └── MethodNode.php │ │ ├── ReflectionInterface.php │ │ └── TypeHintReference.php │ ├── LazyDouble.php │ └── NameGenerator.php │ ├── Exception │ ├── Call │ │ └── UnexpectedCallException.php │ ├── Doubler │ │ ├── ClassCreatorException.php │ │ ├── ClassMirrorException.php │ │ ├── ClassNotFoundException.php │ │ ├── DoubleException.php │ │ ├── DoublerException.php │ │ ├── InterfaceNotFoundException.php │ │ ├── MethodNotExtendableException.php │ │ ├── MethodNotFoundException.php │ │ └── ReturnByReferenceException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Prediction │ │ ├── AggregateException.php │ │ ├── FailedPredictionException.php │ │ ├── NoCallsException.php │ │ ├── PredictionException.php │ │ ├── UnexpectedCallsCountException.php │ │ └── UnexpectedCallsException.php │ └── Prophecy │ │ ├── MethodProphecyException.php │ │ ├── ObjectProphecyException.php │ │ └── ProphecyException.php │ ├── PhpDocumentor │ ├── ClassAndInterfaceTagRetriever.php │ ├── ClassTagRetriever.php │ ├── LegacyClassTagRetriever.php │ └── MethodTagRetrieverInterface.php │ ├── Prediction │ ├── CallPrediction.php │ ├── CallTimesPrediction.php │ ├── CallbackPrediction.php │ ├── NoCallsPrediction.php │ └── PredictionInterface.php │ ├── Promise │ ├── CallbackPromise.php │ ├── PromiseInterface.php │ ├── ReturnArgumentPromise.php │ ├── ReturnPromise.php │ └── ThrowPromise.php │ ├── Prophecy │ ├── MethodProphecy.php │ ├── ObjectProphecy.php │ ├── ProphecyInterface.php │ ├── ProphecySubjectInterface.php │ ├── Revealer.php │ └── RevealerInterface.php │ ├── Prophet.php │ └── Util │ ├── ExportUtil.php │ └── StringUtil.php ├── phpstan └── phpdoc-parser │ ├── build-abnfgen.sh │ ├── doc │ └── grammars │ │ ├── phpdoc-method.peg │ │ ├── phpdoc-param.peg │ │ └── type.abnf │ └── src │ ├── Ast │ ├── ConstExpr │ │ ├── ConstExprArrayItemNode.php │ │ ├── ConstExprArrayNode.php │ │ ├── ConstExprFalseNode.php │ │ ├── ConstExprFloatNode.php │ │ ├── ConstExprIntegerNode.php │ │ ├── ConstExprNode.php │ │ ├── ConstExprNullNode.php │ │ ├── ConstExprStringNode.php │ │ ├── ConstExprTrueNode.php │ │ └── ConstFetchNode.php │ ├── Node.php │ ├── PhpDoc │ │ ├── DeprecatedTagValueNode.php │ │ ├── GenericTagValueNode.php │ │ ├── InvalidTagValueNode.php │ │ ├── MethodTagValueNode.php │ │ ├── MethodTagValueParameterNode.php │ │ ├── ParamTagValueNode.php │ │ ├── PhpDocChildNode.php │ │ ├── PhpDocNode.php │ │ ├── PhpDocTagNode.php │ │ ├── PhpDocTagValueNode.php │ │ ├── PhpDocTextNode.php │ │ ├── PropertyTagValueNode.php │ │ ├── ReturnTagValueNode.php │ │ ├── TemplateTagValueNode.php │ │ ├── ThrowsTagValueNode.php │ │ └── VarTagValueNode.php │ └── Type │ │ ├── ArrayShapeItemNode.php │ │ ├── ArrayShapeNode.php │ │ ├── ArrayTypeNode.php │ │ ├── CallableTypeNode.php │ │ ├── CallableTypeParameterNode.php │ │ ├── GenericTypeNode.php │ │ ├── IdentifierTypeNode.php │ │ ├── IntersectionTypeNode.php │ │ ├── NullableTypeNode.php │ │ ├── ThisTypeNode.php │ │ ├── TypeNode.php │ │ └── UnionTypeNode.php │ ├── Lexer │ └── Lexer.php │ └── Parser │ ├── ConstExprParser.php │ ├── ParserException.php │ ├── PhpDocParser.php │ ├── TokenIterator.php │ └── TypeParser.php ├── phpunit ├── php-code-coverage │ └── src │ │ ├── CodeCoverage.php │ │ ├── Driver │ │ ├── Driver.php │ │ ├── PCOV.php │ │ ├── PHPDBG.php │ │ └── Xdebug.php │ │ ├── Exception │ │ ├── CoveredCodeNotExecutedException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── MissingCoversAnnotationException.php │ │ ├── RuntimeException.php │ │ └── UnintentionallyCoveredCodeException.php │ │ ├── Filter.php │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── Builder.php │ │ ├── Directory.php │ │ ├── File.php │ │ └── Iterator.php │ │ ├── Report │ │ ├── Clover.php │ │ ├── Crap4j.php │ │ ├── Html │ │ │ ├── Facade.php │ │ │ ├── Renderer.php │ │ │ └── Renderer │ │ │ │ ├── Dashboard.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Template │ │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── custom.css │ │ │ │ ├── nv.d3.min.css │ │ │ │ ├── octicons.css │ │ │ │ └── style.css │ │ │ │ ├── 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 │ │ ├── PHP.php │ │ ├── Text.php │ │ └── Xml │ │ │ ├── BuildInformation.php │ │ │ ├── Coverage.php │ │ │ ├── Directory.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Method.php │ │ │ ├── Node.php │ │ │ ├── Project.php │ │ │ ├── Report.php │ │ │ ├── Source.php │ │ │ ├── Tests.php │ │ │ ├── Totals.php │ │ │ └── Unit.php │ │ ├── Util.php │ │ └── Version.php ├── php-file-iterator │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ └── src │ │ └── Template.php ├── php-timer │ └── src │ │ ├── Exception.php │ │ ├── RuntimeException.php │ │ └── Timer.php ├── php-token-stream │ └── src │ │ ├── Token.php │ │ └── Token │ │ ├── Stream.php │ │ ├── Stream │ │ └── CachingFactory.php │ │ └── Util.php └── phpunit │ ├── phpunit │ ├── phpunit.xsd │ └── src │ ├── Exception.php │ ├── Framework │ ├── Assert.php │ ├── Assert │ │ └── Functions.php │ ├── Constraint │ │ ├── ArrayHasKey.php │ │ ├── ArraySubset.php │ │ ├── Attribute.php │ │ ├── Callback.php │ │ ├── ClassHasAttribute.php │ │ ├── ClassHasStaticAttribute.php │ │ ├── Composite.php │ │ ├── Constraint.php │ │ ├── Count.php │ │ ├── DirectoryExists.php │ │ ├── Exception.php │ │ ├── ExceptionCode.php │ │ ├── ExceptionMessage.php │ │ ├── ExceptionMessageRegularExpression.php │ │ ├── FileExists.php │ │ ├── GreaterThan.php │ │ ├── IsAnything.php │ │ ├── IsEmpty.php │ │ ├── IsEqual.php │ │ ├── IsFalse.php │ │ ├── IsFinite.php │ │ ├── IsIdentical.php │ │ ├── IsInfinite.php │ │ ├── IsInstanceOf.php │ │ ├── IsJson.php │ │ ├── IsNan.php │ │ ├── IsNull.php │ │ ├── IsReadable.php │ │ ├── IsTrue.php │ │ ├── IsType.php │ │ ├── IsWritable.php │ │ ├── JsonMatches.php │ │ ├── JsonMatchesErrorMessageProvider.php │ │ ├── LessThan.php │ │ ├── LogicalAnd.php │ │ ├── LogicalNot.php │ │ ├── LogicalOr.php │ │ ├── LogicalXor.php │ │ ├── ObjectHasAttribute.php │ │ ├── RegularExpression.php │ │ ├── SameSize.php │ │ ├── StringContains.php │ │ ├── StringEndsWith.php │ │ ├── StringMatchesFormatDescription.php │ │ ├── StringStartsWith.php │ │ ├── TraversableContains.php │ │ └── TraversableContainsOnly.php │ ├── DataProviderTestSuite.php │ ├── Error │ │ ├── Deprecated.php │ │ ├── Error.php │ │ ├── Notice.php │ │ └── Warning.php │ ├── Exception │ │ ├── AssertionFailedError.php │ │ ├── CodeCoverageException.php │ │ ├── CoveredCodeNotExecutedException.php │ │ ├── Exception.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── InvalidDataProviderException.php │ │ ├── MissingCoversAnnotationException.php │ │ ├── OutputError.php │ │ ├── PHPTAssertionFailedError.php │ │ ├── RiskyTestError.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── SyntheticSkippedError.php │ │ ├── UnexpectedValueException.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ └── Warning.php │ ├── ExceptionWrapper.php │ ├── IncompleteTest.php │ ├── IncompleteTestCase.php │ ├── InvalidParameterGroupException.php │ ├── MockObject │ │ ├── Api │ │ │ ├── Api.php │ │ │ ├── Method.php │ │ │ ├── MockedCloneMethod.php │ │ │ └── UnmockedCloneMethod.php │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── NamespaceMatch.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ ├── ConfigurableMethod.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ ├── Exception.php │ │ │ ├── IncompatibleReturnValueException.php │ │ │ └── RuntimeException.php │ │ ├── Generator.php │ │ ├── Generator │ │ │ ├── deprecation.tpl │ │ │ ├── mocked_class.tpl │ │ │ ├── mocked_method.tpl │ │ │ ├── mocked_method_void.tpl │ │ │ ├── mocked_static_method.tpl │ │ │ ├── proxied_method.tpl │ │ │ ├── proxied_method_void.tpl │ │ │ ├── trait_class.tpl │ │ │ ├── wsdl_class.tpl │ │ │ └── wsdl_method.tpl │ │ ├── Invocation.php │ │ ├── InvocationMocker.php │ │ ├── Invokable.php │ │ ├── Matcher.php │ │ ├── Matcher │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── ConsecutiveParameters.php │ │ │ ├── DeferredError.php │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ ├── MethodNameConstraint.php │ │ ├── MockBuilder.php │ │ ├── MockClass.php │ │ ├── MockMethod.php │ │ ├── MockMethodSet.php │ │ ├── MockObject.php │ │ ├── MockTrait.php │ │ ├── MockType.php │ │ ├── Stub.php │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── MatcherCollection.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnReference.php │ │ │ ├── ReturnSelf.php │ │ │ ├── ReturnStub.php │ │ │ ├── ReturnValueMap.php │ │ │ └── Stub.php │ │ └── Verifiable.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 │ ├── 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 │ ├── Command.php │ ├── Exception.php │ ├── Help.php │ ├── ResultPrinter.php │ └── TestRunner.php │ └── Util │ ├── Blacklist.php │ ├── Color.php │ ├── Configuration.php │ ├── ConfigurationGenerator.php │ ├── ErrorHandler.php │ ├── Exception.php │ ├── FileLoader.php │ ├── Filesystem.php │ ├── Filter.php │ ├── Getopt.php │ ├── GlobalState.php │ ├── InvalidArgumentHelper.php │ ├── Json.php │ ├── Log │ ├── JUnit.php │ └── TeamCity.php │ ├── PHP │ ├── AbstractPhpProcess.php │ ├── DefaultPhpProcess.php │ ├── Template │ │ ├── PhptTestCase.tpl │ │ ├── TestCaseClass.tpl │ │ └── TestCaseMethod.tpl │ ├── WindowsPhpProcess.php │ └── eval-stdin.php │ ├── Printer.php │ ├── RegularExpression.php │ ├── Test.php │ ├── TestDox │ ├── CliTestDoxPrinter.php │ ├── HtmlResultPrinter.php │ ├── NamePrettifier.php │ ├── ResultPrinter.php │ ├── TestDoxPrinter.php │ ├── TextResultPrinter.php │ └── XmlResultPrinter.php │ ├── TextTestListRenderer.php │ ├── Type.php │ ├── XdebugFilterScriptGenerator.php │ ├── Xml.php │ └── XmlTestListRenderer.php ├── psr ├── cache │ └── src │ │ ├── CacheException.php │ │ ├── CacheItemInterface.php │ │ ├── CacheItemPoolInterface.php │ │ └── InvalidArgumentException.php ├── container │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── log │ └── Psr │ │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php └── simple-cache │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── sebastian ├── code-unit-reverse-lookup │ └── src │ │ └── Wizard.php ├── comparator │ └── 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 ├── diff │ └── 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 │ └── src │ │ ├── Console.php │ │ ├── OperatingSystem.php │ │ └── Runtime.php ├── exporter │ └── src │ │ └── Exporter.php ├── finder-facade │ └── src │ │ ├── Configuration.php │ │ └── FinderFacade.php ├── global-state │ └── src │ │ ├── Blacklist.php │ │ ├── CodeExporter.php │ │ ├── Restorer.php │ │ ├── Snapshot.php │ │ └── exceptions │ │ ├── Exception.php │ │ └── RuntimeException.php ├── object-enumerator │ └── src │ │ ├── Enumerator.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php ├── object-reflector │ └── src │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── ObjectReflector.php ├── recursion-context │ └── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php ├── resource-operations │ ├── build │ │ └── generate.php │ └── src │ │ └── ResourceOperations.php └── type │ └── src │ ├── CallableType.php │ ├── GenericObjectType.php │ ├── IterableType.php │ ├── NullType.php │ ├── ObjectType.php │ ├── SimpleType.php │ ├── Type.php │ ├── TypeName.php │ ├── UnknownType.php │ ├── VoidType.php │ └── exception │ ├── Exception.php │ └── RuntimeException.php ├── seld ├── jsonlint │ ├── bin │ │ └── jsonlint │ └── src │ │ └── Seld │ │ └── JsonLint │ │ ├── DuplicateKeyException.php │ │ ├── JsonParser.php │ │ ├── Lexer.php │ │ ├── ParsingException.php │ │ └── Undefined.php └── phar-utils │ ├── composer.lock │ └── src │ └── Timestamps.php ├── sensiolabs └── security-checker │ ├── SensioLabs │ └── Security │ │ ├── Command │ │ └── SecurityCheckerCommand.php │ │ ├── Crawler.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── HttpException.php │ │ └── RuntimeException.php │ │ ├── Result.php │ │ └── SecurityChecker.php │ └── security-checker ├── slevomat └── coding-standard │ └── SlevomatCodingStandard │ ├── Helpers │ ├── Annotation │ │ ├── Annotation.php │ │ ├── GenericAnnotation.php │ │ ├── MethodAnnotation.php │ │ ├── ParameterAnnotation.php │ │ ├── PropertyAnnotation.php │ │ ├── ReturnAnnotation.php │ │ ├── ThrowsAnnotation.php │ │ └── VariableAnnotation.php │ ├── AnnotationHelper.php │ ├── AnnotationTypeHelper.php │ ├── CatchHelper.php │ ├── ClassHelper.php │ ├── Comment.php │ ├── ConditionHelper.php │ ├── ConstantHelper.php │ ├── DocCommentHelper.php │ ├── EmptyFileException.php │ ├── FunctionHelper.php │ ├── IdentificatorHelper.php │ ├── NamespaceHelper.php │ ├── ParameterHelper.php │ ├── ParameterTypeHint.php │ ├── PropertyHelper.php │ ├── ReferencedName.php │ ├── ReferencedNameHelper.php │ ├── ReturnTypeHint.php │ ├── ScopeHelper.php │ ├── SniffSettingsHelper.php │ ├── StringHelper.php │ ├── SuppressHelper.php │ ├── TokenHelper.php │ ├── TokenPointerOutOfBoundsException.php │ ├── TypeHelper.php │ ├── TypeHintHelper.php │ ├── UseStatement.php │ ├── UseStatementHelper.php │ ├── VariableHelper.php │ └── YodaHelper.php │ └── Sniffs │ ├── Arrays │ ├── DisallowImplicitArrayCreationSniff.php │ └── TrailingArrayCommaSniff.php │ ├── Classes │ ├── ClassConstantVisibilitySniff.php │ ├── DisallowLateStaticBindingForConstantsSniff.php │ ├── EmptyLinesAroundClassBracesSniff.php │ ├── ModernClassNameReferenceSniff.php │ ├── SuperfluousAbstractClassNamingSniff.php │ ├── SuperfluousExceptionNamingSniff.php │ ├── SuperfluousInterfaceNamingSniff.php │ ├── SuperfluousTraitNamingSniff.php │ ├── TraitUseDeclarationSniff.php │ ├── TraitUseSpacingSniff.php │ ├── UnusedPrivateElementsSniff.php │ └── UselessLateStaticBindingSniff.php │ ├── Commenting │ ├── DisallowOneLinePropertyDocCommentSniff.php │ ├── DocCommentSpacingSniff.php │ ├── EmptyCommentSniff.php │ ├── ForbiddenAnnotationsSniff.php │ ├── ForbiddenCommentsSniff.php │ ├── InlineDocCommentDeclarationSniff.php │ ├── RequireOneLinePropertyDocCommentSniff.php │ └── UselessInheritDocCommentSniff.php │ ├── ControlStructures │ ├── AssignmentInConditionSniff.php │ ├── ControlStructureSpacingSniff.php │ ├── DisallowContinueWithoutIntegerOperandInSwitchSniff.php │ ├── DisallowEmptySniff.php │ ├── DisallowShortTernaryOperatorSniff.php │ ├── DisallowYodaComparisonSniff.php │ ├── EarlyExitSniff.php │ ├── LanguageConstructWithParenthesesSniff.php │ ├── NewWithParenthesesSniff.php │ ├── NewWithoutParenthesesSniff.php │ ├── RequireMultiLineTernaryOperatorSniff.php │ ├── RequireNullCoalesceOperatorSniff.php │ ├── RequireShortTernaryOperatorSniff.php │ ├── RequireTernaryOperatorSniff.php │ ├── RequireYodaComparisonSniff.php │ ├── UselessIfConditionWithReturnSniff.php │ └── UselessTernaryOperatorSniff.php │ ├── Exceptions │ ├── DeadCatchSniff.php │ └── ReferenceThrowableOnlySniff.php │ ├── Files │ ├── FilepathNamespaceExtractor.php │ └── TypeNameMatchesFileNameSniff.php │ ├── Functions │ ├── StaticClosureSniff.php │ ├── TrailingCommaInCallSniff.php │ ├── UnusedInheritedVariablePassedToClosureSniff.php │ ├── UnusedParameterSniff.php │ └── UselessParameterDefaultValueSniff.php │ ├── Namespaces │ ├── AbstractFullyQualifiedGlobalReference.php │ ├── AlphabeticallySortedUsesSniff.php │ ├── DisallowGroupUseSniff.php │ ├── FullyQualifiedClassNameAfterKeywordSniff.php │ ├── FullyQualifiedClassNameInAnnotationSniff.php │ ├── FullyQualifiedExceptionsSniff.php │ ├── FullyQualifiedGlobalConstantsSniff.php │ ├── FullyQualifiedGlobalFunctionsSniff.php │ ├── MultipleUsesPerLineSniff.php │ ├── NamespaceDeclarationSniff.php │ ├── NamespaceSpacingSniff.php │ ├── ReferenceUsedNamesOnlySniff.php │ ├── RequireOneNamespaceInFileSniff.php │ ├── UndefinedKeywordTokenException.php │ ├── UnusedUsesSniff.php │ ├── UseDoesNotStartWithBackslashSniff.php │ ├── UseFromSameNamespaceSniff.php │ ├── UseOnlyWhitelistedNamespacesSniff.php │ ├── UseSpacingSniff.php │ └── UselessAliasSniff.php │ ├── Operators │ ├── DisallowEqualOperatorsSniff.php │ ├── DisallowIncrementAndDecrementOperatorsSniff.php │ ├── RequireCombinedAssignmentOperatorSniff.php │ ├── RequireOnlyStandaloneIncrementAndDecrementOperatorsSniff.php │ └── SpreadOperatorSpacingSniff.php │ ├── PHP │ ├── OptimizedFunctionsWithoutUnpackingSniff.php │ ├── ShortListSniff.php │ ├── TypeCastSniff.php │ ├── UselessParenthesesSniff.php │ └── UselessSemicolonSniff.php │ ├── TestCase.php │ ├── TypeHints │ ├── DeclareStrictTypesSniff.php │ ├── DisallowArrayTypeHintSyntaxSniff.php │ ├── DisallowMixedTypeHintSniff.php │ ├── LongTypeHintsSniff.php │ ├── NullTypeHintOnLastPositionSniff.php │ ├── NullableTypeForNullDefaultValueSniff.php │ ├── ParameterTypeHintSpacingSniff.php │ ├── ReturnTypeHintSpacingSniff.php │ ├── TypeHintDeclarationSniff.php │ └── UselessConstantTypeHintSniff.php │ └── Variables │ ├── DuplicateAssignmentToVariableSniff.php │ ├── UnusedVariableSniff.php │ └── UselessVariableSniff.php ├── squizlabs └── php_codesniffer │ ├── autoload.php │ ├── bin │ ├── phpcbf │ ├── phpcbf.bat │ ├── phpcs │ └── phpcs.bat │ ├── phpcs.xsd │ ├── phpstan.neon │ ├── scripts │ ├── ValidatePEAR │ │ └── ValidatePEARPackageXML.php │ ├── build-phar.php │ └── validate-pear-package.php │ └── src │ ├── Config.php │ ├── Exceptions │ ├── DeepExitException.php │ ├── RuntimeException.php │ └── TokenizerException.php │ ├── Files │ ├── DummyFile.php │ ├── File.php │ ├── FileList.php │ └── LocalFile.php │ ├── Filters │ ├── ExactMatch.php │ ├── Filter.php │ ├── GitModified.php │ └── GitStaged.php │ ├── Fixer.php │ ├── Generators │ ├── Generator.php │ ├── HTML.php │ ├── Markdown.php │ └── Text.php │ ├── Reporter.php │ ├── Reports │ ├── Cbf.php │ ├── Checkstyle.php │ ├── Code.php │ ├── Csv.php │ ├── Diff.php │ ├── Emacs.php │ ├── Full.php │ ├── Gitblame.php │ ├── Hgblame.php │ ├── Info.php │ ├── Json.php │ ├── Junit.php │ ├── Notifysend.php │ ├── Report.php │ ├── Source.php │ ├── Summary.php │ ├── Svnblame.php │ ├── VersionControl.php │ └── Xml.php │ ├── Ruleset.php │ ├── Runner.php │ ├── Sniffs │ ├── AbstractArraySniff.php │ ├── AbstractPatternSniff.php │ ├── AbstractScopeSniff.php │ ├── AbstractVariableSniff.php │ └── Sniff.php │ ├── Standards │ ├── Generic │ │ └── Sniffs │ │ │ ├── Arrays │ │ │ ├── ArrayIndentSniff.php │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ ├── Classes │ │ │ ├── DuplicateClassNameSniff.php │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ ├── CodeAnalysis │ │ │ ├── AssignmentInConditionSniff.php │ │ │ ├── EmptyPHPStatementSniff.php │ │ │ ├── EmptyStatementSniff.php │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ ├── JumbledIncrementerSniff.php │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ └── UselessOverridingMethodSniff.php │ │ │ ├── Commenting │ │ │ ├── DocCommentSniff.php │ │ │ ├── FixmeSniff.php │ │ │ └── TodoSniff.php │ │ │ ├── ControlStructures │ │ │ ├── DisallowYodaConditionsSniff.php │ │ │ └── InlineControlStructureSniff.php │ │ │ ├── Debug │ │ │ ├── CSSLintSniff.php │ │ │ ├── ClosureLinterSniff.php │ │ │ ├── ESLintSniff.php │ │ │ └── JSHintSniff.php │ │ │ ├── Files │ │ │ ├── ByteOrderMarkSniff.php │ │ │ ├── EndFileNewlineSniff.php │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ ├── InlineHTMLSniff.php │ │ │ ├── LineEndingsSniff.php │ │ │ ├── LineLengthSniff.php │ │ │ ├── LowercasedFilenameSniff.php │ │ │ ├── OneClassPerFileSniff.php │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ ├── OneObjectStructurePerFileSniff.php │ │ │ └── OneTraitPerFileSniff.php │ │ │ ├── Formatting │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ ├── SpaceAfterCastSniff.php │ │ │ ├── SpaceAfterNotSniff.php │ │ │ └── SpaceBeforeCastSniff.php │ │ │ ├── Functions │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ ├── Metrics │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ └── NestingLevelSniff.php │ │ │ ├── NamingConventions │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ ├── ConstructorNameSniff.php │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ ├── PHP │ │ │ ├── BacktickOperatorSniff.php │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ ├── ClosingPHPTagSniff.php │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ ├── DiscourageGotoSniff.php │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ ├── LowerCaseConstantSniff.php │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ ├── LowerCaseTypeSniff.php │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ ├── RequireStrictTypesSniff.php │ │ │ ├── SAPIUsageSniff.php │ │ │ ├── SyntaxSniff.php │ │ │ └── UpperCaseConstantSniff.php │ │ │ ├── Strings │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ ├── VersionControl │ │ │ ├── GitMergeConflictSniff.php │ │ │ └── SubversionPropertiesSniff.php │ │ │ └── WhiteSpace │ │ │ ├── ArbitraryParenthesesSpacingSniff.php │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ ├── DisallowTabIndentSniff.php │ │ │ ├── IncrementDecrementSpacingSniff.php │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ ├── ScopeIndentSniff.php │ │ │ └── SpreadOperatorSpacingAfterSniff.php │ ├── MySource │ │ └── Sniffs │ │ │ ├── CSS │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ ├── Channels │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ ├── IncludeSystemSniff.php │ │ │ └── UnusedSystemSniff.php │ │ │ ├── Commenting │ │ │ └── FunctionCommentSniff.php │ │ │ ├── Debug │ │ │ ├── DebugCodeSniff.php │ │ │ └── FirebugConsoleSniff.php │ │ │ ├── Objects │ │ │ ├── AssignThisSniff.php │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ └── DisallowNewWidgetSniff.php │ │ │ ├── PHP │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ ├── EvalObjectFactorySniff.php │ │ │ ├── GetRequestDataSniff.php │ │ │ └── ReturnFunctionValueSniff.php │ │ │ └── Strings │ │ │ └── JoinStringsSniff.php │ ├── PEAR │ │ └── Sniffs │ │ │ ├── Classes │ │ │ └── ClassDeclarationSniff.php │ │ │ ├── Commenting │ │ │ ├── ClassCommentSniff.php │ │ │ ├── FileCommentSniff.php │ │ │ ├── FunctionCommentSniff.php │ │ │ └── InlineCommentSniff.php │ │ │ ├── ControlStructures │ │ │ ├── ControlSignatureSniff.php │ │ │ └── MultiLineConditionSniff.php │ │ │ ├── Files │ │ │ └── IncludingFileSniff.php │ │ │ ├── Formatting │ │ │ └── MultiLineAssignmentSniff.php │ │ │ ├── Functions │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ ├── FunctionDeclarationSniff.php │ │ │ └── ValidDefaultValueSniff.php │ │ │ ├── NamingConventions │ │ │ ├── ValidClassNameSniff.php │ │ │ ├── ValidFunctionNameSniff.php │ │ │ └── ValidVariableNameSniff.php │ │ │ └── WhiteSpace │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ └── ScopeIndentSniff.php │ ├── PSR1 │ │ └── Sniffs │ │ │ ├── Classes │ │ │ └── ClassDeclarationSniff.php │ │ │ ├── Files │ │ │ └── SideEffectsSniff.php │ │ │ └── Methods │ │ │ └── CamelCapsMethodNameSniff.php │ ├── PSR12 │ │ └── Sniffs │ │ │ ├── Classes │ │ │ ├── AnonClassDeclarationSniff.php │ │ │ ├── ClassInstantiationSniff.php │ │ │ └── ClosingBraceSniff.php │ │ │ ├── ControlStructures │ │ │ ├── BooleanOperatorPlacementSniff.php │ │ │ └── ControlStructureSpacingSniff.php │ │ │ ├── Files │ │ │ ├── DeclareStatementSniff.php │ │ │ ├── FileHeaderSniff.php │ │ │ ├── ImportStatementSniff.php │ │ │ └── OpenTagSniff.php │ │ │ ├── Functions │ │ │ ├── NullableTypeDeclarationSniff.php │ │ │ └── ReturnTypeDeclarationSniff.php │ │ │ ├── Keywords │ │ │ └── ShortFormTypeKeywordsSniff.php │ │ │ ├── Namespaces │ │ │ └── CompoundNamespaceDepthSniff.php │ │ │ ├── Operators │ │ │ └── OperatorSpacingSniff.php │ │ │ ├── Properties │ │ │ └── ConstantVisibilitySniff.php │ │ │ └── Traits │ │ │ └── UseDeclarationSniff.php │ ├── PSR2 │ │ └── Sniffs │ │ │ ├── Classes │ │ │ ├── ClassDeclarationSniff.php │ │ │ └── PropertyDeclarationSniff.php │ │ │ ├── ControlStructures │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ └── SwitchDeclarationSniff.php │ │ │ ├── Files │ │ │ ├── ClosingTagSniff.php │ │ │ └── EndFileNewlineSniff.php │ │ │ ├── Methods │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ └── MethodDeclarationSniff.php │ │ │ └── Namespaces │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ └── UseDeclarationSniff.php │ ├── Squiz │ │ └── Sniffs │ │ │ ├── Arrays │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ └── ArrayDeclarationSniff.php │ │ │ ├── CSS │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ ├── ColonSpacingSniff.php │ │ │ ├── ColourDefinitionSniff.php │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ ├── ForbiddenStylesSniff.php │ │ │ ├── IndentationSniff.php │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ ├── MissingColonSniff.php │ │ │ ├── NamedColoursSniff.php │ │ │ ├── OpacitySniff.php │ │ │ ├── SemicolonSpacingSniff.php │ │ │ └── ShorthandSizeSniff.php │ │ │ ├── Classes │ │ │ ├── ClassDeclarationSniff.php │ │ │ ├── ClassFileNameSniff.php │ │ │ ├── DuplicatePropertySniff.php │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ └── ValidClassNameSniff.php │ │ │ ├── Commenting │ │ │ ├── BlockCommentSniff.php │ │ │ ├── ClassCommentSniff.php │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ ├── FileCommentSniff.php │ │ │ ├── FunctionCommentSniff.php │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ ├── InlineCommentSniff.php │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ ├── PostStatementCommentSniff.php │ │ │ └── VariableCommentSniff.php │ │ │ ├── ControlStructures │ │ │ ├── ControlSignatureSniff.php │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ └── SwitchDeclarationSniff.php │ │ │ ├── Debug │ │ │ ├── JSLintSniff.php │ │ │ └── JavaScriptLintSniff.php │ │ │ ├── Files │ │ │ └── FileExtensionSniff.php │ │ │ ├── Formatting │ │ │ └── OperatorBracketSniff.php │ │ │ ├── Functions │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ ├── FunctionDeclarationSniff.php │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ ├── GlobalFunctionSniff.php │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ ├── NamingConventions │ │ │ ├── ValidFunctionNameSniff.php │ │ │ └── ValidVariableNameSniff.php │ │ │ ├── Objects │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ ├── ObjectInstantiationSniff.php │ │ │ └── ObjectMemberCommaSniff.php │ │ │ ├── Operators │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ ├── PHP │ │ │ ├── CommentedOutCodeSniff.php │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ ├── DisallowInlineIfSniff.php │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ ├── EmbeddedPhpSniff.php │ │ │ ├── EvalSniff.php │ │ │ ├── GlobalKeywordSniff.php │ │ │ ├── HeredocSniff.php │ │ │ ├── InnerFunctionsSniff.php │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ └── NonExecutableCodeSniff.php │ │ │ ├── Scope │ │ │ ├── MemberVarScopeSniff.php │ │ │ ├── MethodScopeSniff.php │ │ │ └── StaticThisUsageSniff.php │ │ │ ├── Strings │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ └── EchoedStringsSniff.php │ │ │ └── WhiteSpace │ │ │ ├── CastSpacingSniff.php │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ ├── FunctionSpacingSniff.php │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ ├── MemberVarSpacingSniff.php │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ ├── OperatorSpacingSniff.php │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ ├── SemicolonSpacingSniff.php │ │ │ └── SuperfluousWhitespaceSniff.php │ └── Zend │ │ └── Sniffs │ │ ├── Debug │ │ └── CodeAnalyzerSniff.php │ │ ├── Files │ │ └── ClosingTagSniff.php │ │ └── NamingConventions │ │ └── ValidVariableNameSniff.php │ ├── Tokenizers │ ├── CSS.php │ ├── Comment.php │ ├── JS.php │ ├── PHP.php │ └── Tokenizer.php │ └── Util │ ├── Cache.php │ ├── Common.php │ ├── Standards.php │ ├── Timing.php │ └── Tokens.php ├── symfony ├── cache-contracts │ ├── CacheInterface.php │ ├── CacheTrait.php │ ├── CallbackInterface.php │ ├── ItemInterface.php │ └── TagAwareCacheInterface.php ├── cache │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractTagAwareAdapter.php │ │ ├── AdapterInterface.php │ │ ├── ApcuAdapter.php │ │ ├── ArrayAdapter.php │ │ ├── ChainAdapter.php │ │ ├── DoctrineAdapter.php │ │ ├── FilesystemAdapter.php │ │ ├── FilesystemTagAwareAdapter.php │ │ ├── MemcachedAdapter.php │ │ ├── NullAdapter.php │ │ ├── PdoAdapter.php │ │ ├── PhpArrayAdapter.php │ │ ├── PhpFilesAdapter.php │ │ ├── ProxyAdapter.php │ │ ├── Psr16Adapter.php │ │ ├── RedisAdapter.php │ │ ├── RedisTagAwareAdapter.php │ │ ├── SimpleCacheAdapter.php │ │ ├── TagAwareAdapter.php │ │ ├── TagAwareAdapterInterface.php │ │ ├── TraceableAdapter.php │ │ └── TraceableTagAwareAdapter.php │ ├── CacheItem.php │ ├── DataCollector │ │ └── CacheDataCollector.php │ ├── DependencyInjection │ │ ├── CacheCollectorPass.php │ │ ├── CachePoolClearerPass.php │ │ ├── CachePoolPass.php │ │ └── CachePoolPrunerPass.php │ ├── DoctrineProvider.php │ ├── Exception │ │ ├── CacheException.php │ │ ├── InvalidArgumentException.php │ │ └── LogicException.php │ ├── LockRegistry.php │ ├── Marshaller │ │ ├── DefaultMarshaller.php │ │ └── MarshallerInterface.php │ ├── PruneableInterface.php │ ├── Psr16Cache.php │ ├── ResettableInterface.php │ ├── Simple │ │ ├── AbstractCache.php │ │ ├── ApcuCache.php │ │ ├── ArrayCache.php │ │ ├── ChainCache.php │ │ ├── DoctrineCache.php │ │ ├── FilesystemCache.php │ │ ├── MemcachedCache.php │ │ ├── NullCache.php │ │ ├── PdoCache.php │ │ ├── PhpArrayCache.php │ │ ├── PhpFilesCache.php │ │ ├── Psr6Cache.php │ │ ├── RedisCache.php │ │ └── TraceableCache.php │ └── Traits │ │ ├── AbstractAdapterTrait.php │ │ ├── AbstractTrait.php │ │ ├── ApcuTrait.php │ │ ├── ArrayTrait.php │ │ ├── ContractsTrait.php │ │ ├── DoctrineTrait.php │ │ ├── FilesystemCommonTrait.php │ │ ├── FilesystemTrait.php │ │ ├── MemcachedTrait.php │ │ ├── PdoTrait.php │ │ ├── PhpArrayTrait.php │ │ ├── PhpFilesTrait.php │ │ ├── ProxyTrait.php │ │ ├── RedisClusterProxy.php │ │ ├── RedisProxy.php │ │ └── RedisTrait.php ├── config │ ├── ConfigCache.php │ ├── ConfigCacheFactory.php │ ├── ConfigCacheFactoryInterface.php │ ├── ConfigCacheInterface.php │ ├── Definition │ │ ├── ArrayNode.php │ │ ├── BaseNode.php │ │ ├── BooleanNode.php │ │ ├── Builder │ │ │ ├── ArrayNodeDefinition.php │ │ │ ├── BooleanNodeDefinition.php │ │ │ ├── BuilderAwareInterface.php │ │ │ ├── EnumNodeDefinition.php │ │ │ ├── ExprBuilder.php │ │ │ ├── FloatNodeDefinition.php │ │ │ ├── IntegerNodeDefinition.php │ │ │ ├── MergeBuilder.php │ │ │ ├── NodeBuilder.php │ │ │ ├── NodeDefinition.php │ │ │ ├── NodeParentInterface.php │ │ │ ├── NormalizationBuilder.php │ │ │ ├── NumericNodeDefinition.php │ │ │ ├── ParentNodeDefinitionInterface.php │ │ │ ├── ScalarNodeDefinition.php │ │ │ ├── TreeBuilder.php │ │ │ ├── ValidationBuilder.php │ │ │ └── VariableNodeDefinition.php │ │ ├── ConfigurationInterface.php │ │ ├── Dumper │ │ │ ├── XmlReferenceDumper.php │ │ │ └── YamlReferenceDumper.php │ │ ├── EnumNode.php │ │ ├── Exception │ │ │ ├── DuplicateKeyException.php │ │ │ ├── Exception.php │ │ │ ├── ForbiddenOverwriteException.php │ │ │ ├── InvalidConfigurationException.php │ │ │ ├── InvalidDefinitionException.php │ │ │ ├── InvalidTypeException.php │ │ │ ├── TreeWithoutRootNodeException.php │ │ │ └── UnsetKeyException.php │ │ ├── FloatNode.php │ │ ├── IntegerNode.php │ │ ├── NodeInterface.php │ │ ├── NumericNode.php │ │ ├── Processor.php │ │ ├── PrototypeNodeInterface.php │ │ ├── PrototypedArrayNode.php │ │ ├── ScalarNode.php │ │ └── VariableNode.php │ ├── Exception │ │ ├── FileLoaderImportCircularReferenceException.php │ │ ├── FileLoaderLoadException.php │ │ ├── FileLocatorFileNotFoundException.php │ │ └── LoaderLoadException.php │ ├── FileLocator.php │ ├── FileLocatorInterface.php │ ├── Loader │ │ ├── DelegatingLoader.php │ │ ├── FileLoader.php │ │ ├── GlobFileLoader.php │ │ ├── Loader.php │ │ ├── LoaderInterface.php │ │ ├── LoaderResolver.php │ │ └── LoaderResolverInterface.php │ ├── Resource │ │ ├── ClassExistenceResource.php │ │ ├── ComposerResource.php │ │ ├── DirectoryResource.php │ │ ├── FileExistenceResource.php │ │ ├── FileResource.php │ │ ├── GlobResource.php │ │ ├── ReflectionClassResource.php │ │ ├── ResourceInterface.php │ │ ├── SelfCheckingResourceChecker.php │ │ └── SelfCheckingResourceInterface.php │ ├── ResourceCheckerConfigCache.php │ ├── ResourceCheckerConfigCacheFactory.php │ ├── ResourceCheckerInterface.php │ └── Util │ │ ├── Exception │ │ ├── InvalidXmlException.php │ │ └── XmlParsingException.php │ │ └── XmlUtils.php ├── console │ ├── Application.php │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ ├── ListCommand.php │ │ └── LockableTrait.php │ ├── CommandLoader │ │ ├── CommandLoaderInterface.php │ │ ├── ContainerCommandLoader.php │ │ └── FactoryCommandLoader.php │ ├── ConsoleEvents.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 │ │ └── ConsoleTerminateEvent.php │ ├── EventListener │ │ └── ErrorListener.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ ├── NamespaceNotFoundException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── 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 │ │ ├── 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 │ ├── Logger │ │ └── ConsoleLogger.php │ ├── Output │ │ ├── BufferedOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleOutputInterface.php │ │ ├── ConsoleSectionOutput.php │ │ ├── NullOutput.php │ │ ├── Output.php │ │ ├── OutputInterface.php │ │ └── StreamOutput.php │ ├── Question │ │ ├── ChoiceQuestion.php │ │ ├── ConfirmationQuestion.php │ │ └── Question.php │ ├── Resources │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Terminal.php │ └── Tester │ │ ├── ApplicationTester.php │ │ ├── CommandTester.php │ │ └── TesterTrait.php ├── debug │ ├── BufferingLogger.php │ ├── Debug.php │ ├── DebugClassLoader.php │ ├── ErrorHandler.php │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── FatalErrorException.php │ │ ├── FatalThrowableError.php │ │ ├── FlattenException.php │ │ ├── OutOfMemoryException.php │ │ ├── SilencedErrorContext.php │ │ ├── UndefinedFunctionException.php │ │ └── UndefinedMethodException.php │ ├── ExceptionHandler.php │ └── FatalErrorHandler │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ ├── FatalErrorHandlerInterface.php │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ └── UndefinedMethodFatalErrorHandler.php ├── dependency-injection │ ├── Alias.php │ ├── Argument │ │ ├── ArgumentInterface.php │ │ ├── BoundArgument.php │ │ ├── IteratorArgument.php │ │ ├── ReferenceSetArgumentTrait.php │ │ ├── RewindableGenerator.php │ │ ├── ServiceClosureArgument.php │ │ ├── ServiceLocator.php │ │ ├── ServiceLocatorArgument.php │ │ └── TaggedIteratorArgument.php │ ├── ChildDefinition.php │ ├── Compiler │ │ ├── AbstractRecursivePass.php │ │ ├── AnalyzeServiceReferencesPass.php │ │ ├── AutoAliasServicePass.php │ │ ├── AutowirePass.php │ │ ├── AutowireRequiredMethodsPass.php │ │ ├── CheckArgumentsValidityPass.php │ │ ├── CheckCircularReferencesPass.php │ │ ├── CheckDefinitionValidityPass.php │ │ ├── CheckExceptionOnInvalidReferenceBehaviorPass.php │ │ ├── CheckReferenceValidityPass.php │ │ ├── Compiler.php │ │ ├── CompilerPassInterface.php │ │ ├── DecoratorServicePass.php │ │ ├── DefinitionErrorExceptionPass.php │ │ ├── ExtensionCompilerPass.php │ │ ├── InlineServiceDefinitionsPass.php │ │ ├── MergeExtensionConfigurationPass.php │ │ ├── PassConfig.php │ │ ├── PriorityTaggedServiceTrait.php │ │ ├── RegisterEnvVarProcessorsPass.php │ │ ├── RegisterReverseContainerPass.php │ │ ├── RegisterServiceSubscribersPass.php │ │ ├── RemoveAbstractDefinitionsPass.php │ │ ├── RemovePrivateAliasesPass.php │ │ ├── RemoveUnusedDefinitionsPass.php │ │ ├── RepeatablePassInterface.php │ │ ├── RepeatedPass.php │ │ ├── ReplaceAliasByActualDefinitionPass.php │ │ ├── ResolveBindingsPass.php │ │ ├── ResolveChildDefinitionsPass.php │ │ ├── ResolveClassPass.php │ │ ├── ResolveEnvPlaceholdersPass.php │ │ ├── ResolveFactoryClassPass.php │ │ ├── ResolveHotPathPass.php │ │ ├── ResolveInstanceofConditionalsPass.php │ │ ├── ResolveInvalidReferencesPass.php │ │ ├── ResolveNamedArgumentsPass.php │ │ ├── ResolveParameterPlaceHoldersPass.php │ │ ├── ResolvePrivatesPass.php │ │ ├── ResolveReferencesToAliasesPass.php │ │ ├── ResolveServiceSubscribersPass.php │ │ ├── ResolveTaggedIteratorArgumentPass.php │ │ ├── ServiceLocatorTagPass.php │ │ ├── ServiceReferenceGraph.php │ │ ├── ServiceReferenceGraphEdge.php │ │ ├── ServiceReferenceGraphNode.php │ │ └── ValidateEnvPlaceholdersPass.php │ ├── Config │ │ ├── ContainerParametersResource.php │ │ └── ContainerParametersResourceChecker.php │ ├── Container.php │ ├── ContainerAwareInterface.php │ ├── ContainerAwareTrait.php │ ├── ContainerBuilder.php │ ├── ContainerInterface.php │ ├── Definition.php │ ├── Dumper │ │ ├── Dumper.php │ │ ├── DumperInterface.php │ │ ├── GraphvizDumper.php │ │ ├── PhpDumper.php │ │ ├── XmlDumper.php │ │ └── YamlDumper.php │ ├── EnvVarProcessor.php │ ├── EnvVarProcessorInterface.php │ ├── Exception │ │ ├── AutowiringFailedException.php │ │ ├── BadMethodCallException.php │ │ ├── EnvNotFoundException.php │ │ ├── EnvParameterException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── OutOfBoundsException.php │ │ ├── ParameterCircularReferenceException.php │ │ ├── ParameterNotFoundException.php │ │ ├── RuntimeException.php │ │ ├── ServiceCircularReferenceException.php │ │ └── ServiceNotFoundException.php │ ├── ExpressionLanguage.php │ ├── ExpressionLanguageProvider.php │ ├── Extension │ │ ├── ConfigurationExtensionInterface.php │ │ ├── Extension.php │ │ ├── ExtensionInterface.php │ │ └── PrependExtensionInterface.php │ ├── LazyProxy │ │ ├── Instantiator │ │ │ ├── InstantiatorInterface.php │ │ │ └── RealServiceInstantiator.php │ │ ├── PhpDumper │ │ │ ├── DumperInterface.php │ │ │ └── NullDumper.php │ │ └── ProxyHelper.php │ ├── Loader │ │ ├── ClosureLoader.php │ │ ├── Configurator │ │ │ ├── AbstractConfigurator.php │ │ │ ├── AbstractServiceConfigurator.php │ │ │ ├── AliasConfigurator.php │ │ │ ├── ContainerConfigurator.php │ │ │ ├── DefaultsConfigurator.php │ │ │ ├── InlineServiceConfigurator.php │ │ │ ├── InstanceofConfigurator.php │ │ │ ├── ParametersConfigurator.php │ │ │ ├── PrototypeConfigurator.php │ │ │ ├── ReferenceConfigurator.php │ │ │ ├── ServiceConfigurator.php │ │ │ ├── ServicesConfigurator.php │ │ │ └── Traits │ │ │ │ ├── AbstractTrait.php │ │ │ │ ├── ArgumentTrait.php │ │ │ │ ├── AutoconfigureTrait.php │ │ │ │ ├── AutowireTrait.php │ │ │ │ ├── BindTrait.php │ │ │ │ ├── CallTrait.php │ │ │ │ ├── ClassTrait.php │ │ │ │ ├── ConfiguratorTrait.php │ │ │ │ ├── DecorateTrait.php │ │ │ │ ├── DeprecateTrait.php │ │ │ │ ├── FactoryTrait.php │ │ │ │ ├── FileTrait.php │ │ │ │ ├── LazyTrait.php │ │ │ │ ├── ParentTrait.php │ │ │ │ ├── PropertyTrait.php │ │ │ │ ├── PublicTrait.php │ │ │ │ ├── ShareTrait.php │ │ │ │ ├── SyntheticTrait.php │ │ │ │ └── TagTrait.php │ │ ├── DirectoryLoader.php │ │ ├── FileLoader.php │ │ ├── GlobFileLoader.php │ │ ├── IniFileLoader.php │ │ ├── PhpFileLoader.php │ │ ├── XmlFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── dic │ │ │ └── services │ │ │ └── services-1.0.xsd │ ├── Parameter.php │ ├── ParameterBag │ │ ├── ContainerBag.php │ │ ├── ContainerBagInterface.php │ │ ├── EnvPlaceholderParameterBag.php │ │ ├── FrozenParameterBag.php │ │ ├── ParameterBag.php │ │ └── ParameterBagInterface.php │ ├── Reference.php │ ├── ResettableContainerInterface.php │ ├── ReverseContainer.php │ ├── ServiceLocator.php │ ├── ServiceSubscriberInterface.php │ ├── TaggedContainerInterface.php │ ├── TypedReference.php │ └── Variable.php ├── event-dispatcher-contracts │ ├── Event.php │ └── EventDispatcherInterface.php ├── event-dispatcher │ ├── Debug │ │ ├── TraceableEventDispatcher.php │ │ ├── TraceableEventDispatcherInterface.php │ │ └── WrappedListener.php │ ├── DependencyInjection │ │ └── RegisterListenersPass.php │ ├── Event.php │ ├── EventDispatcher.php │ ├── EventDispatcherInterface.php │ ├── EventSubscriberInterface.php │ ├── GenericEvent.php │ ├── ImmutableEventDispatcher.php │ ├── LegacyEventDispatcherProxy.php │ └── LegacyEventProxy.php ├── filesystem │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ ├── IOExceptionInterface.php │ │ └── InvalidArgumentException.php │ └── Filesystem.php ├── finder │ ├── Comparator │ │ ├── Comparator.php │ │ ├── DateComparator.php │ │ └── NumberComparator.php │ ├── Exception │ │ ├── AccessDeniedException.php │ │ └── DirectoryNotFoundException.php │ ├── Finder.php │ ├── Gitignore.php │ ├── Glob.php │ ├── Iterator │ │ ├── CustomFilterIterator.php │ │ ├── DateRangeFilterIterator.php │ │ ├── DepthRangeFilterIterator.php │ │ ├── ExcludeDirectoryFilterIterator.php │ │ ├── FileTypeFilterIterator.php │ │ ├── FilecontentFilterIterator.php │ │ ├── FilenameFilterIterator.php │ │ ├── MultiplePcreFilterIterator.php │ │ ├── PathFilterIterator.php │ │ ├── RecursiveDirectoryIterator.php │ │ ├── SizeRangeFilterIterator.php │ │ └── SortableIterator.php │ └── SplFileInfo.php ├── http-client-contracts │ ├── ChunkInterface.php │ ├── Exception │ │ ├── ClientExceptionInterface.php │ │ ├── DecodingExceptionInterface.php │ │ ├── ExceptionInterface.php │ │ ├── HttpExceptionInterface.php │ │ ├── RedirectionExceptionInterface.php │ │ ├── ServerExceptionInterface.php │ │ └── TransportExceptionInterface.php │ ├── HttpClientInterface.php │ ├── ResponseInterface.php │ └── ResponseStreamInterface.php ├── http-client │ ├── CachingHttpClient.php │ ├── Chunk │ │ ├── DataChunk.php │ │ ├── ErrorChunk.php │ │ ├── FirstChunk.php │ │ └── LastChunk.php │ ├── CurlHttpClient.php │ ├── Exception │ │ ├── ClientException.php │ │ ├── HttpExceptionTrait.php │ │ ├── InvalidArgumentException.php │ │ ├── JsonException.php │ │ ├── RedirectionException.php │ │ ├── ServerException.php │ │ └── TransportException.php │ ├── HttpClient.php │ ├── HttpClientTrait.php │ ├── HttpOptions.php │ ├── Internal │ │ ├── ClientState.php │ │ ├── CurlClientState.php │ │ ├── DnsCache.php │ │ ├── NativeClientState.php │ │ └── PushedResponse.php │ ├── MockHttpClient.php │ ├── NativeHttpClient.php │ ├── Psr18Client.php │ ├── Response │ │ ├── CurlResponse.php │ │ ├── MockResponse.php │ │ ├── NativeResponse.php │ │ ├── ResponseStream.php │ │ └── ResponseTrait.php │ └── ScopingHttpClient.php ├── http-foundation │ ├── AcceptHeader.php │ ├── AcceptHeaderItem.php │ ├── ApacheRequest.php │ ├── BinaryFileResponse.php │ ├── Cookie.php │ ├── Exception │ │ ├── ConflictingHeadersException.php │ │ ├── RequestExceptionInterface.php │ │ └── SuspiciousOperationException.php │ ├── ExpressionRequestMatcher.php │ ├── File │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ ├── CannotWriteFileException.php │ │ │ ├── ExtensionFileException.php │ │ │ ├── FileException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── FormSizeFileException.php │ │ │ ├── IniSizeFileException.php │ │ │ ├── NoFileException.php │ │ │ ├── NoTmpDirFileException.php │ │ │ ├── PartialFileException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ └── UploadException.php │ │ ├── File.php │ │ ├── MimeType │ │ │ ├── ExtensionGuesser.php │ │ │ ├── ExtensionGuesserInterface.php │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ ├── MimeTypeGuesser.php │ │ │ └── MimeTypeGuesserInterface.php │ │ ├── Stream.php │ │ └── UploadedFile.php │ ├── FileBag.php │ ├── HeaderBag.php │ ├── HeaderUtils.php │ ├── IpUtils.php │ ├── JsonResponse.php │ ├── ParameterBag.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── RequestMatcher.php │ ├── RequestMatcherInterface.php │ ├── RequestStack.php │ ├── Response.php │ ├── ResponseHeaderBag.php │ ├── ServerBag.php │ ├── Session │ │ ├── Attribute │ │ │ ├── AttributeBag.php │ │ │ ├── AttributeBagInterface.php │ │ │ └── NamespacedAttributeBag.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBag.php │ │ │ ├── FlashBag.php │ │ │ └── FlashBagInterface.php │ │ ├── Session.php │ │ ├── SessionBagInterface.php │ │ ├── SessionBagProxy.php │ │ ├── SessionInterface.php │ │ ├── SessionUtils.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── AbstractSessionHandler.php │ │ │ ├── MemcachedSessionHandler.php │ │ │ ├── MigratingSessionHandler.php │ │ │ ├── MongoDbSessionHandler.php │ │ │ ├── NativeFileSessionHandler.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── PdoSessionHandler.php │ │ │ ├── RedisSessionHandler.php │ │ │ └── StrictSessionHandler.php │ │ │ ├── MetadataBag.php │ │ │ ├── MockArraySessionStorage.php │ │ │ ├── MockFileSessionStorage.php │ │ │ ├── NativeSessionStorage.php │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxy.php │ │ │ └── SessionHandlerProxy.php │ │ │ └── SessionStorageInterface.php │ ├── StreamedResponse.php │ └── UrlHelper.php ├── http-kernel │ ├── Bundle │ │ ├── Bundle.php │ │ └── BundleInterface.php │ ├── CacheClearer │ │ ├── CacheClearerInterface.php │ │ ├── ChainCacheClearer.php │ │ └── Psr6CacheClearer.php │ ├── CacheWarmer │ │ ├── CacheWarmer.php │ │ ├── CacheWarmerAggregate.php │ │ ├── CacheWarmerInterface.php │ │ └── WarmableInterface.php │ ├── Client.php │ ├── Config │ │ └── FileLocator.php │ ├── Controller │ │ ├── ArgumentResolver.php │ │ ├── ArgumentResolver │ │ │ ├── DefaultValueResolver.php │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ ├── RequestAttributeValueResolver.php │ │ │ ├── RequestValueResolver.php │ │ │ ├── ServiceValueResolver.php │ │ │ ├── SessionValueResolver.php │ │ │ ├── TraceableValueResolver.php │ │ │ └── VariadicValueResolver.php │ │ ├── ArgumentResolverInterface.php │ │ ├── ArgumentValueResolverInterface.php │ │ ├── ContainerControllerResolver.php │ │ ├── ControllerReference.php │ │ ├── ControllerResolver.php │ │ ├── ControllerResolverInterface.php │ │ ├── TraceableArgumentResolver.php │ │ └── TraceableControllerResolver.php │ ├── ControllerMetadata │ │ ├── ArgumentMetadata.php │ │ ├── ArgumentMetadataFactory.php │ │ └── ArgumentMetadataFactoryInterface.php │ ├── DataCollector │ │ ├── AjaxDataCollector.php │ │ ├── ConfigDataCollector.php │ │ ├── DataCollector.php │ │ ├── DataCollectorInterface.php │ │ ├── DumpDataCollector.php │ │ ├── EventDataCollector.php │ │ ├── ExceptionDataCollector.php │ │ ├── LateDataCollectorInterface.php │ │ ├── LoggerDataCollector.php │ │ ├── MemoryDataCollector.php │ │ ├── RequestDataCollector.php │ │ ├── RouterDataCollector.php │ │ └── TimeDataCollector.php │ ├── Debug │ │ ├── FileLinkFormatter.php │ │ └── TraceableEventDispatcher.php │ ├── DependencyInjection │ │ ├── AddAnnotatedClassesToCachePass.php │ │ ├── ConfigurableExtension.php │ │ ├── ControllerArgumentValueResolverPass.php │ │ ├── Extension.php │ │ ├── FragmentRendererPass.php │ │ ├── LazyLoadingFragmentHandler.php │ │ ├── LoggerPass.php │ │ ├── MergeExtensionConfigurationPass.php │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ ├── RegisterLocaleAwareServicesPass.php │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ ├── ResettableServicePass.php │ │ └── ServicesResetter.php │ ├── Event │ │ ├── ControllerArgumentsEvent.php │ │ ├── ControllerEvent.php │ │ ├── ExceptionEvent.php │ │ ├── FilterControllerArgumentsEvent.php │ │ ├── FilterControllerEvent.php │ │ ├── FilterResponseEvent.php │ │ ├── FinishRequestEvent.php │ │ ├── GetResponseEvent.php │ │ ├── GetResponseForControllerResultEvent.php │ │ ├── GetResponseForExceptionEvent.php │ │ ├── KernelEvent.php │ │ ├── PostResponseEvent.php │ │ ├── RequestEvent.php │ │ ├── ResponseEvent.php │ │ ├── TerminateEvent.php │ │ └── ViewEvent.php │ ├── EventListener │ │ ├── AbstractSessionListener.php │ │ ├── AbstractTestSessionListener.php │ │ ├── AddRequestFormatsListener.php │ │ ├── DebugHandlersListener.php │ │ ├── DisallowRobotsIndexingListener.php │ │ ├── DumpListener.php │ │ ├── ExceptionListener.php │ │ ├── FragmentListener.php │ │ ├── LocaleAwareListener.php │ │ ├── LocaleListener.php │ │ ├── ProfilerListener.php │ │ ├── ResponseListener.php │ │ ├── RouterListener.php │ │ ├── SaveSessionListener.php │ │ ├── SessionListener.php │ │ ├── StreamedResponseListener.php │ │ ├── SurrogateListener.php │ │ ├── TestSessionListener.php │ │ ├── TranslatorListener.php │ │ └── ValidateRequestListener.php │ ├── Exception │ │ ├── AccessDeniedHttpException.php │ │ ├── BadRequestHttpException.php │ │ ├── ConflictHttpException.php │ │ ├── ControllerDoesNotReturnResponseException.php │ │ ├── GoneHttpException.php │ │ ├── HttpException.php │ │ ├── HttpExceptionInterface.php │ │ ├── LengthRequiredHttpException.php │ │ ├── MethodNotAllowedHttpException.php │ │ ├── NotAcceptableHttpException.php │ │ ├── NotFoundHttpException.php │ │ ├── PreconditionFailedHttpException.php │ │ ├── PreconditionRequiredHttpException.php │ │ ├── ServiceUnavailableHttpException.php │ │ ├── TooManyRequestsHttpException.php │ │ ├── UnauthorizedHttpException.php │ │ ├── UnprocessableEntityHttpException.php │ │ └── UnsupportedMediaTypeHttpException.php │ ├── Fragment │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ ├── EsiFragmentRenderer.php │ │ ├── FragmentHandler.php │ │ ├── FragmentRendererInterface.php │ │ ├── HIncludeFragmentRenderer.php │ │ ├── InlineFragmentRenderer.php │ │ ├── RoutableFragmentRenderer.php │ │ └── SsiFragmentRenderer.php │ ├── HttpCache │ │ ├── AbstractSurrogate.php │ │ ├── Esi.php │ │ ├── HttpCache.php │ │ ├── ResponseCacheStrategy.php │ │ ├── ResponseCacheStrategyInterface.php │ │ ├── Ssi.php │ │ ├── Store.php │ │ ├── StoreInterface.php │ │ ├── SubRequestHandler.php │ │ └── SurrogateInterface.php │ ├── HttpClientKernel.php │ ├── HttpKernel.php │ ├── HttpKernelBrowser.php │ ├── HttpKernelInterface.php │ ├── Kernel.php │ ├── KernelEvents.php │ ├── KernelInterface.php │ ├── Log │ │ ├── DebugLoggerInterface.php │ │ └── Logger.php │ ├── Profiler │ │ ├── FileProfilerStorage.php │ │ ├── Profile.php │ │ ├── Profiler.php │ │ └── ProfilerStorageInterface.php │ ├── RebootableInterface.php │ ├── Resources │ │ └── welcome.html.php │ ├── TerminableInterface.php │ └── UriSigner.php ├── mime │ ├── Address.php │ ├── BodyRendererInterface.php │ ├── CharacterStream.php │ ├── DependencyInjection │ │ └── AddMimeTypeGuesserPass.php │ ├── Email.php │ ├── Encoder │ │ ├── AddressEncoderInterface.php │ │ ├── Base64ContentEncoder.php │ │ ├── Base64Encoder.php │ │ ├── Base64MimeHeaderEncoder.php │ │ ├── ContentEncoderInterface.php │ │ ├── EightBitContentEncoder.php │ │ ├── EncoderInterface.php │ │ ├── IdnAddressEncoder.php │ │ ├── MimeHeaderEncoderInterface.php │ │ ├── QpContentEncoder.php │ │ ├── QpEncoder.php │ │ ├── QpMimeHeaderEncoder.php │ │ └── Rfc2231Encoder.php │ ├── Exception │ │ ├── AddressEncoderException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── RfcComplianceException.php │ │ └── RuntimeException.php │ ├── FileBinaryMimeTypeGuesser.php │ ├── FileinfoMimeTypeGuesser.php │ ├── Header │ │ ├── AbstractHeader.php │ │ ├── DateHeader.php │ │ ├── HeaderInterface.php │ │ ├── Headers.php │ │ ├── IdentificationHeader.php │ │ ├── MailboxHeader.php │ │ ├── MailboxListHeader.php │ │ ├── ParameterizedHeader.php │ │ ├── PathHeader.php │ │ └── UnstructuredHeader.php │ ├── Message.php │ ├── MessageConverter.php │ ├── MimeTypeGuesserInterface.php │ ├── MimeTypes.php │ ├── MimeTypesInterface.php │ ├── NamedAddress.php │ ├── Part │ │ ├── AbstractMultipartPart.php │ │ ├── AbstractPart.php │ │ ├── DataPart.php │ │ ├── MessagePart.php │ │ ├── Multipart │ │ │ ├── AlternativePart.php │ │ │ ├── DigestPart.php │ │ │ ├── FormDataPart.php │ │ │ ├── MixedPart.php │ │ │ └── RelatedPart.php │ │ └── TextPart.php │ ├── RawMessage.php │ └── Resources │ │ └── bin │ │ └── update_mime_types.php ├── options-resolver │ ├── Debug │ │ └── OptionsResolverIntrospector.php │ ├── Exception │ │ ├── AccessException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionsException.php │ │ ├── MissingOptionsException.php │ │ ├── NoConfigurationException.php │ │ ├── NoSuchOptionException.php │ │ ├── OptionDefinitionException.php │ │ └── UndefinedOptionsException.php │ ├── Options.php │ └── OptionsResolver.php ├── polyfill-ctype │ ├── Ctype.php │ └── bootstrap.php ├── polyfill-intl-idn │ ├── Idn.php │ └── bootstrap.php ├── polyfill-mbstring │ ├── Mbstring.php │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ └── bootstrap.php ├── polyfill-php70 │ ├── Php70.php │ ├── Resources │ │ └── stubs │ │ │ ├── ArithmeticError.php │ │ │ ├── AssertionError.php │ │ │ ├── DivisionByZeroError.php │ │ │ ├── Error.php │ │ │ ├── ParseError.php │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ └── TypeError.php │ └── bootstrap.php ├── polyfill-php72 │ ├── Php72.php │ └── bootstrap.php ├── polyfill-php73 │ ├── Php73.php │ ├── Resources │ │ └── stubs │ │ │ └── JsonException.php │ └── bootstrap.php ├── process │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── ProcessFailedException.php │ │ ├── ProcessSignaledException.php │ │ ├── ProcessTimedOutException.php │ │ └── RuntimeException.php │ ├── ExecutableFinder.php │ ├── InputStream.php │ ├── PhpExecutableFinder.php │ ├── PhpProcess.php │ ├── Pipes │ │ ├── AbstractPipes.php │ │ ├── PipesInterface.php │ │ ├── UnixPipes.php │ │ └── WindowsPipes.php │ ├── Process.php │ └── ProcessUtils.php ├── service-contracts │ ├── ResetInterface.php │ ├── ServiceLocatorTrait.php │ ├── ServiceProviderInterface.php │ ├── ServiceSubscriberInterface.php │ └── ServiceSubscriberTrait.php ├── stopwatch │ ├── Section.php │ ├── Stopwatch.php │ ├── StopwatchEvent.php │ └── StopwatchPeriod.php ├── var-exporter │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ExceptionInterface.php │ │ └── NotInstantiableTypeException.php │ ├── Instantiator.php │ ├── Internal │ │ ├── Exporter.php │ │ ├── Hydrator.php │ │ ├── Reference.php │ │ ├── Registry.php │ │ └── Values.php │ └── VarExporter.php └── yaml │ ├── Command │ └── LintCommand.php │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── Parser.php │ ├── Tag │ └── TaggedValue.php │ ├── Unescaper.php │ └── Yaml.php ├── symplify ├── coding-standard │ ├── packages │ │ └── TokenRunner │ │ │ └── src │ │ │ ├── Analyzer │ │ │ ├── FixerAnalyzer │ │ │ │ ├── BlockFinder.php │ │ │ │ ├── BlockInfo.php │ │ │ │ ├── DocBlockFinder.php │ │ │ │ ├── IndentDetector.php │ │ │ │ └── TokenSkipper.php │ │ │ └── SnifferAnalyzer │ │ │ │ ├── CognitiveComplexityAnalyzer.php │ │ │ │ └── Naming.php │ │ │ ├── Contract │ │ │ └── DocBlock │ │ │ │ └── MalformWorkerInterface.php │ │ │ ├── DocBlock │ │ │ ├── DocBlockManipulator.php │ │ │ └── MalformWorker │ │ │ │ ├── AbstractMalformWorker.php │ │ │ │ ├── DuplicatedArrayMalformWorker.php │ │ │ │ ├── InlineVarMalformWorker.php │ │ │ │ ├── InlineVariableDocBlockMalformWorker.php │ │ │ │ ├── MissingParamNameMalformWorker.php │ │ │ │ ├── ParamNameTypoMalformWorker.php │ │ │ │ ├── SuperfluousReturnNameMalformWorker.php │ │ │ │ ├── SuperfluousVarNameMalformWorker.php │ │ │ │ └── SwitchedTypeAndNameMalformWorker.php │ │ │ ├── DocBlockParser.php │ │ │ ├── Exception │ │ │ ├── MissingDocBlockException.php │ │ │ ├── MissingImplementationException.php │ │ │ ├── Testing │ │ │ │ └── UndesiredMethodException.php │ │ │ └── UnexpectedTokenException.php │ │ │ ├── Guard │ │ │ └── TokenTypeGuard.php │ │ │ ├── Naming │ │ │ └── Name │ │ │ │ ├── Name.php │ │ │ │ └── NameFactory.php │ │ │ ├── Transformer │ │ │ └── FixerTransformer │ │ │ │ ├── ClassElementSorter.php │ │ │ │ └── LineLengthTransformer.php │ │ │ └── Wrapper │ │ │ ├── FixerWrapper │ │ │ ├── AbstractVariableWrapper.php │ │ │ ├── ArgumentWrapper.php │ │ │ ├── ArgumentWrapperFactory.php │ │ │ ├── ArrayWrapper.php │ │ │ ├── ArrayWrapperFactory.php │ │ │ ├── FixerClassWrapper.php │ │ │ ├── FixerClassWrapperFactory.php │ │ │ ├── MethodWrapper.php │ │ │ ├── MethodWrapperFactory.php │ │ │ ├── PropertyAccessWrapper.php │ │ │ ├── PropertyAccessWrapperFactory.php │ │ │ ├── PropertyWrapper.php │ │ │ └── PropertyWrapperFactory.php │ │ │ └── SnifferWrapper │ │ │ ├── SniffClassWrapper.php │ │ │ └── SniffClassWrapperFactory.php │ └── src │ │ ├── Fixer │ │ ├── AbstractSymplifyFixer.php │ │ ├── ArrayNotation │ │ │ └── StandaloneLineInMultilineArrayFixer.php │ │ ├── Commenting │ │ │ ├── BlockPropertyCommentFixer.php │ │ │ ├── ParamReturnAndVarTagMalformsFixer.php │ │ │ ├── RemoveEmptyDocBlockFixer.php │ │ │ ├── RemoveEndOfFunctionCommentFixer.php │ │ │ └── RemoveSuperfluousDocBlockWhitespaceFixer.php │ │ ├── ControlStructure │ │ │ ├── PregDelimiterFixer.php │ │ │ └── RequireFollowedByAbsolutePathFixer.php │ │ ├── LineLength │ │ │ └── LineLengthFixer.php │ │ ├── Naming │ │ │ ├── CatchExceptionNameMatchingTypeFixer.php │ │ │ └── PropertyNameMatchingTypeFixer.php │ │ ├── Order │ │ │ ├── MethodOrderByTypeFixer.php │ │ │ ├── PrivateMethodOrderByUseFixer.php │ │ │ └── PropertyOrderByComplexityFixer.php │ │ ├── Php │ │ │ └── ClassStringToClassConstantFixer.php │ │ ├── Property │ │ │ ├── ArrayPropertyDefaultValueFixer.php │ │ │ └── BoolPropertyDefaultValueFixer.php │ │ ├── Solid │ │ │ └── FinalInterfaceFixer.php │ │ ├── Spacing │ │ │ └── RemoveSpacingAroundModifierAndConstFixer.php │ │ └── Strict │ │ │ └── BlankLineAfterStrictTypesFixer.php │ │ └── Sniffs │ │ ├── Architecture │ │ ├── DuplicatedClassShortNameSniff.php │ │ ├── ExplicitExceptionSniff.php │ │ └── PreferredClassSniff.php │ │ ├── CleanCode │ │ ├── CognitiveComplexitySniff.php │ │ ├── ForbiddenParentClassSniff.php │ │ ├── ForbiddenReferenceSniff.php │ │ └── ForbiddenStaticFunctionSniff.php │ │ ├── Commenting │ │ ├── AnnotationTypeExistsSniff.php │ │ └── VarConstantCommentSniff.php │ │ ├── ControlStructure │ │ ├── ForbiddenDoubleAssignSniff.php │ │ └── SprintfOverContactSniff.php │ │ ├── DeadCode │ │ └── UnusedPublicMethodSniff.php │ │ ├── Debug │ │ ├── CommentedOutCodeSniff.php │ │ └── DebugFunctionCallSniff.php │ │ ├── DependencyInjection │ │ └── NoClassInstantiationSniff.php │ │ └── Naming │ │ ├── AbstractClassNameSniff.php │ │ ├── ClassNameSuffixByParentSniff.php │ │ ├── InterfaceNameSniff.php │ │ └── TraitNameSniff.php ├── easy-coding-standard │ ├── bin │ │ └── ecs │ ├── packages │ │ ├── ChangedFilesDetector │ │ │ └── src │ │ │ │ ├── Cache │ │ │ │ └── Simple │ │ │ │ │ └── FilesystemCacheFactory.php │ │ │ │ ├── ChangedFilesDetector.php │ │ │ │ ├── CompilerPass │ │ │ │ └── AddSysGetTempDirParameterCompilerPass.php │ │ │ │ ├── Exception │ │ │ │ └── FileHashFailedException.php │ │ │ │ └── FileHashComputer.php │ │ ├── Configuration │ │ │ └── src │ │ │ │ ├── Configuration.php │ │ │ │ ├── Contract │ │ │ │ └── ResettableInterface.php │ │ │ │ ├── Exception │ │ │ │ ├── ConflictingCheckersLoadedException.php │ │ │ │ ├── NoCheckersLoadedException.php │ │ │ │ └── OutputFormatterNotFoundException.php │ │ │ │ └── Option.php │ │ ├── FixerRunner │ │ │ └── src │ │ │ │ ├── Application │ │ │ │ └── FixerFileProcessor.php │ │ │ │ ├── Exception │ │ │ │ └── Application │ │ │ │ │ └── FixerFailedException.php │ │ │ │ ├── Parser │ │ │ │ └── FileToTokensParser.php │ │ │ │ └── WhitespacesFixerConfigFactory.php │ │ └── SniffRunner │ │ │ └── src │ │ │ ├── Application │ │ │ └── SniffFileProcessor.php │ │ │ ├── Exception │ │ │ ├── ClassNotFoundException.php │ │ │ └── File │ │ │ │ ├── FileNotFoundException.php │ │ │ │ └── NotImplementedException.php │ │ │ ├── File │ │ │ ├── File.php │ │ │ └── FileFactory.php │ │ │ └── PHP_CodeSniffer │ │ │ └── FixerFactory.php │ └── src │ │ ├── Application │ │ ├── AppliedCheckersCollector.php │ │ ├── EasyCodingStandardApplication.php │ │ └── SingleFileProcessor.php │ │ ├── Console │ │ ├── Command │ │ │ ├── CheckCommand.php │ │ │ ├── FindCommand.php │ │ │ ├── ShowCommand.php │ │ │ └── ValidateCommand.php │ │ ├── EasyCodingStandardConsoleApplication.php │ │ ├── Output │ │ │ ├── JsonOutputFormatter.php │ │ │ ├── OutputFormatterCollector.php │ │ │ └── TableOutputFormatter.php │ │ └── Style │ │ │ ├── EasyCodingStandardStyle.php │ │ │ └── EasyCodingStandardStyleFactory.php │ │ ├── Contract │ │ ├── Application │ │ │ ├── DualRunAwareFileProcessorInterface.php │ │ │ ├── DualRunInterface.php │ │ │ ├── FileProcessorCollectorInterface.php │ │ │ └── FileProcessorInterface.php │ │ ├── Console │ │ │ └── Output │ │ │ │ └── OutputFormatterInterface.php │ │ └── Finder │ │ │ └── CustomSourceProviderInterface.php │ │ ├── DependencyInjection │ │ ├── CompilerPass │ │ │ ├── ConflictingCheckersCompilerPass.php │ │ │ ├── CustomSourceProviderDefinitionCompilerPass.php │ │ │ ├── FixerWhitespaceConfigCompilerPass.php │ │ │ ├── RemoveExcludedCheckersCompilerPass.php │ │ │ └── RemoveMutualCheckersCompilerPass.php │ │ └── DelegatingLoaderFactory.php │ │ ├── Error │ │ ├── Error.php │ │ ├── ErrorAndDiffCollector.php │ │ ├── ErrorFactory.php │ │ ├── ErrorSorter.php │ │ ├── FileDiff.php │ │ └── FileDiffFactory.php │ │ ├── Exception │ │ ├── Application │ │ │ └── MissingCheckersForChangedFileException.php │ │ ├── Configuration │ │ │ ├── FileNotFoundException.php │ │ │ ├── SourceNotFoundException.php │ │ │ └── WhitespaceConfigurationException.php │ │ ├── DependencyInjection │ │ │ └── Extension │ │ │ │ ├── FixerIsNotConfigurableException.php │ │ │ │ └── InvalidSniffPropertyException.php │ │ ├── Finder │ │ │ └── InvalidSourceTypeException.php │ │ └── Validator │ │ │ └── CheckerIsNotSupportedException.php │ │ ├── FileSystem │ │ ├── CachedFileLoader.php │ │ └── FileFilter.php │ │ ├── Finder │ │ ├── CheckerClassFinder.php │ │ └── SourceFinder.php │ │ ├── HttpKernel │ │ └── EasyCodingStandardKernel.php │ │ ├── Skipper.php │ │ └── Yaml │ │ ├── CheckerConfigurationGuardian.php │ │ ├── CheckerServiceParametersShifter.php │ │ └── FileLoader │ │ └── CheckerTolerantYamlFileLoader.php └── package-builder │ └── src │ ├── Composer │ └── VendorDirProvider.php │ ├── Configuration │ ├── ConfigFileFinder.php │ └── LevelFileFinder.php │ ├── Console │ ├── Command │ │ └── CommandNaming.php │ ├── HelpfulApplicationTrait.php │ ├── Input │ │ └── InputDetector.php │ ├── ShellCode.php │ └── Style │ │ └── SymfonyStyleFactory.php │ ├── Contract │ └── HttpKernel │ │ └── ExtraConfigAwareKernelInterface.php │ ├── DependencyInjection │ ├── CompilerPass │ │ ├── AutoBindParametersCompilerPass.php │ │ ├── AutoReturnFactoryCompilerPass.php │ │ ├── AutowireArrayParameterCompilerPass.php │ │ ├── AutowireInterfacesCompilerPass.php │ │ └── AutowireSinglyImplementedCompilerPass.php │ └── DefinitionFinder.php │ ├── EventSubscriber │ └── ParameterTypoProofreaderEventSubscriber.php │ ├── Exception │ ├── Configuration │ │ ├── FileNotFoundException.php │ │ └── LevelNotFoundException.php │ ├── DependencyInjection │ │ └── DefinitionForTypeNotFoundException.php │ ├── FilePathNotAbsoluteException.php │ ├── FileSystem │ │ ├── DirectoryNotFoundException.php │ │ └── FileNotFoundException.php │ ├── HttpKernel │ │ └── MissingInterfaceException.php │ ├── Parameter │ │ └── ParameterTypoException.php │ └── Yaml │ │ └── InvalidParametersValueException.php │ ├── FileSystem │ ├── FileGuard.php │ ├── FileSystem.php │ ├── FileSystemGuard.php │ ├── FinderSanitizer.php │ └── SmartFileInfo.php │ ├── Http │ └── BetterGuzzleClient.php │ ├── HttpKernel │ └── SimpleKernelTrait.php │ ├── Parameter │ ├── ParameterProvider.php │ └── ParameterTypoProofreader.php │ ├── Php │ └── TypeAnalyzer.php │ ├── Reflection │ ├── PrivatesAccessor.php │ └── PrivatesCaller.php │ ├── Strings │ └── StringFormatConverter.php │ ├── Types │ └── ClassLikeExistenceChecker.php │ └── Yaml │ ├── FileLoader │ ├── AbstractParameterImportsYamlFileLoader.php │ ├── AbstractParameterMergingYamlFileLoader.php │ ├── ParameterImportsYamlFileLoader.php │ └── ParameterMergingYamlFileLoader.php │ ├── ParameterInImportResolver.php │ ├── ParameterMergingYamlLoader.php │ └── ParametersMerger.php ├── theseer ├── fdomdocument │ ├── fDOMDocument.spec │ └── src │ │ ├── XPathQuery.php │ │ ├── XPathQueryException.php │ │ ├── autoload.php │ │ ├── css │ │ ├── DollarEqualRule.php │ │ ├── NotRule.php │ │ ├── NthChildRule.php │ │ ├── RegexRule.php │ │ ├── RuleInterface.php │ │ └── Translator.php │ │ ├── fDOMDocument.php │ │ ├── fDOMDocumentFragment.php │ │ ├── fDOMElement.php │ │ ├── fDOMException.php │ │ ├── fDOMNode.php │ │ └── fDOMXPath.php └── tokenizer │ └── src │ ├── Exception.php │ ├── NamespaceUri.php │ ├── NamespaceUriException.php │ ├── Token.php │ ├── TokenCollection.php │ ├── TokenCollectionException.php │ ├── Tokenizer.php │ └── XMLSerializer.php └── webmozart └── assert └── src └── Assert.php /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.php] 13 | indent_size = 4 14 | 15 | [*.md,*.txt] 16 | trim_trailing_whitespace = false 17 | insert_final_newline = false 18 | 19 | [composer.json] 20 | indent_size = 4 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS files 2 | .DS_Store 3 | 4 | tests/ 5 | classes/PageGenerator.php 6 | # files of Composer dependencies that are not needed for the plugin 7 | /vendor/**/.* 8 | /vendor/**/*.json 9 | /vendor/**/*.txt 10 | /vendor/**/*.md 11 | /vendor/**/*.yml 12 | /vendor/**/*.yaml 13 | /vendor/**/*.xml 14 | /vendor/**/*.dist 15 | /vendor/**/readme.php 16 | /vendor/**/LICENSE 17 | /vendor/**/COPYING 18 | /vendor/**/VERSION 19 | /vendor/**/docs/* 20 | /vendor/**/example/* 21 | /vendor/**/examples/* 22 | /vendor/**/test/* 23 | /vendor/**/tests/* 24 | /vendor/**/php4/* 25 | /vendor/getkirby/composer-installer 26 | -------------------------------------------------------------------------------- /assets/css/index.css: -------------------------------------------------------------------------------- 1 | .kirby-spreadsheet { 2 | border: 1px solid #efefef; 3 | border-radius: 1px; 4 | border-spacing: 0; 5 | overflow: hidden; 6 | width: 100%; 7 | margin-bottom: 1.5rem; 8 | } 9 | 10 | .kirby-spreadsheet tr:nth-child(odd) td { 11 | background: #efefef; 12 | } 13 | .kirby-spreadsheet td, 14 | .kirby-spreadsheet th { 15 | border-bottom: 1px solid #efefef; 16 | font-size: .875rem; 17 | line-height: 1.5; 18 | padding: .5rem .75rem; 19 | text-align: left; 20 | vertical-align: top; 21 | } 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kirby3-spreadsheet", 3 | "description": "Kirby 3 plugin to include spreadsheet files as tables in Kirby textarea fields", 4 | "author": "Sonja Broda ", 5 | "license": "MIT", 6 | "version": "1.2.0", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/texnixe/kirby3-spreadsheet" 10 | }, 11 | "type": "kirby-plugin" 12 | } 13 | -------------------------------------------------------------------------------- /snippets/spreadsheet-table.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next()): ?> 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | -------------------------------------------------------------------------------- /tests/SpreadsheetTest.php: -------------------------------------------------------------------------------- 1 | render(); -------------------------------------------------------------------------------- /tests/content/home/home.txt: -------------------------------------------------------------------------------- 1 | Title: Home -------------------------------------------------------------------------------- /tests/site/plugins/kirby3-spreadsheet/index.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\EventDispatcher; 14 | 15 | /** 16 | * @author Jordi Boggiano 17 | */ 18 | class ScriptExecutionException extends \RuntimeException 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Exception/NoSslException.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Exception; 14 | 15 | /** 16 | * @author Jordi Boggiano 17 | */ 18 | class NoSslException extends \RuntimeException 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Plugin\Capability; 14 | 15 | /** 16 | * Marker interface for Plugin capabilities. 17 | * Every new Capability which is added to the Plugin API must implement this interface. 18 | * 19 | * @api 20 | */ 21 | interface Capability 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Repository; 14 | 15 | /** 16 | * Configurable repository interface. 17 | * 18 | * @author Lukas Homza 19 | */ 20 | interface ConfigurableRepositoryInterface 21 | { 22 | public function getRepoConfig(); 23 | } 24 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Repository; 14 | 15 | /** 16 | * Exception thrown when a package repository is utterly broken 17 | * 18 | * @author Jordi Boggiano 19 | */ 20 | class InvalidRepositoryException extends \Exception 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Repository; 14 | 15 | /** 16 | * Thrown when a security problem, like a broken or missing signature 17 | * 18 | * @author Eric Daspet 19 | */ 20 | class RepositorySecurityException extends \Exception 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Script/CommandEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Script; 14 | 15 | /** 16 | * The Command Event. 17 | * 18 | * @deprecated use Composer\Script\Event instead 19 | */ 20 | class CommandEvent extends Event 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/composer/composer/src/Composer/Script/PackageEvent.php: -------------------------------------------------------------------------------- 1 | 7 | * Jordi Boggiano 8 | * 9 | * For the full copyright and license information, please view the LICENSE 10 | * file that was distributed with this source code. 11 | */ 12 | 13 | namespace Composer\Script; 14 | 15 | use Composer\Installer\PackageEvent as BasePackageEvent; 16 | 17 | /** 18 | * The Package Event. 19 | * 20 | * @deprecated Use Composer\Installer\PackageEvent instead 21 | */ 22 | class PackageEvent extends BasePackageEvent 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | PhpCsFixer\Console\Application::VERSION, 8 | 'vnumber' => 'v'.PhpCsFixer\Console\Application::VERSION, 9 | 'codename' => PhpCsFixer\Console\Application::VERSION_CODENAME, 10 | ]; 11 | 12 | echo json_encode([ 13 | 'version' => $version, 14 | ], JSON_PRETTY_PRINT); 15 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php: -------------------------------------------------------------------------------- 1 | 7 | * Dariusz Rumiński 8 | * 9 | * This source file is subject to the MIT license that is bundled 10 | * with this source code in the file LICENSE. 11 | */ 12 | 13 | namespace PhpCsFixer\Console\Output; 14 | 15 | /** 16 | * @internal 17 | */ 18 | final class NullOutput implements ProcessOutputInterface 19 | { 20 | public function printLegend() 21 | { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * Dariusz Rumiński 8 | * 9 | * This source file is subject to the MIT license that is bundled 10 | * with this source code in the file LICENSE. 11 | */ 12 | 13 | namespace PhpCsFixer\Console\Output; 14 | 15 | /** 16 | * @internal 17 | */ 18 | interface ProcessOutputInterface 19 | { 20 | public function printLegend(); 21 | } 22 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * Dariusz Rumiński 8 | * 9 | * This source file is subject to the MIT license that is bundled 10 | * with this source code in the file LICENSE. 11 | */ 12 | 13 | namespace PhpCsFixer\Console\SelfUpdate; 14 | 15 | /** 16 | * @internal 17 | */ 18 | interface GithubClientInterface 19 | { 20 | /** 21 | * @return array 22 | */ 23 | public function getTags(); 24 | } 25 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * Dariusz Rumiński 8 | * 9 | * This source file is subject to the MIT license that is bundled 10 | * with this source code in the file LICENSE. 11 | */ 12 | 13 | namespace PhpCsFixer\FixerConfiguration; 14 | 15 | interface DeprecatedFixerOptionInterface extends FixerOptionInterface 16 | { 17 | /** 18 | * @return string 19 | */ 20 | public function getDeprecationMessage(); 21 | } 22 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php: -------------------------------------------------------------------------------- 1 | 7 | * Dariusz Rumiński 8 | * 9 | * This source file is subject to the MIT license that is bundled 10 | * with this source code in the file LICENSE. 11 | */ 12 | 13 | namespace PhpCsFixer\Linter; 14 | 15 | /** 16 | * @author Dariusz Rumiński 17 | */ 18 | class LintingException extends \RuntimeException 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/src/PregException.php: -------------------------------------------------------------------------------- 1 | 7 | * Dariusz Rumiński 8 | * 9 | * This source file is subject to the MIT license that is bundled 10 | * with this source code in the file LICENSE. 11 | */ 12 | 13 | namespace PhpCsFixer; 14 | 15 | /** 16 | * Exception that is thrown when PCRE function encounters an error. 17 | * 18 | * @author Kuba Werłos 19 | * 20 | * @internal 21 | */ 22 | final class PregException extends \RuntimeException 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /vendor/jean85/pretty-package-versions/src/PrettyVersions.php: -------------------------------------------------------------------------------- 1 | check($data, (object) array('$ref' => 'file://' . realpath('schema.json'))); 10 | 11 | if ($validator->isValid()) { 12 | echo "The supplied JSON validates against the schema.\n"; 13 | } else { 14 | echo "JSON does not validate. Violations:\n"; 15 | foreach ($validator->getErrors() as $error) { 16 | echo sprintf("[%s] %s\n", $error['property'], $error['message']); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | class UnresolvableJsonPointerException extends InvalidArgumentException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php: -------------------------------------------------------------------------------- 1 | value = $value; 20 | } 21 | 22 | /** 23 | * {@inheritdoc} 24 | */ 25 | public function getValue() : string 26 | { 27 | return $this->value; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/league/container/src/Argument/ClassNameInterface.php: -------------------------------------------------------------------------------- 1 | value = $value; 20 | } 21 | 22 | /** 23 | * {@inheritdoc} 24 | */ 25 | public function getValue() 26 | { 27 | return $this->value; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/league/container/src/Argument/RawArgumentInterface.php: -------------------------------------------------------------------------------- 1 | __load(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | setAccessible(true); 22 | $reflectionProperty->setValue($object, null); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/nette/utils/src/Utils/IHtmlString.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | public function getDetails(): array; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/nunomaduro/phpinsights/src/Domain/Contracts/HasInsights.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | public function getInsights(): array; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/nunomaduro/phpinsights/src/Domain/Contracts/HasMax.php: -------------------------------------------------------------------------------- 1 | collector->getPrivateMethods() > 0; 12 | } 13 | 14 | public function getTitle(): string 15 | { 16 | return (string) ($this->config['title'] ?? 'The use of `private` methods is prohibited'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/nunomaduro/phpinsights/src/Domain/Insights/ForbiddenUsingGlobals.php: -------------------------------------------------------------------------------- 1 | collector->getGlobalAccesses(); 12 | } 13 | 14 | public function getTitle(): string 15 | { 16 | return 'The usage of globals is prohibited - Consider relying in abstractions'; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/nunomaduro/phpinsights/src/Domain/Metrics/Security/Security.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | interface Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class InvalidApplicationNameException extends \InvalidArgumentException implements Exception { 14 | const NotAString = 1; 15 | const InvalidFormat = 2; 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class InvalidEmailException extends \InvalidArgumentException implements Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class InvalidUrlException extends \InvalidArgumentException implements Exception { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class Application extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isApplication() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/values/Library.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class Library extends Type { 14 | /** 15 | * @return bool 16 | */ 17 | public function isLibrary() { 18 | return true; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/values/Requirement.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | interface Requirement { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/xml/AuthorElementCollection.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class AuthorElementCollection extends ElementCollection { 14 | public function current() { 15 | return new AuthorElement( 16 | $this->getCurrentElement() 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/xml/ComponentElementCollection.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class ComponentElementCollection extends ElementCollection { 14 | public function current() { 15 | return new ComponentElement( 16 | $this->getCurrentElement() 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/xml/ExtElement.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PharIo\Manifest; 12 | 13 | class ExtElement extends ManifestElement { 14 | public function getName() { 15 | return $this->getAttributeValue('name'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/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 | 11 | namespace PharIo\Manifest; 12 | 13 | class ExtElementCollection extends ElementCollection { 14 | public function current() { 15 | return new ExtElement( 16 | $this->getCurrentElement() 17 | ); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /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 | 11 | namespace PharIo\Manifest; 12 | 13 | class RequiresElement extends ManifestElement { 14 | public function getPHPElement() { 15 | return new PhpElement( 16 | $this->getChildByName('php') 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PhpCsFixer\Diff\v2_0; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PhpCsFixer\Diff\v2_0; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/php-cs-fixer/diff/src/v2_0/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 PhpCsFixer\Diff\v2_0\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); 19 | } 20 | -------------------------------------------------------------------------------- /vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PhpCsFixer\Diff\v3_0; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PhpCsFixer\Diff\v3_0; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/php-cs-fixer/diff/src/v3_0/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 | 11 | namespace PhpCsFixer\Diff\v3_0\Output; 12 | 13 | /** 14 | * Defines how an output builder should take a generated 15 | * diff array and return a string representation of that diff. 16 | */ 17 | interface DiffOutputBuilderInterface 18 | { 19 | public function getDiff(array $diff); 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texnixe/kirby3-spreadsheet/9fffe8886341640d4360ce3b7aa15413ac921e18/vendor/phpdocumentor/reflection-common/phpstan.neon -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php: -------------------------------------------------------------------------------- 1 | 9 | * @license http://www.opensource.org/licenses/mit-license.php MIT 10 | * @link http://phpdoc.org 11 | */ 12 | 13 | namespace phpDocumentor\Reflection\DocBlock\Tags\Factory; 14 | 15 | interface StaticMethod 16 | { 17 | public static function create($body); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php: -------------------------------------------------------------------------------- 1 | 9 | * @license http://www.opensource.org/licenses/mit-license.php MIT 10 | * @link http://phpdoc.org 11 | */ 12 | 13 | namespace phpDocumentor\Reflection\DocBlock\Tags\Factory; 14 | 15 | interface Strategy 16 | { 17 | public function create($body); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | ignoreErrors: 3 | - 4 | message: '#Parameter \#1 \$types of class phpDocumentor\\Reflection\\Types\\Compound constructor expects array, array given\.#' 5 | path: %currentWorkingDirectory%/tests/unit/Types/CompoundTest.php 6 | - message: '#Parameter \#2 \$fileContents of method phpDocumentor\\Reflection\\Types\\ContextFactory::createForNamespace\(\) expects string, string|false given\.#' 7 | path: %currentWorkingDirectory%/tests/unit/Types/ContextFactoryTest.php 8 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/src/Type.php: -------------------------------------------------------------------------------- 1 | 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\PHPLOC; 11 | 12 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phploc/phploc/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\PHPLOC; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Doubler; 13 | 14 | /** 15 | * Core double interface. 16 | * All doubled classes will implement this one. 17 | * 18 | * @author Konstantin Kudryashov 19 | */ 20 | interface DoubleInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Doubler\Generator; 13 | 14 | /** 15 | * Reflection interface. 16 | * All reflected classes implement this interface. 17 | * 18 | * @author Konstantin Kudryashov 19 | */ 20 | interface ReflectionInterface 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Doubler; 13 | 14 | use RuntimeException; 15 | 16 | class DoubleException extends RuntimeException implements DoublerException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Doubler; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface DoublerException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Doubler; 13 | 14 | class InterfaceNotFoundException extends ClassNotFoundException 15 | { 16 | public function getInterfaceName() 17 | { 18 | return $this->getClassname(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Prediction; 13 | 14 | use Prophecy\Exception\Prophecy\MethodProphecyException; 15 | 16 | class NoCallsException extends MethodProphecyException implements PredictionException 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Prediction; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface PredictionException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php: -------------------------------------------------------------------------------- 1 | 6 | * Marcello Duarte 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Prophecy\Exception\Prophecy; 13 | 14 | use Prophecy\Exception\Exception; 15 | 16 | interface ProphecyException extends Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-param.peg: -------------------------------------------------------------------------------- 1 | PhpDocParam 2 | = AnnotationName Type IsVariadic? ParameterName Description? 3 | 4 | AnnotationName 5 | = '@param' 6 | 7 | IsVariaric 8 | = '...' 9 | 10 | ParameterName 11 | = '$' [a-zA-Z_\127-\255][a-zA-Z0-9_\127-\255]* 12 | 13 | Description 14 | = .+ # TODO: exclude EOL or another PhpDocTag start 15 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayNode.php: -------------------------------------------------------------------------------- 1 | items = $items; 17 | } 18 | 19 | 20 | public function __toString(): string 21 | { 22 | return '[' . implode(', ', $this->items) . ']'; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFalseNode.php: -------------------------------------------------------------------------------- 1 | value = $value; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->value; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php: -------------------------------------------------------------------------------- 1 | value = $value; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->value; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNode.php: -------------------------------------------------------------------------------- 1 | value = $value; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->value; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprTrueNode.php: -------------------------------------------------------------------------------- 1 | description = $description; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return trim($this->description); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/GenericTagValueNode.php: -------------------------------------------------------------------------------- 1 | value = $value; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->value; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocChildNode.php: -------------------------------------------------------------------------------- 1 | name = $name; 17 | $this->value = $value; 18 | } 19 | 20 | 21 | public function __toString(): string 22 | { 23 | return trim("{$this->name} {$this->value}"); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagValueNode.php: -------------------------------------------------------------------------------- 1 | text = $text; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->text; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeNode.php: -------------------------------------------------------------------------------- 1 | items = $items; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return 'array{' . implode(', ', $this->items) . '}'; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayTypeNode.php: -------------------------------------------------------------------------------- 1 | type = $type; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->type . '[]'; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/GenericTypeNode.php: -------------------------------------------------------------------------------- 1 | type = $type; 17 | $this->genericTypes = $genericTypes; 18 | } 19 | 20 | 21 | public function __toString(): string 22 | { 23 | return $this->type . '<' . implode(', ', $this->genericTypes) . '>'; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php: -------------------------------------------------------------------------------- 1 | name = $name; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return $this->name; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/IntersectionTypeNode.php: -------------------------------------------------------------------------------- 1 | types = $types; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return '(' . implode(' & ', $this->types) . ')'; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php: -------------------------------------------------------------------------------- 1 | type = $type; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return '?' . $this->type; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php: -------------------------------------------------------------------------------- 1 | types = $types; 14 | } 15 | 16 | 17 | public function __toString(): string 18 | { 19 | return '(' . implode(' | ', $this->types) . ')'; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception that is raised when covered code is not executed. 14 | */ 15 | final class CoveredCodeNotExecutedException extends RuntimeException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception interface for php-code-coverage component. 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | /** 13 | * Exception that is raised when @covers must be used but is not. 14 | */ 15 | final class MissingCoversAnnotationException extends RuntimeException 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texnixe/kirby3-spreadsheet/9fffe8886341640d4360ce3b7aa15413ac921e18/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css: -------------------------------------------------------------------------------- 1 | .octicon { 2 | display: inline-block; 3 | vertical-align: text-top; 4 | fill: currentColor; 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage\Report\Xml; 11 | 12 | final class Directory extends Node 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/src/Token/Util.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | final class PHP_Token_Util 12 | { 13 | public static function getClass($object): string 14 | { 15 | $parts = explode('\\', get_class($object)); 16 | 17 | return array_pop($parts); 18 | } 19 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface Exception extends \Throwable 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Constraint/SameSize.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Constraint; 11 | 12 | final class SameSize extends Count 13 | { 14 | public function __construct(iterable $expected) 15 | { 16 | parent::__construct($this->getCountOf($expected)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/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 | final class Deprecated extends Error 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Notice.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | final class Notice extends Error 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | final class Warning extends Error 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- 1 | 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 | final class UnexpectedValueException extends Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface IncompleteTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface Exception extends \Throwable 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php: -------------------------------------------------------------------------------- 1 | 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 IncompatibleReturnValueException extends \PHPUnit\Framework\Exception implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\MockObject; 11 | 12 | /** 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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /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 | public function generate(): string; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/SelfDescribing.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework; 11 | 12 | /** 13 | * @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 | -------------------------------------------------------------------------------- /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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | interface SkippedTest 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class Exception extends \RuntimeException implements \PHPUnit\Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterIncompleteTestHook extends TestHook 13 | { 14 | public function executeAfterIncompleteTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterLastTestHook extends Hook 13 | { 14 | public function executeAfterLastTest(): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterRiskyTestHook extends TestHook 13 | { 14 | public function executeAfterRiskyTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterSkippedTestHook extends TestHook 13 | { 14 | public function executeAfterSkippedTest(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterSuccessfulTestHook extends TestHook 13 | { 14 | public function executeAfterSuccessfulTest(string $test, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterTestErrorHook extends TestHook 13 | { 14 | public function executeAfterTestError(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterTestFailureHook extends TestHook 13 | { 14 | public function executeAfterTestFailure(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface AfterTestWarningHook extends TestHook 13 | { 14 | public function executeAfterTestWarning(string $test, string $message, float $time): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface BeforeFirstTestHook extends Hook 13 | { 14 | public function executeBeforeFirstTest(): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface BeforeTestHook extends TestHook 13 | { 14 | public function executeBeforeTest(string $test): void; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/Hook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface Hook 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Hook/TestHook.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Runner; 11 | 12 | interface TestHook extends Hook 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/TextUI/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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class Exception extends \RuntimeException implements \PHPUnit\Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /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 | /** 13 | * @internal This class is not covered by the backward compatibility promise for PHPUnit 14 | */ 15 | final class Exception extends \RuntimeException implements \PHPUnit\Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | eval('?>' . \file_get_contents('php://stdin')); 11 | -------------------------------------------------------------------------------- /vendor/psr/cache/src/CacheException.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/psr/simple-cache/src/CacheException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Diff; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/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 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector; 14 | 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace SebastianBergmann\ObjectReflector; 14 | 15 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | final class InvalidArgumentException extends \InvalidArgumentException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/sebastian/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 | interface Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.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 Seld\JsonLint; 13 | 14 | class Undefined 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sensiolabs/security-checker/SensioLabs/Security/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 5 | REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) 6 | REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 7 | 8 | if "%PHP_PEAR_PHP_BIN%" neq "" ( 9 | set PHPBIN=%PHP_PEAR_PHP_BIN% 10 | ) else set PHPBIN=php 11 | 12 | "%PHPBIN%" "%~dp0\phpcbf" %* 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/bin/phpcs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM PHP_CodeSniffer detects violations of a defined coding standard. 3 | REM 4 | REM @author Greg Sherwood 5 | REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) 6 | REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 7 | 8 | if "%PHP_PEAR_PHP_BIN%" neq "" ( 9 | set PHPBIN=%PHP_PEAR_PHP_BIN% 10 | ) else set PHPBIN=php 11 | 12 | "%PHPBIN%" "%~dp0\phpcs" %* 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | ignoreErrors: 3 | - 4 | message: '~^Undefined variable: \$phpCodeSnifferConfig$~' 5 | path: %currentWorkingDirectory%/src/Config.php 6 | 7 | dynamicConstantNames: 8 | - PHP_CODESNIFFER_IN_TESTS 9 | - PHP_CODESNIFFER_CBF 10 | - PHP_CODESNIFFER_VERBOSITY 11 | 12 | excludes_analyse: 13 | - */Tests/* 14 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) 7 | * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 8 | */ 9 | 10 | namespace PHP_CodeSniffer\Exceptions; 11 | 12 | class RuntimeException extends \RuntimeException 13 | { 14 | 15 | }//end class 16 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Exceptions/TokenizerException.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) 7 | * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 8 | */ 9 | 10 | namespace PHP_CodeSniffer\Exceptions; 11 | 12 | class TokenizerException extends \Exception 13 | { 14 | 15 | }//end class 16 | -------------------------------------------------------------------------------- /vendor/symfony/cache/PruneableInterface.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\Cache; 13 | 14 | /** 15 | * Interface extends psr-6 and psr-16 caches to allow for pruning (deletion) of all expired cache items. 16 | */ 17 | interface PruneableInterface 18 | { 19 | /** 20 | * @return bool 21 | */ 22 | public function prune(); 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/cache/ResettableInterface.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\Cache; 13 | 14 | use Symfony\Contracts\Service\ResetInterface; 15 | 16 | /** 17 | * Resets a pool's local state. 18 | */ 19 | interface ResettableInterface extends ResetInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Definition/Builder/NodeParentInterface.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\Config\Definition\Builder; 13 | 14 | /** 15 | * An interface that must be implemented by all node parents. 16 | * 17 | * @author Victor Berchet 18 | */ 19 | interface NodeParentInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Definition/Exception/Exception.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\Config\Definition\Exception; 13 | 14 | /** 15 | * Base exception for all configuration exceptions. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | class Exception extends \RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Definition/Exception/InvalidDefinitionException.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\Config\Definition\Exception; 13 | 14 | /** 15 | * Thrown when an error is detected in a node Definition. 16 | * 17 | * @author Victor Berchet 18 | */ 19 | class InvalidDefinitionException extends Exception 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Definition/Exception/InvalidTypeException.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\Config\Definition\Exception; 13 | 14 | /** 15 | * This exception is thrown if an invalid type is encountered. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | class InvalidTypeException extends InvalidConfigurationException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Definition/Exception/TreeWithoutRootNodeException.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\Config\Definition\Exception; 13 | 14 | /** 15 | * @author Roland Franssen 16 | * 17 | * @internal 18 | */ 19 | class TreeWithoutRootNodeException extends \RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Exception/LoaderLoadException.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\Config\Exception; 13 | 14 | /** 15 | * Exception class for when a resource cannot be loaded or imported. 16 | * 17 | * @author Ryan Weaver 18 | */ 19 | class LoaderLoadException extends FileLoaderLoadException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/config/Util/Exception/XmlParsingException.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\Config\Util\Exception; 13 | 14 | /** 15 | * Exception class for when XML cannot be parsed properly. 16 | * 17 | * @author Ole Rößner 18 | */ 19 | class XmlParsingException extends \InvalidArgumentException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 typed in the console. 16 | * 17 | * @author Jérôme Tamarelle 18 | */ 19 | class InvalidOptionException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texnixe/kirby3-spreadsheet/9fffe8886341640d4360ce3b7aa15413ac921e18/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /vendor/symfony/debug/Exception/OutOfMemoryException.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\Debug\Exception; 13 | 14 | /** 15 | * Out of memory exception. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | class OutOfMemoryException extends FatalErrorException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Exception/BadMethodCallException.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\DependencyInjection\Exception; 13 | 14 | /** 15 | * Base BadMethodCallException for Dependency Injection component. 16 | */ 17 | class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Exception/EnvNotFoundException.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\DependencyInjection\Exception; 13 | 14 | /** 15 | * This exception is thrown when an environment variable is not found. 16 | * 17 | * @author Nicolas Grekas 18 | */ 19 | class EnvNotFoundException extends InvalidArgumentException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/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\DependencyInjection\Exception; 13 | 14 | /** 15 | * Base LogicException for Dependency Injection component. 16 | */ 17 | class LogicException extends \LogicException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/Exception/OutOfBoundsException.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\DependencyInjection\Exception; 13 | 14 | /** 15 | * Base OutOfBoundsException for Dependency Injection component. 16 | */ 17 | class OutOfBoundsException extends \OutOfBoundsException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/dependency-injection/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\DependencyInjection\Exception; 13 | 14 | /** 15 | * Base RuntimeException for Dependency Injection component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/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\Filesystem\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/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\Filesystem\Exception; 13 | 14 | /** 15 | * @author Christian Flothmann 16 | */ 17 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/AccessDeniedException.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\Finder\Exception; 13 | 14 | /** 15 | * @author Jean-François Simon 16 | */ 17 | class AccessDeniedException extends \UnexpectedValueException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/DirectoryNotFoundException.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\Finder\Exception; 13 | 14 | /** 15 | * @author Andreas Erhard 16 | */ 17 | class DirectoryNotFoundException extends \InvalidArgumentException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/ClientExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When a 4xx response is returned. 16 | * 17 | * @author Nicolas Grekas 18 | * 19 | * @experimental in 1.1 20 | */ 21 | interface ClientExceptionInterface extends HttpExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * The base interface for all exceptions in the contract. 16 | * 17 | * @author Nicolas Grekas 18 | * 19 | * @experimental in 1.1 20 | */ 21 | interface ExceptionInterface extends \Throwable 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/ServerExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When a 5xx response is returned. 16 | * 17 | * @author Nicolas Grekas 18 | * 19 | * @experimental in 1.1 20 | */ 21 | interface ServerExceptionInterface extends HttpExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/http-client-contracts/Exception/TransportExceptionInterface.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\Contracts\HttpClient\Exception; 13 | 14 | /** 15 | * When any error happens at the transport level. 16 | * 17 | * @author Nicolas Grekas 18 | * 19 | * @experimental in 1.1 20 | */ 21 | interface TransportExceptionInterface extends ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Chunk/LastChunk.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\HttpClient\Chunk; 13 | 14 | /** 15 | * @author Nicolas Grekas 16 | * 17 | * @internal 18 | */ 19 | class LastChunk extends DataChunk 20 | { 21 | /** 22 | * {@inheritdoc} 23 | */ 24 | public function isLast(): bool 25 | { 26 | return true; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/symfony/http-client/Internal/ClientState.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\HttpClient\Internal; 13 | 14 | /** 15 | * Internal representation of the client state. 16 | * 17 | * @author Alexander M. Turek 18 | * 19 | * @internal 20 | */ 21 | class ClientState 22 | { 23 | public $handlesActivity = []; 24 | public $openHandles = []; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Exception/RequestExceptionInterface.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\HttpFoundation\Exception; 13 | 14 | /** 15 | * Interface for Request exceptions. 16 | * 17 | * Exceptions implementing this interface should trigger an HTTP 400 response in the application code. 18 | */ 19 | interface RequestExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/CannotWriteFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_CANT_WRITE error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class CannotWriteFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/ExtensionFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_EXTENSION error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class ExtensionFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/FileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an error occurred in the component File. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | class FileException extends \RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/FormSizeFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_FORM_SIZE error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class FormSizeFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/IniSizeFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_INI_SIZE error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class IniSizeFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/NoFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_NO_FILE error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class NoFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/NoTmpDirFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_NO_TMP_DIR error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class NoTmpDirFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/PartialFileException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an UPLOAD_ERR_PARTIAL error occurred with UploadedFile. 16 | * 17 | * @author Florent Mata 18 | */ 19 | class PartialFileException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/File/Exception/UploadException.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\HttpFoundation\File\Exception; 13 | 14 | /** 15 | * Thrown when an error occurred during file upload. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | class UploadException extends FileException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Event/FinishRequestEvent.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\HttpKernel\Event; 13 | 14 | /** 15 | * Triggered whenever a request is fully processed. 16 | * 17 | * @author Benjamin Eberlei 18 | */ 19 | class FinishRequestEvent extends KernelEvent 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/mime/BodyRendererInterface.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\Mime; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | interface BodyRendererInterface 20 | { 21 | public function render(Message $message): void; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/symfony/mime/Encoder/MimeHeaderEncoderInterface.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\Mime\Encoder; 13 | 14 | /** 15 | * @author Chris Corbyn 16 | * 17 | * @experimental in 4.3 18 | */ 19 | interface MimeHeaderEncoderInterface 20 | { 21 | /** 22 | * Get the MIME name of this content encoding scheme. 23 | */ 24 | public function getName(): string; 25 | } 26 | -------------------------------------------------------------------------------- /vendor/symfony/mime/Exception/AddressEncoderException.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\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | class AddressEncoderException extends RfcComplianceException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/mime/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\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/mime/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\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/mime/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\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | class LogicException extends \LogicException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/mime/Exception/RfcComplianceException.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\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | class RfcComplianceException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/mime/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\Mime\Exception; 13 | 14 | /** 15 | * @author Fabien Potencier 16 | * 17 | * @experimental in 4.3 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Marker interface for all exceptions thrown by the OptionsResolver component. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Thrown when an argument is invalid. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Exception/OptionDefinitionException.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\OptionsResolver\Exception; 13 | 14 | /** 15 | * Thrown when two lazy options have a cyclic dependency. 16 | * 17 | * @author Bernhard Schussek 18 | */ 19 | class OptionDefinitionException extends \LogicException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/Options.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\OptionsResolver; 13 | 14 | /** 15 | * Contains resolved option values. 16 | * 17 | * @author Bernhard Schussek 18 | * @author Tobias Schultze 19 | */ 20 | interface Options extends \ArrayAccess, \Countable 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.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 | class JsonException extends Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/process/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\Process\Exception; 13 | 14 | /** 15 | * Marker Interface for the Process Component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/process/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\Process\Exception; 13 | 14 | /** 15 | * InvalidArgumentException for the Process Component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/process/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\Process\Exception; 13 | 14 | /** 15 | * LogicException for the Process Component. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class LogicException extends \LogicException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/process/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\Process\Exception; 13 | 14 | /** 15 | * RuntimeException for the Process Component. 16 | * 17 | * @author Johannes M. Schmitt 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/var-exporter/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\VarExporter\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/var-exporter/Internal/Values.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\VarExporter\Internal; 13 | 14 | /** 15 | * @author Nicolas Grekas 16 | * 17 | * @internal 18 | */ 19 | class Values 20 | { 21 | public $values; 22 | 23 | public function __construct(array $values) 24 | { 25 | $this->values = $values; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Exception/DumpException.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\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during dumping. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class DumpException extends RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/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\Yaml\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | interface ExceptionInterface extends \Throwable 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/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\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during parsing. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symplify/coding-standard/packages/TokenRunner/src/Contract/DocBlock/MalformWorkerInterface.php: -------------------------------------------------------------------------------- 1 | changeNameWithTokenType($newName, T_VARIABLE); 10 | } 11 | 12 | protected function getNamePosition(): ?int 13 | { 14 | return $this->index; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symplify/coding-standard/packages/TokenRunner/src/Wrapper/FixerWrapper/PropertyAccessWrapper.php: -------------------------------------------------------------------------------- 1 | changeNameWithTokenType($newName, T_STRING); 10 | } 11 | 12 | protected function getNamePosition(): ?int 13 | { 14 | return $this->tokens->getNextMeaningfulToken($this->index + 1); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symplify/easy-coding-standard/packages/ChangedFilesDetector/src/Exception/FileHashFailedException.php: -------------------------------------------------------------------------------- 1 | enabled = true; 13 | 14 | return $fixer; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symplify/easy-coding-standard/src/Contract/Application/DualRunAwareFileProcessorInterface.php: -------------------------------------------------------------------------------- 1 | hasParameterOption(['--debug', '-v', '-vv', '-vvv']); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/symplify/package-builder/src/Console/ShellCode.php: -------------------------------------------------------------------------------- 1 |