@averay/codeformat 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +1 -1
- package/.php-cs-fixer.cache +1 -0
- package/.php-cs-fixer.php +9 -0
- package/.prettierrc.json +3 -1
- package/.stylelintignore +2 -0
- package/README.md +19 -5
- package/bin/codeformat.ts +26 -0
- package/bin/tools/eslint.ts +16 -0
- package/bin/tools/index.ts +5 -0
- package/bin/tools/phpCsFixer.ts +17 -0
- package/bin/tools/prettier.ts +20 -0
- package/bin/tools/stylelint.ts +16 -0
- package/bin/tools/tsc.ts +12 -0
- package/bin/utils/Cli.ts +77 -0
- package/bin/utils/Output.ts +30 -0
- package/bin/utils/ToolRunner.ts +60 -0
- package/bin/utils/filesystem.ts +16 -0
- package/bin/utils/runners.ts +10 -0
- package/bin/utils/types.ts +22 -0
- package/composer.json +6 -0
- package/composer.lock +3231 -0
- package/eslint.config.js +26 -0
- package/lib/cssPatterns.ts +7 -0
- package/package.json +34 -30
- package/rulesets/eslint/ruleset-shared.ts +9 -5
- package/rulesets/eslint/ruleset-typescript.ts +30 -17
- package/rulesets/php/ruleset-php-cs-fixer.php +93 -0
- package/rulesets/stylelint/ruleset-css.ts +21 -5
- package/rulesets/stylelint/ruleset-scss.ts +7 -8
- package/src/makeStylelintConfig.ts +13 -5
- package/src/php/PhpCsFixerConfig.php +27 -0
- package/{stylelint.config.cjs → stylelint.config.js} +2 -2
- package/vendor/autoload.php +22 -0
- package/vendor/bin/php-cs-fixer +119 -0
- package/vendor/clue/ndjson-react/.github/FUNDING.yml +2 -0
- package/vendor/clue/ndjson-react/CHANGELOG.md +75 -0
- package/vendor/clue/ndjson-react/LICENSE +21 -0
- package/vendor/clue/ndjson-react/README.md +365 -0
- package/vendor/clue/ndjson-react/composer.json +31 -0
- package/vendor/clue/ndjson-react/src/Decoder.php +166 -0
- package/vendor/clue/ndjson-react/src/Encoder.php +144 -0
- package/vendor/composer/ClassLoader.php +579 -0
- package/vendor/composer/InstalledVersions.php +396 -0
- package/vendor/composer/LICENSE +21 -0
- package/vendor/composer/autoload_classmap.php +34 -0
- package/vendor/composer/autoload_files.php +18 -0
- package/vendor/composer/autoload_namespaces.php +9 -0
- package/vendor/composer/autoload_psr4.php +42 -0
- package/vendor/composer/autoload_real.php +48 -0
- package/vendor/composer/autoload_static.php +247 -0
- package/vendor/composer/installed.json +3634 -0
- package/vendor/composer/installed.php +367 -0
- package/vendor/composer/pcre/LICENSE +19 -0
- package/vendor/composer/pcre/README.md +189 -0
- package/vendor/composer/pcre/composer.json +54 -0
- package/vendor/composer/pcre/extension.neon +22 -0
- package/vendor/composer/pcre/src/MatchAllResult.php +46 -0
- package/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php +46 -0
- package/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php +48 -0
- package/vendor/composer/pcre/src/MatchResult.php +39 -0
- package/vendor/composer/pcre/src/MatchStrictGroupsResult.php +39 -0
- package/vendor/composer/pcre/src/MatchWithOffsetsResult.php +41 -0
- package/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php +142 -0
- package/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php +70 -0
- package/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php +65 -0
- package/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php +119 -0
- package/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php +91 -0
- package/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php +112 -0
- package/vendor/composer/pcre/src/PcreException.php +55 -0
- package/vendor/composer/pcre/src/Preg.php +430 -0
- package/vendor/composer/pcre/src/Regex.php +176 -0
- package/vendor/composer/pcre/src/ReplaceResult.php +43 -0
- package/vendor/composer/pcre/src/UnexpectedNullMatchException.php +20 -0
- package/vendor/composer/semver/CHANGELOG.md +229 -0
- package/vendor/composer/semver/LICENSE +19 -0
- package/vendor/composer/semver/README.md +99 -0
- package/vendor/composer/semver/composer.json +59 -0
- package/vendor/composer/semver/src/Comparator.php +113 -0
- package/vendor/composer/semver/src/CompilingMatcher.php +94 -0
- package/vendor/composer/semver/src/Constraint/Bound.php +122 -0
- package/vendor/composer/semver/src/Constraint/Constraint.php +435 -0
- package/vendor/composer/semver/src/Constraint/ConstraintInterface.php +75 -0
- package/vendor/composer/semver/src/Constraint/MatchAllConstraint.php +85 -0
- package/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php +83 -0
- package/vendor/composer/semver/src/Constraint/MultiConstraint.php +325 -0
- package/vendor/composer/semver/src/Interval.php +98 -0
- package/vendor/composer/semver/src/Intervals.php +478 -0
- package/vendor/composer/semver/src/Semver.php +129 -0
- package/vendor/composer/semver/src/VersionParser.php +591 -0
- package/vendor/composer/xdebug-handler/CHANGELOG.md +143 -0
- package/vendor/composer/xdebug-handler/LICENSE +21 -0
- package/vendor/composer/xdebug-handler/README.md +305 -0
- package/vendor/composer/xdebug-handler/composer.json +44 -0
- package/vendor/composer/xdebug-handler/src/PhpConfig.php +91 -0
- package/vendor/composer/xdebug-handler/src/Process.php +119 -0
- package/vendor/composer/xdebug-handler/src/Status.php +222 -0
- package/vendor/composer/xdebug-handler/src/XdebugHandler.php +722 -0
- package/vendor/evenement/evenement/.gitattributes +7 -0
- package/vendor/evenement/evenement/LICENSE +19 -0
- package/vendor/evenement/evenement/README.md +64 -0
- package/vendor/evenement/evenement/composer.json +29 -0
- package/vendor/evenement/evenement/src/EventEmitter.php +17 -0
- package/vendor/evenement/evenement/src/EventEmitterInterface.php +22 -0
- package/vendor/evenement/evenement/src/EventEmitterTrait.php +154 -0
- package/vendor/fidry/cpu-core-counter/.envrc +5 -0
- package/vendor/fidry/cpu-core-counter/LICENSE.md +16 -0
- package/vendor/fidry/cpu-core-counter/README.md +138 -0
- package/vendor/fidry/cpu-core-counter/bin/diagnose.php +27 -0
- package/vendor/fidry/cpu-core-counter/bin/execute.php +21 -0
- package/vendor/fidry/cpu-core-counter/bin/trace.php +32 -0
- package/vendor/fidry/cpu-core-counter/composer.json +48 -0
- package/vendor/fidry/cpu-core-counter/src/CpuCoreCounter.php +268 -0
- package/vendor/fidry/cpu-core-counter/src/Diagnoser.php +101 -0
- package/vendor/fidry/cpu-core-counter/src/Executor/ProcOpenExecutor.php +56 -0
- package/vendor/fidry/cpu-core-counter/src/Executor/ProcessExecutor.php +22 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/CmiCmdletLogicalFinder.php +46 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/CmiCmdletPhysicalFinder.php +47 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/CpuCoreFinder.php +37 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/CpuInfoFinder.php +100 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/DummyCpuCoreFinder.php +57 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/EnvVariableFinder.php +69 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/FinderRegistry.php +91 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/HwLogicalFinder.php +33 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/HwPhysicalFinder.php +33 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/LscpuLogicalFinder.php +52 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/LscpuPhysicalFinder.php +66 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/NProcFinder.php +59 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/NProcessorFinder.php +32 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/NullCpuCoreFinder.php +35 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/OnlyInPowerShellFinder.php +62 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/OnlyOnOSFamilyFinder.php +113 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/ProcOpenBasedFinder.php +107 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/SkipOnOSFamilyFinder.php +113 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/WindowsRegistryLogicalFinder.php +51 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/WmicLogicalFinder.php +47 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/WmicPhysicalFinder.php +47 -0
- package/vendor/fidry/cpu-core-counter/src/Finder/_NProcessorFinder.php +32 -0
- package/vendor/fidry/cpu-core-counter/src/NumberOfCpuCoreNotFound.php +26 -0
- package/vendor/fidry/cpu-core-counter/src/ParallelisationResult.php +87 -0
- package/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +5983 -0
- package/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +103 -0
- package/vendor/friendsofphp/php-cs-fixer/LICENSE +19 -0
- package/vendor/friendsofphp/php-cs-fixer/README.md +88 -0
- package/vendor/friendsofphp/php-cs-fixer/UPGRADE-v3.md +162 -0
- package/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
- package/vendor/friendsofphp/php-cs-fixer/composer.json +210 -0
- package/vendor/friendsofphp/php-cs-fixer/feature-or-bug.rst +24 -0
- package/vendor/friendsofphp/php-cs-fixer/logo.md +3 -0
- package/vendor/friendsofphp/php-cs-fixer/logo.png +0 -0
- package/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +110 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +241 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +102 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +116 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +204 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocToTypeDeclarationFixer.php +314 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +105 -0
- package/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +106 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +151 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +35 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +29 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +51 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +23 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +143 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +184 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +29 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +33 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +100 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +38 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Config.php +267 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +162 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +36 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +45 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +212 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/CheckCommand.php +64 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +476 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +46 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DocumentationCommand.php +123 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +397 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +56 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListFilesCommand.php +91 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListSetsCommand.php +87 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +176 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/WorkerCommand.php +243 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +961 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +155 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/OutputContext.php +54 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/DotsOutput.php +124 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/NullOutput.php +29 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/PercentageBarOutput.php +78 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputFactory.php +63 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputInterface.php +27 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputType.php +37 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/CheckstyleReporter.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/GitlabReporter.php +96 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/JsonReporter.php +65 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/JunitReporter.php +145 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReportSummary.php +103 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReporterFactory.php +90 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReporterInterface.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/TextReporter.php +104 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/XmlReporter.php +136 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/JsonReporter.php +52 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReportSummary.php +48 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReporterFactory.php +89 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReporterInterface.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/TextReporter.php +51 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +69 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +26 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +102 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +37 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +85 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +26 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +46 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +26 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +47 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +319 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +250 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +128 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +102 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +66 -0
- package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TypeExpression.php +857 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/DocLexer.php +171 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +87 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +303 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Documentation/DocumentationLocator.php +82 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Documentation/FixerDocumentGenerator.php +415 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Documentation/RstUtils.php +45 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Documentation/RuleSetDocumentationGenerator.php +174 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +125 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +83 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Error/SourceExceptionFactory.php +62 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandler.php +58 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandlerException.php +22 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +70 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +100 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractIncrementOperatorFixer.php +58 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractPhpUnitFixer.php +278 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractShortOperatorFixer.php +264 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/ArrayPushFixer.php +207 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +149 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +193 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +180 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/ModernizeStrposFixer.php +338 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +337 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasLanguageConstructCallFixer.php +59 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +142 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +219 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +153 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +240 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +138 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +80 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +52 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +153 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +57 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ReturnToYieldFromFixer.php +105 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +97 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +150 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/YieldFromArrayToYieldsFixer.php +189 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/AttributeEmptyParenthesesFixer.php +136 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/GeneralAttributeRemoveFixer.php +142 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/OrderedAttributesFixer.php +274 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +268 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesPositionFixer.php +449 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/CurlyBracesPositionFixer.php +126 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +80 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NoMultipleStatementsPerLineFixer.php +111 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NoTrailingCommaInSinglelineFixer.php +162 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +191 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NumericLiteralSeparatorFixer.php +232 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/OctalNotationFixer.php +64 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/PsrAutoloadingFixer.php +291 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/SingleLineEmptyBodyFixer.php +83 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ClassReferenceNameCasingFixer.php +168 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +130 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/IntegerLiteralCaseFixer.php +62 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +107 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +92 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +202 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +89 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +58 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeTypeDeclarationCasingFixer.php +151 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +131 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +66 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +164 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +88 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +88 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +605 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +572 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +374 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +160 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +93 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +141 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +408 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +215 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +610 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +272 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedTraitsFixer.php +226 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedTypesFixer.php +453 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/PhpdocReadonlyClassCommentToKeywordFixer.php +129 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +168 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +200 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +224 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +241 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +116 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +214 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +146 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +230 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +543 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +89 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +162 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentSpacingFixer.php +110 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +178 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +50 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerTrait.php +124 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +307 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureBracesFixer.php +256 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureContinuationPositionFixer.php +157 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +98 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/EmptyLoopBodyFixer.php +139 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/EmptyLoopConditionFixer.php +202 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +244 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +366 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +100 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +51 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededBracesFixer.php +182 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +758 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +106 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +120 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SimplifiedIfReturnFixer.php +138 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +87 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +85 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchContinueToBreakFixer.php +240 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/TrailingCommaInMultilineFixer.php +237 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +758 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +28 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +114 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +132 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +320 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ExperimentalFixerInterface.php +20 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +79 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +224 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/DateTimeCreateFromFormatCallFixer.php +164 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +123 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +120 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +263 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +60 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +139 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/LambdaNotUsedImportFixer.php +350 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +510 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +420 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +176 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoTrailingCommaInSinglelineFunctionCallFixer.php +59 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +197 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUselessSprintfFixer.php +109 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +247 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +244 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToPropertyTypeFixer.php +296 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +249 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/RegularCallableCallFixer.php +256 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +132 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +159 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +130 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/UseArrowFunctionsFixer.php +181 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +256 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +987 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +726 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GroupImportFixer.php +369 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +90 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnneededImportAliasFixer.php +88 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +455 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +626 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +274 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +152 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Indentation.php +92 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/InternalFixerInterface.php +20 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordFixer.php +100 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +234 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +163 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +179 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +137 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareParenthesesFixer.php +56 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +129 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +186 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +82 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +311 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/GetClassToClassKeywordFixer.php +158 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +169 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +220 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NullableTypeDeclarationFixer.php +348 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SingleSpaceAfterConstructFixer.php +209 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SingleSpaceAroundConstructFixer.php +516 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +133 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +127 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLinesBeforeNamespaceFixer.php +242 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/CleanNamespaceFixer.php +108 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +95 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +230 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AssignNullCoalescingToCoalesceEqualFixer.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +961 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +160 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +179 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LongToShorthandOperatorFixer.php +140 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +103 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithParenthesesFixer.php +216 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoSpaceAroundDoubleColonFixer.php +73 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoUselessConcatOperatorFixer.php +375 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoUselessNullsafeOperatorFixer.php +73 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +68 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +62 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/OperatorLinebreakFixer.php +292 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +122 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +60 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +131 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToElvisOperatorFixer.php +217 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +224 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +118 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +92 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/EchoTagSyntaxFixer.php +273 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +123 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +68 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +59 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAssertNewNamesFixer.php +107 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAttributesFixer.php +620 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +210 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderMethodOrderFixer.php +288 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderNameFixer.php +199 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderReturnTypeFixer.php +120 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderStaticFixer.php +156 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +590 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +204 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +289 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +86 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +117 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +238 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +135 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +123 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +235 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +278 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +111 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +107 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +57 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +416 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +564 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +88 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +178 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +177 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocTagRenameFixer.php +213 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +110 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +84 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +756 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +289 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +506 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +123 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocArrayTypeFixer.php +92 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +141 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagNormalizerFixer.php +121 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +173 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocListTypeFixer.php +70 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +137 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +117 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +151 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderByValueFixer.php +225 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +223 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocParamOrderFixer.php +273 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +234 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +139 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +333 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +89 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +99 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTagCasingFixer.php +109 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTagTypeFixer.php +214 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +185 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +191 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +115 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +173 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +218 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +81 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +150 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +103 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +527 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +171 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +244 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +186 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +66 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +64 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +148 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +132 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +80 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +168 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +153 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +166 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocClosingMarkerFixer.php +205 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +107 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/MultilineStringToHeredocFixer.php +166 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoTrailingWhitespaceInStringFixer.php +100 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +96 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +122 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringImplicitBackslashesFixer.php +193 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLengthToEmptyFixer.php +322 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +197 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +379 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBetweenImportGroupsFixer.php +180 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypeDeclarationFixer.php +72 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +63 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +180 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +139 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +85 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +229 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +496 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +112 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +104 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +89 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +64 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SpacesInsideParenthesesFixer.php +223 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/StatementIndentationFixer.php +836 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/TypeDeclarationSpacesFixer.php +254 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/TypesSpacesFixer.php +173 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +25 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +78 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +65 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +74 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +20 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +152 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +146 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +126 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +43 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionSorter.php +37 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +49 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +28 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +56 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +25 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +37 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +54 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +23 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +23 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +248 -0
- package/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +32 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Hasher.php +38 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +90 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +56 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +49 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +35 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +24 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +26 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +46 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +86 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +58 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +48 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +26 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ParallelAwareConfigInterface.php +29 -0
- package/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +38 -0
- package/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Preg.php +215 -0
- package/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/AbstractMigrationSetDescription.php +38 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/AbstractRuleSetDescription.php +35 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/DeprecatedRuleSetDescriptionInterface.php +28 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSet.php +159 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSetDescriptionInterface.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSetInterface.php +49 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSets.php +72 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/DoctrineAnnotationSet.php +42 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS1x0RiskySet.php +44 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS1x0Set.php +44 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS2x0RiskySet.php +44 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS2x0Set.php +112 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCSRiskySet.php +40 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCSSet.php +40 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERRiskySet.php +52 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERSet.php +47 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP54MigrationSet.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP56MigrationRiskySet.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationRiskySet.php +39 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationSet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationRiskySet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationSet.php +32 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP73MigrationSet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationRiskySet.php +33 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationSet.php +33 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationRiskySet.php +40 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationSet.php +32 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP81MigrationSet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationRiskySet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationSet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP83MigrationSet.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP84MigrationSet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit100MigrationRiskySet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit30MigrationRiskySet.php +33 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit32MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit35MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit43MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit48MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit50MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit52MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit54MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit55MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit56MigrationRiskySet.php +37 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit57MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit60MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit75MigrationRiskySet.php +34 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit84MigrationRiskySet.php +35 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit91MigrationRiskySet.php +31 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12RiskySet.php +36 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12Set.php +123 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR1Set.php +36 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR2Set.php +104 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PhpCsFixerRiskySet.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PhpCsFixerSet.php +134 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/SymfonyRiskySet.php +78 -0
- package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/SymfonySet.php +241 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Event/AnalysisStarted.php +54 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Event/FileProcessed.php +75 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingFileIterator.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +108 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/LintingFileIterator.php +66 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/LintingResultAwareFileIteratorInterface.php +29 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelAction.php +35 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelConfig.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelConfigFactory.php +61 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelisationException.php +30 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/Process.php +189 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessFactory.php +111 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessIdentifier.php +55 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessPool.php +99 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/WorkerException.php +66 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +587 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Runner/RunnerConfig.php +64 -0
- package/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +173 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +40 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTypeTransformer.php +89 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/AlternativeSyntaxAnalyzer.php +121 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/AbstractControlCaseStructuresAnalysis.php +51 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +81 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/AttributeAnalysis.php +76 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/CaseAnalysis.php +45 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/DataProviderAnalysis.php +68 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/DefaultAnalysis.php +43 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/EnumAnalysis.php +46 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/MatchAnalysis.php +37 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +98 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +189 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +33 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/SwitchAnalysis.php +54 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +116 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +161 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/AttributeAnalyzer.php +211 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +59 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +87 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +370 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ControlCaseStructuresAnalyzer.php +312 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/DataProviderAnalyzer.php +115 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FullyQualifiedNameAnalyzer.php +103 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +281 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/GotoLabelAnalyzer.php +40 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +216 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +116 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/RangeAnalyzer.php +90 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ReferenceAnalyzer.php +49 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/SwitchAnalyzer.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/WhitespacesAnalyzer.php +52 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +112 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Processor/ImportProcessor.php +103 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +541 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1584 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +894 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +54 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/AttributeTransformer.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +80 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceTransformer.php +349 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +57 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ConstructorPromotionTransformer.php +71 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/DisjunctiveNormalFormTypeParenthesisTransformer.php +65 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/FirstClassCallableTransformer.php +49 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +72 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NameQualifiedTransformer.php +67 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamedArgumentTransformer.php +73 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +53 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +83 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +47 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +187 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +57 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +83 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeIntersectionTransformer.php +55 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +102 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +64 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +68 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +109 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +120 -0
- package/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +38 -0
- package/vendor/friendsofphp/php-cs-fixer/src/Utils.php +250 -0
- package/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +63 -0
- package/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +55 -0
- package/vendor/psr/container/LICENSE +21 -0
- package/vendor/psr/container/README.md +13 -0
- package/vendor/psr/container/composer.json +27 -0
- package/vendor/psr/container/src/ContainerExceptionInterface.php +12 -0
- package/vendor/psr/container/src/ContainerInterface.php +36 -0
- package/vendor/psr/container/src/NotFoundExceptionInterface.php +10 -0
- package/vendor/psr/event-dispatcher/.editorconfig +15 -0
- package/vendor/psr/event-dispatcher/LICENSE +21 -0
- package/vendor/psr/event-dispatcher/README.md +6 -0
- package/vendor/psr/event-dispatcher/composer.json +26 -0
- package/vendor/psr/event-dispatcher/src/EventDispatcherInterface.php +21 -0
- package/vendor/psr/event-dispatcher/src/ListenerProviderInterface.php +19 -0
- package/vendor/psr/event-dispatcher/src/StoppableEventInterface.php +26 -0
- package/vendor/psr/log/LICENSE +19 -0
- package/vendor/psr/log/README.md +58 -0
- package/vendor/psr/log/composer.json +26 -0
- package/vendor/psr/log/src/AbstractLogger.php +15 -0
- package/vendor/psr/log/src/InvalidArgumentException.php +7 -0
- package/vendor/psr/log/src/LogLevel.php +18 -0
- package/vendor/psr/log/src/LoggerAwareInterface.php +14 -0
- package/vendor/psr/log/src/LoggerAwareTrait.php +22 -0
- package/vendor/psr/log/src/LoggerInterface.php +98 -0
- package/vendor/psr/log/src/LoggerTrait.php +98 -0
- package/vendor/psr/log/src/NullLogger.php +26 -0
- package/vendor/react/cache/CHANGELOG.md +96 -0
- package/vendor/react/cache/LICENSE +21 -0
- package/vendor/react/cache/README.md +367 -0
- package/vendor/react/cache/composer.json +45 -0
- package/vendor/react/cache/src/ArrayCache.php +181 -0
- package/vendor/react/cache/src/CacheInterface.php +194 -0
- package/vendor/react/child-process/CHANGELOG.md +176 -0
- package/vendor/react/child-process/LICENSE +21 -0
- package/vendor/react/child-process/README.md +619 -0
- package/vendor/react/child-process/composer.json +49 -0
- package/vendor/react/child-process/src/Process.php +585 -0
- package/vendor/react/dns/CHANGELOG.md +452 -0
- package/vendor/react/dns/LICENSE +21 -0
- package/vendor/react/dns/README.md +453 -0
- package/vendor/react/dns/composer.json +49 -0
- package/vendor/react/dns/src/BadServerException.php +7 -0
- package/vendor/react/dns/src/Config/Config.php +137 -0
- package/vendor/react/dns/src/Config/HostsFile.php +153 -0
- package/vendor/react/dns/src/Model/Message.php +230 -0
- package/vendor/react/dns/src/Model/Record.php +153 -0
- package/vendor/react/dns/src/Protocol/BinaryDumper.php +199 -0
- package/vendor/react/dns/src/Protocol/Parser.php +356 -0
- package/vendor/react/dns/src/Query/CachingExecutor.php +88 -0
- package/vendor/react/dns/src/Query/CancellationException.php +7 -0
- package/vendor/react/dns/src/Query/CoopExecutor.php +91 -0
- package/vendor/react/dns/src/Query/ExecutorInterface.php +43 -0
- package/vendor/react/dns/src/Query/FallbackExecutor.php +49 -0
- package/vendor/react/dns/src/Query/HostsFileExecutor.php +89 -0
- package/vendor/react/dns/src/Query/Query.php +69 -0
- package/vendor/react/dns/src/Query/RetryExecutor.php +85 -0
- package/vendor/react/dns/src/Query/SelectiveTransportExecutor.php +85 -0
- package/vendor/react/dns/src/Query/TcpTransportExecutor.php +382 -0
- package/vendor/react/dns/src/Query/TimeoutException.php +7 -0
- package/vendor/react/dns/src/Query/TimeoutExecutor.php +78 -0
- package/vendor/react/dns/src/Query/UdpTransportExecutor.php +221 -0
- package/vendor/react/dns/src/RecordNotFoundException.php +7 -0
- package/vendor/react/dns/src/Resolver/Factory.php +226 -0
- package/vendor/react/dns/src/Resolver/Resolver.php +147 -0
- package/vendor/react/dns/src/Resolver/ResolverInterface.php +94 -0
- package/vendor/react/event-loop/CHANGELOG.md +468 -0
- package/vendor/react/event-loop/LICENSE +21 -0
- package/vendor/react/event-loop/README.md +930 -0
- package/vendor/react/event-loop/composer.json +47 -0
- package/vendor/react/event-loop/src/ExtEvLoop.php +253 -0
- package/vendor/react/event-loop/src/ExtEventLoop.php +275 -0
- package/vendor/react/event-loop/src/ExtLibevLoop.php +201 -0
- package/vendor/react/event-loop/src/ExtLibeventLoop.php +285 -0
- package/vendor/react/event-loop/src/ExtUvLoop.php +342 -0
- package/vendor/react/event-loop/src/Factory.php +75 -0
- package/vendor/react/event-loop/src/Loop.php +266 -0
- package/vendor/react/event-loop/src/LoopInterface.php +472 -0
- package/vendor/react/event-loop/src/SignalsHandler.php +63 -0
- package/vendor/react/event-loop/src/StreamSelectLoop.php +330 -0
- package/vendor/react/event-loop/src/Tick/FutureTickQueue.php +60 -0
- package/vendor/react/event-loop/src/Timer/Timer.php +55 -0
- package/vendor/react/event-loop/src/Timer/Timers.php +113 -0
- package/vendor/react/event-loop/src/TimerInterface.php +27 -0
- package/vendor/react/promise/CHANGELOG.md +156 -0
- package/vendor/react/promise/LICENSE +24 -0
- package/vendor/react/promise/README.md +722 -0
- package/vendor/react/promise/composer.json +57 -0
- package/vendor/react/promise/src/Deferred.php +52 -0
- package/vendor/react/promise/src/Exception/CompositeException.php +32 -0
- package/vendor/react/promise/src/Exception/LengthException.php +7 -0
- package/vendor/react/promise/src/Internal/CancellationQueue.php +64 -0
- package/vendor/react/promise/src/Internal/FulfilledPromise.php +89 -0
- package/vendor/react/promise/src/Internal/RejectedPromise.php +128 -0
- package/vendor/react/promise/src/Promise.php +303 -0
- package/vendor/react/promise/src/PromiseInterface.php +152 -0
- package/vendor/react/promise/src/functions.php +345 -0
- package/vendor/react/promise/src/functions_include.php +5 -0
- package/vendor/react/socket/CHANGELOG.md +785 -0
- package/vendor/react/socket/LICENSE +21 -0
- package/vendor/react/socket/README.md +1564 -0
- package/vendor/react/socket/composer.json +52 -0
- package/vendor/react/socket/src/Connection.php +183 -0
- package/vendor/react/socket/src/ConnectionInterface.php +119 -0
- package/vendor/react/socket/src/Connector.php +236 -0
- package/vendor/react/socket/src/ConnectorInterface.php +59 -0
- package/vendor/react/socket/src/DnsConnector.php +117 -0
- package/vendor/react/socket/src/FdServer.php +222 -0
- package/vendor/react/socket/src/FixedUriConnector.php +41 -0
- package/vendor/react/socket/src/HappyEyeBallsConnectionBuilder.php +334 -0
- package/vendor/react/socket/src/HappyEyeBallsConnector.php +80 -0
- package/vendor/react/socket/src/LimitingServer.php +203 -0
- package/vendor/react/socket/src/SecureConnector.php +132 -0
- package/vendor/react/socket/src/SecureServer.php +210 -0
- package/vendor/react/socket/src/Server.php +118 -0
- package/vendor/react/socket/src/ServerInterface.php +151 -0
- package/vendor/react/socket/src/SocketServer.php +215 -0
- package/vendor/react/socket/src/StreamEncryption.php +158 -0
- package/vendor/react/socket/src/TcpConnector.php +173 -0
- package/vendor/react/socket/src/TcpServer.php +262 -0
- package/vendor/react/socket/src/TimeoutConnector.php +79 -0
- package/vendor/react/socket/src/UnixConnector.php +58 -0
- package/vendor/react/socket/src/UnixServer.php +162 -0
- package/vendor/react/stream/CHANGELOG.md +460 -0
- package/vendor/react/stream/LICENSE +21 -0
- package/vendor/react/stream/README.md +1249 -0
- package/vendor/react/stream/composer.json +47 -0
- package/vendor/react/stream/src/CompositeStream.php +83 -0
- package/vendor/react/stream/src/DuplexResourceStream.php +240 -0
- package/vendor/react/stream/src/DuplexStreamInterface.php +39 -0
- package/vendor/react/stream/src/ReadableResourceStream.php +188 -0
- package/vendor/react/stream/src/ReadableStreamInterface.php +362 -0
- package/vendor/react/stream/src/ThroughStream.php +195 -0
- package/vendor/react/stream/src/Util.php +75 -0
- package/vendor/react/stream/src/WritableResourceStream.php +178 -0
- package/vendor/react/stream/src/WritableStreamInterface.php +347 -0
- package/vendor/sebastian/diff/ChangeLog.md +179 -0
- package/vendor/sebastian/diff/LICENSE +29 -0
- package/vendor/sebastian/diff/README.md +151 -0
- package/vendor/sebastian/diff/SECURITY.md +30 -0
- package/vendor/sebastian/diff/composer.json +51 -0
- package/vendor/sebastian/diff/src/Chunk.php +83 -0
- package/vendor/sebastian/diff/src/Diff.php +84 -0
- package/vendor/sebastian/diff/src/Differ.php +247 -0
- package/vendor/sebastian/diff/src/Exception/ConfigurationException.php +32 -0
- package/vendor/sebastian/diff/src/Exception/Exception.php +16 -0
- package/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php +14 -0
- package/vendor/sebastian/diff/src/Line.php +50 -0
- package/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php +18 -0
- package/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php +96 -0
- package/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php +54 -0
- package/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php +74 -0
- package/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php +19 -0
- package/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php +331 -0
- package/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php +261 -0
- package/vendor/sebastian/diff/src/Parser.php +116 -0
- package/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php +81 -0
- package/vendor/symfony/console/Application.php +1328 -0
- package/vendor/symfony/console/Attribute/Argument.php +110 -0
- package/vendor/symfony/console/Attribute/AsCommand.php +49 -0
- package/vendor/symfony/console/Attribute/Option.php +181 -0
- package/vendor/symfony/console/CHANGELOG.md +299 -0
- package/vendor/symfony/console/CI/GithubActionReporter.php +97 -0
- package/vendor/symfony/console/Color.php +133 -0
- package/vendor/symfony/console/Command/Command.php +700 -0
- package/vendor/symfony/console/Command/CompleteCommand.php +212 -0
- package/vendor/symfony/console/Command/DumpCompletionCommand.php +151 -0
- package/vendor/symfony/console/Command/HelpCommand.php +76 -0
- package/vendor/symfony/console/Command/InvokableCommand.php +157 -0
- package/vendor/symfony/console/Command/LazyCommand.php +206 -0
- package/vendor/symfony/console/Command/ListCommand.php +72 -0
- package/vendor/symfony/console/Command/LockableTrait.php +85 -0
- package/vendor/symfony/console/Command/SignalableCommandInterface.php +32 -0
- package/vendor/symfony/console/Command/TraceableCommand.php +365 -0
- package/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +38 -0
- package/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +52 -0
- package/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +52 -0
- package/vendor/symfony/console/Completion/CompletionInput.php +248 -0
- package/vendor/symfony/console/Completion/CompletionSuggestions.php +97 -0
- package/vendor/symfony/console/Completion/Output/BashCompletionOutput.php +33 -0
- package/vendor/symfony/console/Completion/Output/CompletionOutputInterface.php +25 -0
- package/vendor/symfony/console/Completion/Output/FishCompletionOutput.php +36 -0
- package/vendor/symfony/console/Completion/Output/ZshCompletionOutput.php +36 -0
- package/vendor/symfony/console/Completion/Suggestion.php +41 -0
- package/vendor/symfony/console/ConsoleEvents.php +72 -0
- package/vendor/symfony/console/Cursor.php +204 -0
- package/vendor/symfony/console/DataCollector/CommandDataCollector.php +238 -0
- package/vendor/symfony/console/Debug/CliRequest.php +70 -0
- package/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +155 -0
- package/vendor/symfony/console/Descriptor/ApplicationDescription.php +136 -0
- package/vendor/symfony/console/Descriptor/Descriptor.php +74 -0
- package/vendor/symfony/console/Descriptor/DescriptorInterface.php +24 -0
- package/vendor/symfony/console/Descriptor/JsonDescriptor.php +166 -0
- package/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +173 -0
- package/vendor/symfony/console/Descriptor/ReStructuredTextDescriptor.php +273 -0
- package/vendor/symfony/console/Descriptor/TextDescriptor.php +317 -0
- package/vendor/symfony/console/Descriptor/XmlDescriptor.php +230 -0
- package/vendor/symfony/console/Event/ConsoleAlarmEvent.php +47 -0
- package/vendor/symfony/console/Event/ConsoleCommandEvent.php +54 -0
- package/vendor/symfony/console/Event/ConsoleErrorEvent.php +58 -0
- package/vendor/symfony/console/Event/ConsoleEvent.php +56 -0
- package/vendor/symfony/console/Event/ConsoleSignalEvent.php +56 -0
- package/vendor/symfony/console/Event/ConsoleTerminateEvent.php +50 -0
- package/vendor/symfony/console/EventListener/ErrorListener.php +89 -0
- package/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
- package/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
- package/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
- package/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
- package/vendor/symfony/console/Exception/LogicException.php +19 -0
- package/vendor/symfony/console/Exception/MissingInputException.php +21 -0
- package/vendor/symfony/console/Exception/NamespaceNotFoundException.php +21 -0
- package/vendor/symfony/console/Exception/RunCommandFailedException.php +29 -0
- package/vendor/symfony/console/Exception/RuntimeException.php +19 -0
- package/vendor/symfony/console/Formatter/NullOutputFormatter.php +51 -0
- package/vendor/symfony/console/Formatter/NullOutputFormatterStyle.php +48 -0
- package/vendor/symfony/console/Formatter/OutputFormatter.php +267 -0
- package/vendor/symfony/console/Formatter/OutputFormatterInterface.php +52 -0
- package/vendor/symfony/console/Formatter/OutputFormatterStyle.php +89 -0
- package/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +50 -0
- package/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +103 -0
- package/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php +25 -0
- package/vendor/symfony/console/Helper/DebugFormatterHelper.php +98 -0
- package/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
- package/vendor/symfony/console/Helper/Dumper.php +53 -0
- package/vendor/symfony/console/Helper/FormatterHelper.php +81 -0
- package/vendor/symfony/console/Helper/Helper.php +161 -0
- package/vendor/symfony/console/Helper/HelperInterface.php +35 -0
- package/vendor/symfony/console/Helper/HelperSet.php +74 -0
- package/vendor/symfony/console/Helper/InputAwareHelper.php +30 -0
- package/vendor/symfony/console/Helper/OutputWrapper.php +76 -0
- package/vendor/symfony/console/Helper/ProcessHelper.php +137 -0
- package/vendor/symfony/console/Helper/ProgressBar.php +654 -0
- package/vendor/symfony/console/Helper/ProgressIndicator.php +242 -0
- package/vendor/symfony/console/Helper/QuestionHelper.php +589 -0
- package/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +103 -0
- package/vendor/symfony/console/Helper/Table.php +934 -0
- package/vendor/symfony/console/Helper/TableCell.php +71 -0
- package/vendor/symfony/console/Helper/TableCellStyle.php +84 -0
- package/vendor/symfony/console/Helper/TableRows.php +28 -0
- package/vendor/symfony/console/Helper/TableSeparator.php +25 -0
- package/vendor/symfony/console/Helper/TableStyle.php +375 -0
- package/vendor/symfony/console/Helper/TreeHelper.php +111 -0
- package/vendor/symfony/console/Helper/TreeNode.php +105 -0
- package/vendor/symfony/console/Helper/TreeStyle.php +78 -0
- package/vendor/symfony/console/Input/ArgvInput.php +402 -0
- package/vendor/symfony/console/Input/ArrayInput.php +191 -0
- package/vendor/symfony/console/Input/Input.php +174 -0
- package/vendor/symfony/console/Input/InputArgument.php +160 -0
- package/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
- package/vendor/symfony/console/Input/InputDefinition.php +402 -0
- package/vendor/symfony/console/Input/InputInterface.php +138 -0
- package/vendor/symfony/console/Input/InputOption.php +262 -0
- package/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
- package/vendor/symfony/console/Input/StringInput.php +85 -0
- package/vendor/symfony/console/LICENSE +19 -0
- package/vendor/symfony/console/Logger/ConsoleLogger.php +120 -0
- package/vendor/symfony/console/Messenger/RunCommandContext.php +25 -0
- package/vendor/symfony/console/Messenger/RunCommandMessage.php +36 -0
- package/vendor/symfony/console/Messenger/RunCommandMessageHandler.php +49 -0
- package/vendor/symfony/console/Output/AnsiColorMode.php +106 -0
- package/vendor/symfony/console/Output/BufferedOutput.php +40 -0
- package/vendor/symfony/console/Output/ConsoleOutput.php +153 -0
- package/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
- package/vendor/symfony/console/Output/ConsoleSectionOutput.php +237 -0
- package/vendor/symfony/console/Output/NullOutput.php +94 -0
- package/vendor/symfony/console/Output/Output.php +144 -0
- package/vendor/symfony/console/Output/OutputInterface.php +103 -0
- package/vendor/symfony/console/Output/StreamOutput.php +127 -0
- package/vendor/symfony/console/Output/TrimmedBufferOutput.php +58 -0
- package/vendor/symfony/console/Question/ChoiceQuestion.php +178 -0
- package/vendor/symfony/console/Question/ConfirmationQuestion.php +57 -0
- package/vendor/symfony/console/Question/Question.php +280 -0
- package/vendor/symfony/console/README.md +27 -0
- package/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
- package/vendor/symfony/console/Resources/completion.bash +94 -0
- package/vendor/symfony/console/Resources/completion.fish +25 -0
- package/vendor/symfony/console/Resources/completion.zsh +82 -0
- package/vendor/symfony/console/SignalRegistry/SignalMap.php +36 -0
- package/vendor/symfony/console/SignalRegistry/SignalRegistry.php +65 -0
- package/vendor/symfony/console/SingleCommandApplication.php +72 -0
- package/vendor/symfony/console/Style/OutputStyle.php +115 -0
- package/vendor/symfony/console/Style/StyleInterface.php +110 -0
- package/vendor/symfony/console/Style/SymfonyStyle.php +476 -0
- package/vendor/symfony/console/Terminal.php +227 -0
- package/vendor/symfony/console/Tester/ApplicationTester.php +83 -0
- package/vendor/symfony/console/Tester/CommandCompletionTester.php +54 -0
- package/vendor/symfony/console/Tester/CommandTester.php +74 -0
- package/vendor/symfony/console/Tester/Constraint/CommandIsSuccessful.php +43 -0
- package/vendor/symfony/console/Tester/TesterTrait.php +178 -0
- package/vendor/symfony/console/composer.json +55 -0
- package/vendor/symfony/deprecation-contracts/CHANGELOG.md +5 -0
- package/vendor/symfony/deprecation-contracts/LICENSE +19 -0
- package/vendor/symfony/deprecation-contracts/README.md +26 -0
- package/vendor/symfony/deprecation-contracts/composer.json +35 -0
- package/vendor/symfony/deprecation-contracts/function.php +27 -0
- package/vendor/symfony/event-dispatcher/Attribute/AsEventListener.php +35 -0
- package/vendor/symfony/event-dispatcher/CHANGELOG.md +96 -0
- package/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +355 -0
- package/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +143 -0
- package/vendor/symfony/event-dispatcher/DependencyInjection/AddEventAliasesPass.php +38 -0
- package/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +213 -0
- package/vendor/symfony/event-dispatcher/EventDispatcher.php +256 -0
- package/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +66 -0
- package/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
- package/vendor/symfony/event-dispatcher/GenericEvent.php +155 -0
- package/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +65 -0
- package/vendor/symfony/event-dispatcher/LICENSE +19 -0
- package/vendor/symfony/event-dispatcher/README.md +15 -0
- package/vendor/symfony/event-dispatcher/composer.json +47 -0
- package/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md +5 -0
- package/vendor/symfony/event-dispatcher-contracts/Event.php +51 -0
- package/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php +33 -0
- package/vendor/symfony/event-dispatcher-contracts/LICENSE +19 -0
- package/vendor/symfony/event-dispatcher-contracts/README.md +9 -0
- package/vendor/symfony/event-dispatcher-contracts/composer.json +35 -0
- package/vendor/symfony/filesystem/CHANGELOG.md +92 -0
- package/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
- package/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
- package/vendor/symfony/filesystem/Exception/IOException.php +36 -0
- package/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +25 -0
- package/vendor/symfony/filesystem/Exception/InvalidArgumentException.php +19 -0
- package/vendor/symfony/filesystem/Exception/RuntimeException.php +19 -0
- package/vendor/symfony/filesystem/Filesystem.php +773 -0
- package/vendor/symfony/filesystem/LICENSE +19 -0
- package/vendor/symfony/filesystem/Path.php +816 -0
- package/vendor/symfony/filesystem/README.md +13 -0
- package/vendor/symfony/filesystem/composer.json +33 -0
- package/vendor/symfony/finder/CHANGELOG.md +103 -0
- package/vendor/symfony/finder/Comparator/Comparator.php +62 -0
- package/vendor/symfony/finder/Comparator/DateComparator.php +50 -0
- package/vendor/symfony/finder/Comparator/NumberComparator.php +78 -0
- package/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
- package/vendor/symfony/finder/Exception/DirectoryNotFoundException.php +19 -0
- package/vendor/symfony/finder/Finder.php +852 -0
- package/vendor/symfony/finder/Gitignore.php +91 -0
- package/vendor/symfony/finder/Glob.php +109 -0
- package/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
- package/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
- package/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +48 -0
- package/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +110 -0
- package/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +51 -0
- package/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
- package/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +45 -0
- package/vendor/symfony/finder/Iterator/LazyIterator.php +32 -0
- package/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +107 -0
- package/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
- package/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +134 -0
- package/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
- package/vendor/symfony/finder/Iterator/SortableIterator.php +103 -0
- package/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php +173 -0
- package/vendor/symfony/finder/LICENSE +19 -0
- package/vendor/symfony/finder/README.md +14 -0
- package/vendor/symfony/finder/SplFileInfo.php +80 -0
- package/vendor/symfony/finder/composer.json +31 -0
- package/vendor/symfony/options-resolver/CHANGELOG.md +103 -0
- package/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +114 -0
- package/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
- package/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
- package/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
- package/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
- package/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
- package/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
- package/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
- package/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
- package/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
- package/vendor/symfony/options-resolver/LICENSE +19 -0
- package/vendor/symfony/options-resolver/OptionConfigurator.php +160 -0
- package/vendor/symfony/options-resolver/Options.php +22 -0
- package/vendor/symfony/options-resolver/OptionsResolver.php +1396 -0
- package/vendor/symfony/options-resolver/README.md +15 -0
- package/vendor/symfony/options-resolver/composer.json +29 -0
- package/vendor/symfony/polyfill-ctype/Ctype.php +232 -0
- package/vendor/symfony/polyfill-ctype/LICENSE +19 -0
- package/vendor/symfony/polyfill-ctype/README.md +12 -0
- package/vendor/symfony/polyfill-ctype/bootstrap.php +50 -0
- package/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -0
- package/vendor/symfony/polyfill-ctype/composer.json +38 -0
- package/vendor/symfony/polyfill-intl-grapheme/Grapheme.php +247 -0
- package/vendor/symfony/polyfill-intl-grapheme/LICENSE +19 -0
- package/vendor/symfony/polyfill-intl-grapheme/README.md +31 -0
- package/vendor/symfony/polyfill-intl-grapheme/bootstrap.php +58 -0
- package/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php +50 -0
- package/vendor/symfony/polyfill-intl-grapheme/composer.json +35 -0
- package/vendor/symfony/polyfill-intl-normalizer/LICENSE +19 -0
- package/vendor/symfony/polyfill-intl-normalizer/Normalizer.php +310 -0
- package/vendor/symfony/polyfill-intl-normalizer/README.md +14 -0
- package/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php +17 -0
- package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php +945 -0
- package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php +2065 -0
- package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php +876 -0
- package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php +3695 -0
- package/vendor/symfony/polyfill-intl-normalizer/bootstrap.php +23 -0
- package/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php +19 -0
- package/vendor/symfony/polyfill-intl-normalizer/composer.json +36 -0
- package/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
- package/vendor/symfony/polyfill-mbstring/Mbstring.php +1045 -0
- package/vendor/symfony/polyfill-mbstring/README.md +13 -0
- package/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -0
- package/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
- package/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
- package/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -0
- package/vendor/symfony/polyfill-mbstring/bootstrap.php +172 -0
- package/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -0
- package/vendor/symfony/polyfill-mbstring/composer.json +39 -0
- package/vendor/symfony/polyfill-php80/LICENSE +19 -0
- package/vendor/symfony/polyfill-php80/Php80.php +115 -0
- package/vendor/symfony/polyfill-php80/PhpToken.php +106 -0
- package/vendor/symfony/polyfill-php80/README.md +25 -0
- package/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -0
- package/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -0
- package/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -0
- package/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -0
- package/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -0
- package/vendor/symfony/polyfill-php80/bootstrap.php +42 -0
- package/vendor/symfony/polyfill-php80/composer.json +37 -0
- package/vendor/symfony/polyfill-php81/LICENSE +19 -0
- package/vendor/symfony/polyfill-php81/Php81.php +37 -0
- package/vendor/symfony/polyfill-php81/README.md +18 -0
- package/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php +51 -0
- package/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php +20 -0
- package/vendor/symfony/polyfill-php81/bootstrap.php +28 -0
- package/vendor/symfony/polyfill-php81/composer.json +33 -0
- package/vendor/symfony/process/CHANGELOG.md +134 -0
- package/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
- package/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
- package/vendor/symfony/process/Exception/LogicException.php +21 -0
- package/vendor/symfony/process/Exception/ProcessFailedException.php +53 -0
- package/vendor/symfony/process/Exception/ProcessSignaledException.php +38 -0
- package/vendor/symfony/process/Exception/ProcessStartFailedException.php +43 -0
- package/vendor/symfony/process/Exception/ProcessTimedOutException.php +60 -0
- package/vendor/symfony/process/Exception/RunProcessFailedException.php +25 -0
- package/vendor/symfony/process/Exception/RuntimeException.php +21 -0
- package/vendor/symfony/process/ExecutableFinder.php +103 -0
- package/vendor/symfony/process/InputStream.php +91 -0
- package/vendor/symfony/process/LICENSE +19 -0
- package/vendor/symfony/process/Messenger/RunProcessContext.php +33 -0
- package/vendor/symfony/process/Messenger/RunProcessMessage.php +47 -0
- package/vendor/symfony/process/Messenger/RunProcessMessageHandler.php +36 -0
- package/vendor/symfony/process/PhpExecutableFinder.php +98 -0
- package/vendor/symfony/process/PhpProcess.php +66 -0
- package/vendor/symfony/process/PhpSubprocess.php +164 -0
- package/vendor/symfony/process/Pipes/AbstractPipes.php +176 -0
- package/vendor/symfony/process/Pipes/PipesInterface.php +61 -0
- package/vendor/symfony/process/Pipes/UnixPipes.php +144 -0
- package/vendor/symfony/process/Pipes/WindowsPipes.php +185 -0
- package/vendor/symfony/process/Process.php +1662 -0
- package/vendor/symfony/process/ProcessUtils.php +64 -0
- package/vendor/symfony/process/README.md +13 -0
- package/vendor/symfony/process/composer.json +28 -0
- package/vendor/symfony/service-contracts/Attribute/Required.php +25 -0
- package/vendor/symfony/service-contracts/Attribute/SubscribedService.php +47 -0
- package/vendor/symfony/service-contracts/CHANGELOG.md +5 -0
- package/vendor/symfony/service-contracts/LICENSE +19 -0
- package/vendor/symfony/service-contracts/README.md +9 -0
- package/vendor/symfony/service-contracts/ResetInterface.php +33 -0
- package/vendor/symfony/service-contracts/ServiceCollectionInterface.php +26 -0
- package/vendor/symfony/service-contracts/ServiceLocatorTrait.php +114 -0
- package/vendor/symfony/service-contracts/ServiceMethodsSubscriberTrait.php +80 -0
- package/vendor/symfony/service-contracts/ServiceProviderInterface.php +45 -0
- package/vendor/symfony/service-contracts/ServiceSubscriberInterface.php +62 -0
- package/vendor/symfony/service-contracts/ServiceSubscriberTrait.php +84 -0
- package/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php +23 -0
- package/vendor/symfony/service-contracts/Test/ServiceLocatorTestCase.php +97 -0
- package/vendor/symfony/service-contracts/composer.json +42 -0
- package/vendor/symfony/stopwatch/CHANGELOG.md +30 -0
- package/vendor/symfony/stopwatch/LICENSE +19 -0
- package/vendor/symfony/stopwatch/README.md +42 -0
- package/vendor/symfony/stopwatch/Section.php +155 -0
- package/vendor/symfony/stopwatch/Stopwatch.php +163 -0
- package/vendor/symfony/stopwatch/StopwatchEvent.php +238 -0
- package/vendor/symfony/stopwatch/StopwatchPeriod.php +73 -0
- package/vendor/symfony/stopwatch/composer.json +29 -0
- package/vendor/symfony/string/AbstractString.php +723 -0
- package/vendor/symfony/string/AbstractUnicodeString.php +670 -0
- package/vendor/symfony/string/ByteString.php +490 -0
- package/vendor/symfony/string/CHANGELOG.md +56 -0
- package/vendor/symfony/string/CodePointString.php +260 -0
- package/vendor/symfony/string/Exception/ExceptionInterface.php +16 -0
- package/vendor/symfony/string/Exception/InvalidArgumentException.php +16 -0
- package/vendor/symfony/string/Exception/RuntimeException.php +16 -0
- package/vendor/symfony/string/Inflector/EnglishInflector.php +589 -0
- package/vendor/symfony/string/Inflector/FrenchInflector.php +151 -0
- package/vendor/symfony/string/Inflector/InflectorInterface.php +33 -0
- package/vendor/symfony/string/Inflector/SpanishInflector.php +126 -0
- package/vendor/symfony/string/LICENSE +19 -0
- package/vendor/symfony/string/LazyString.php +145 -0
- package/vendor/symfony/string/README.md +14 -0
- package/vendor/symfony/string/Resources/data/wcswidth_table_wide.php +1182 -0
- package/vendor/symfony/string/Resources/data/wcswidth_table_zero.php +1466 -0
- package/vendor/symfony/string/Resources/functions.php +38 -0
- package/vendor/symfony/string/Slugger/AsciiSlugger.php +207 -0
- package/vendor/symfony/string/Slugger/SluggerInterface.php +27 -0
- package/vendor/symfony/string/TruncateMode.php +42 -0
- package/vendor/symfony/string/UnicodeString.php +382 -0
- package/vendor/symfony/string/composer.json +44 -0
- package/bin-codeformat.sh +0 -35
- /package/{LICENSE → LICENCE} +0 -0
|
@@ -0,0 +1,987 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
declare(strict_types=1);
|
|
4
|
+
|
|
5
|
+
/*
|
|
6
|
+
* This file is part of PHP CS Fixer.
|
|
7
|
+
*
|
|
8
|
+
* (c) Fabien Potencier <fabien@symfony.com>
|
|
9
|
+
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
|
|
10
|
+
*
|
|
11
|
+
* This source file is subject to the MIT license that is bundled
|
|
12
|
+
* with this source code in the file LICENSE.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
namespace PhpCsFixer\Fixer\Import;
|
|
16
|
+
|
|
17
|
+
use PhpCsFixer\AbstractFixer;
|
|
18
|
+
use PhpCsFixer\DocBlock\TypeExpression;
|
|
19
|
+
use PhpCsFixer\Fixer\ConfigurableFixerInterface;
|
|
20
|
+
use PhpCsFixer\Fixer\ConfigurableFixerTrait;
|
|
21
|
+
use PhpCsFixer\Fixer\WhitespacesAwareFixerInterface;
|
|
22
|
+
use PhpCsFixer\FixerConfiguration\FixerConfigurationResolver;
|
|
23
|
+
use PhpCsFixer\FixerConfiguration\FixerConfigurationResolverInterface;
|
|
24
|
+
use PhpCsFixer\FixerConfiguration\FixerOptionBuilder;
|
|
25
|
+
use PhpCsFixer\FixerDefinition\CodeSample;
|
|
26
|
+
use PhpCsFixer\FixerDefinition\FixerDefinition;
|
|
27
|
+
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
|
|
28
|
+
use PhpCsFixer\Preg;
|
|
29
|
+
use PhpCsFixer\Tokenizer\Analyzer\Analysis\TypeAnalysis;
|
|
30
|
+
use PhpCsFixer\Tokenizer\Analyzer\AttributeAnalyzer;
|
|
31
|
+
use PhpCsFixer\Tokenizer\Analyzer\FunctionsAnalyzer;
|
|
32
|
+
use PhpCsFixer\Tokenizer\Analyzer\NamespaceUsesAnalyzer;
|
|
33
|
+
use PhpCsFixer\Tokenizer\CT;
|
|
34
|
+
use PhpCsFixer\Tokenizer\Processor\ImportProcessor;
|
|
35
|
+
use PhpCsFixer\Tokenizer\Token;
|
|
36
|
+
use PhpCsFixer\Tokenizer\Tokens;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @author VeeWee <toonverwerft@gmail.com>
|
|
40
|
+
* @author Tomas Jadrny <developer@tomasjadrny.cz>
|
|
41
|
+
* @author Greg Korba <greg@codito.dev>
|
|
42
|
+
* @author SpacePossum <possumfromspace@gmail.com>
|
|
43
|
+
* @author Michael Vorisek <https://github.com/mvorisek>
|
|
44
|
+
*
|
|
45
|
+
* @implements ConfigurableFixerInterface<_AutogeneratedInputConfiguration, _AutogeneratedComputedConfiguration>
|
|
46
|
+
*
|
|
47
|
+
* @phpstan-type _AutogeneratedInputConfiguration array{
|
|
48
|
+
* import_symbols?: bool,
|
|
49
|
+
* leading_backslash_in_global_namespace?: bool,
|
|
50
|
+
* phpdoc_tags?: list<string>,
|
|
51
|
+
* }
|
|
52
|
+
* @phpstan-type _AutogeneratedComputedConfiguration array{
|
|
53
|
+
* import_symbols: bool,
|
|
54
|
+
* leading_backslash_in_global_namespace: bool,
|
|
55
|
+
* phpdoc_tags: list<string>,
|
|
56
|
+
* }
|
|
57
|
+
* @phpstan-type _Uses array{
|
|
58
|
+
* constant?: array<class-string, string>,
|
|
59
|
+
* class?: array<class-string, string>,
|
|
60
|
+
* function?: array<class-string, string>
|
|
61
|
+
* }
|
|
62
|
+
*
|
|
63
|
+
* @phpstan-import-type _ImportType from \PhpCsFixer\Tokenizer\Analyzer\Analysis\NamespaceUseAnalysis
|
|
64
|
+
*/
|
|
65
|
+
final class FullyQualifiedStrictTypesFixer extends AbstractFixer implements ConfigurableFixerInterface, WhitespacesAwareFixerInterface
|
|
66
|
+
{
|
|
67
|
+
/** @use ConfigurableFixerTrait<_AutogeneratedInputConfiguration, _AutogeneratedComputedConfiguration> */
|
|
68
|
+
use ConfigurableFixerTrait;
|
|
69
|
+
|
|
70
|
+
private const REGEX_CLASS = '(?:\\\?+'.TypeExpression::REGEX_IDENTIFIER
|
|
71
|
+
.'(\\\\'.TypeExpression::REGEX_IDENTIFIER.')*+)';
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @var array{
|
|
75
|
+
* constant?: list<class-string>,
|
|
76
|
+
* class?: list<class-string>,
|
|
77
|
+
* function?: list<class-string>
|
|
78
|
+
* }|null
|
|
79
|
+
*/
|
|
80
|
+
private ?array $discoveredSymbols;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @var array{
|
|
84
|
+
* constant?: array<string, class-string>,
|
|
85
|
+
* class?: array<string, class-string>,
|
|
86
|
+
* function?: array<string, class-string>
|
|
87
|
+
* }
|
|
88
|
+
*/
|
|
89
|
+
private array $symbolsForImport = [];
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @var array<int<0, max>, array<string, true>>
|
|
93
|
+
*/
|
|
94
|
+
private array $reservedIdentifiersByLevel;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @var array{
|
|
98
|
+
* constant?: array<string, string>,
|
|
99
|
+
* class?: array<string, string>,
|
|
100
|
+
* function?: array<string, string>
|
|
101
|
+
* }
|
|
102
|
+
*/
|
|
103
|
+
private array $cacheUsesLast = [];
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* @var array{
|
|
107
|
+
* constant?: array<string, class-string>,
|
|
108
|
+
* class?: array<string, class-string>,
|
|
109
|
+
* function?: array<string, class-string>
|
|
110
|
+
* }
|
|
111
|
+
*/
|
|
112
|
+
private array $cacheUseNameByShortNameLower;
|
|
113
|
+
|
|
114
|
+
/** @var _Uses */
|
|
115
|
+
private array $cacheUseShortNameByNameLower;
|
|
116
|
+
|
|
117
|
+
public function getDefinition(): FixerDefinitionInterface
|
|
118
|
+
{
|
|
119
|
+
return new FixerDefinition(
|
|
120
|
+
'Removes the leading part of fully qualified symbol references if a given symbol is imported or belongs to the current namespace.',
|
|
121
|
+
[
|
|
122
|
+
new CodeSample(
|
|
123
|
+
'<?php
|
|
124
|
+
|
|
125
|
+
use Foo\Bar;
|
|
126
|
+
use Foo\Bar\Baz;
|
|
127
|
+
use Foo\OtherClass;
|
|
128
|
+
use Foo\SomeContract;
|
|
129
|
+
use Foo\SomeException;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @see \Foo\Bar\Baz
|
|
133
|
+
*/
|
|
134
|
+
class SomeClass extends \Foo\OtherClass implements \Foo\SomeContract
|
|
135
|
+
{
|
|
136
|
+
/**
|
|
137
|
+
* @var \Foo\Bar\Baz
|
|
138
|
+
*/
|
|
139
|
+
public $baz;
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* @param \Foo\Bar\Baz $baz
|
|
143
|
+
*/
|
|
144
|
+
public function __construct($baz) {
|
|
145
|
+
$this->baz = $baz;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @return \Foo\Bar\Baz
|
|
150
|
+
*/
|
|
151
|
+
public function getBaz() {
|
|
152
|
+
return $this->baz;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
public function doX(\Foo\Bar $foo, \Exception $e): \Foo\Bar\Baz
|
|
156
|
+
{
|
|
157
|
+
try {}
|
|
158
|
+
catch (\Foo\SomeException $e) {}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
'
|
|
162
|
+
),
|
|
163
|
+
new CodeSample(
|
|
164
|
+
'<?php
|
|
165
|
+
|
|
166
|
+
class SomeClass
|
|
167
|
+
{
|
|
168
|
+
public function doY(Foo\NotImported $u, \Foo\NotImported $v)
|
|
169
|
+
{
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
',
|
|
173
|
+
['leading_backslash_in_global_namespace' => true]
|
|
174
|
+
),
|
|
175
|
+
new CodeSample(
|
|
176
|
+
'<?php
|
|
177
|
+
namespace {
|
|
178
|
+
use Foo\A;
|
|
179
|
+
try {
|
|
180
|
+
foo();
|
|
181
|
+
} catch (\Exception|\Foo\A $e) {
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
namespace Foo\Bar {
|
|
185
|
+
class SomeClass implements \Foo\Bar\Baz
|
|
186
|
+
{
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
',
|
|
190
|
+
['leading_backslash_in_global_namespace' => true]
|
|
191
|
+
),
|
|
192
|
+
new CodeSample(
|
|
193
|
+
'<?php
|
|
194
|
+
|
|
195
|
+
namespace Foo\Test;
|
|
196
|
+
|
|
197
|
+
class Foo extends \Other\BaseClass implements \Other\Interface1, \Other\Interface2
|
|
198
|
+
{
|
|
199
|
+
/** @var \Other\PropertyPhpDoc */
|
|
200
|
+
private $array;
|
|
201
|
+
public function __construct(\Other\FunctionArgument $arg) {}
|
|
202
|
+
public function foo(): \Other\FunctionReturnType
|
|
203
|
+
{
|
|
204
|
+
try {
|
|
205
|
+
\Other\StaticFunctionCall::bar();
|
|
206
|
+
} catch (\Other\CaughtThrowable $e) {}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
',
|
|
210
|
+
['import_symbols' => true]
|
|
211
|
+
),
|
|
212
|
+
]
|
|
213
|
+
);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* {@inheritdoc}
|
|
218
|
+
*
|
|
219
|
+
* Must run before NoSuperfluousPhpdocTagsFixer, OrderedAttributesFixer, OrderedImportsFixer, OrderedInterfacesFixer, StatementIndentationFixer.
|
|
220
|
+
* Must run after ClassKeywordFixer, PhpUnitAttributesFixer, PhpdocToPropertyTypeFixer, PhpdocToReturnTypeFixer.
|
|
221
|
+
*/
|
|
222
|
+
public function getPriority(): int
|
|
223
|
+
{
|
|
224
|
+
return 7;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
public function isCandidate(Tokens $tokens): bool
|
|
228
|
+
{
|
|
229
|
+
return $tokens->isAnyTokenKindsFound([
|
|
230
|
+
CT::T_USE_TRAIT,
|
|
231
|
+
...(\defined('T_ATTRIBUTE') ? [T_ATTRIBUTE] : []), // @TODO: drop condition when PHP 8.0+ is required
|
|
232
|
+
T_CATCH,
|
|
233
|
+
T_DOUBLE_COLON,
|
|
234
|
+
T_DOC_COMMENT,
|
|
235
|
+
T_EXTENDS,
|
|
236
|
+
T_FUNCTION,
|
|
237
|
+
T_IMPLEMENTS,
|
|
238
|
+
T_INSTANCEOF,
|
|
239
|
+
T_NEW,
|
|
240
|
+
T_VARIABLE,
|
|
241
|
+
]);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
protected function createConfigurationDefinition(): FixerConfigurationResolverInterface
|
|
245
|
+
{
|
|
246
|
+
return new FixerConfigurationResolver([
|
|
247
|
+
(new FixerOptionBuilder(
|
|
248
|
+
'leading_backslash_in_global_namespace',
|
|
249
|
+
'Whether FQCN is prefixed with backslash when that FQCN is used in global namespace context.'
|
|
250
|
+
))
|
|
251
|
+
->setAllowedTypes(['bool'])
|
|
252
|
+
->setDefault(false)
|
|
253
|
+
->getOption(),
|
|
254
|
+
(new FixerOptionBuilder(
|
|
255
|
+
'import_symbols',
|
|
256
|
+
'Whether FQCNs should be automatically imported.'
|
|
257
|
+
))
|
|
258
|
+
->setAllowedTypes(['bool'])
|
|
259
|
+
->setDefault(false)
|
|
260
|
+
->getOption(),
|
|
261
|
+
(new FixerOptionBuilder(
|
|
262
|
+
'phpdoc_tags',
|
|
263
|
+
'Collection of PHPDoc annotation tags where FQCNs should be processed. As of now only simple tags with `@tag \F\Q\C\N` format are supported (no complex types).'
|
|
264
|
+
))
|
|
265
|
+
->setAllowedTypes(['string[]'])
|
|
266
|
+
->setDefault([
|
|
267
|
+
'param',
|
|
268
|
+
'phpstan-param',
|
|
269
|
+
'phpstan-property',
|
|
270
|
+
'phpstan-property-read',
|
|
271
|
+
'phpstan-property-write',
|
|
272
|
+
'phpstan-return',
|
|
273
|
+
'phpstan-var',
|
|
274
|
+
'property',
|
|
275
|
+
'property-read',
|
|
276
|
+
'property-write',
|
|
277
|
+
'psalm-param',
|
|
278
|
+
'psalm-property',
|
|
279
|
+
'psalm-property-read',
|
|
280
|
+
'psalm-property-write',
|
|
281
|
+
'psalm-return',
|
|
282
|
+
'psalm-var',
|
|
283
|
+
'return',
|
|
284
|
+
'see',
|
|
285
|
+
'throws',
|
|
286
|
+
'var',
|
|
287
|
+
])
|
|
288
|
+
->getOption(),
|
|
289
|
+
]);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
|
|
293
|
+
{
|
|
294
|
+
$namespaceUsesAnalyzer = new NamespaceUsesAnalyzer();
|
|
295
|
+
$functionsAnalyzer = new FunctionsAnalyzer();
|
|
296
|
+
|
|
297
|
+
$this->symbolsForImport = [];
|
|
298
|
+
|
|
299
|
+
foreach ($tokens->getNamespaceDeclarations() as $namespaceIndex => $namespace) {
|
|
300
|
+
$namespace = $tokens->getNamespaceDeclarations()[$namespaceIndex];
|
|
301
|
+
|
|
302
|
+
$namespaceName = $namespace->getFullName();
|
|
303
|
+
|
|
304
|
+
/** @var _Uses $uses */
|
|
305
|
+
$uses = [];
|
|
306
|
+
$lastUse = null;
|
|
307
|
+
|
|
308
|
+
foreach ($namespaceUsesAnalyzer->getDeclarationsInNamespace($tokens, $namespace, true) as $use) {
|
|
309
|
+
if (!$use->isClass()) {
|
|
310
|
+
continue;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
$uses[$use->getHumanFriendlyType()][ltrim($use->getFullName(), '\\')] = $use->getShortName();
|
|
314
|
+
$lastUse = $use;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
$indexDiff = 0;
|
|
318
|
+
foreach (true === $this->configuration['import_symbols'] ? [true, false] : [false] as $discoverSymbolsPhase) {
|
|
319
|
+
$this->discoveredSymbols = $discoverSymbolsPhase ? [] : null;
|
|
320
|
+
|
|
321
|
+
$classyKinds = [T_CLASS, T_INTERFACE, T_TRAIT];
|
|
322
|
+
if (\defined('T_ENUM')) { // @TODO: drop condition when PHP 8.1+ is required
|
|
323
|
+
$classyKinds[] = T_ENUM;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
$openedCurlyBrackets = 0;
|
|
327
|
+
$this->reservedIdentifiersByLevel = [];
|
|
328
|
+
|
|
329
|
+
for ($index = $namespace->getScopeStartIndex(); $index < $namespace->getScopeEndIndex() + $indexDiff; ++$index) {
|
|
330
|
+
$origSize = \count($tokens);
|
|
331
|
+
|
|
332
|
+
if ($tokens[$index]->equals('{')) {
|
|
333
|
+
++$openedCurlyBrackets;
|
|
334
|
+
} if ($tokens[$index]->equals('}')) {
|
|
335
|
+
unset($this->reservedIdentifiersByLevel[$openedCurlyBrackets]);
|
|
336
|
+
--$openedCurlyBrackets;
|
|
337
|
+
} elseif ($discoverSymbolsPhase && $tokens[$index]->isGivenKind($classyKinds)) {
|
|
338
|
+
$this->fixNextName($tokens, $index, $uses, $namespaceName);
|
|
339
|
+
} elseif ($tokens[$index]->isGivenKind(T_FUNCTION)) {
|
|
340
|
+
$this->fixFunction($functionsAnalyzer, $tokens, $index, $uses, $namespaceName);
|
|
341
|
+
} elseif ($tokens[$index]->isGivenKind([T_EXTENDS, T_IMPLEMENTS])) {
|
|
342
|
+
$this->fixExtendsImplements($tokens, $index, $uses, $namespaceName);
|
|
343
|
+
} elseif ($tokens[$index]->isGivenKind(T_CATCH)) {
|
|
344
|
+
$this->fixCatch($tokens, $index, $uses, $namespaceName);
|
|
345
|
+
} elseif ($tokens[$index]->isGivenKind(T_DOUBLE_COLON)) {
|
|
346
|
+
$this->fixPrevName($tokens, $index, $uses, $namespaceName);
|
|
347
|
+
} elseif ($tokens[$index]->isGivenKind([T_INSTANCEOF, T_NEW, CT::T_USE_TRAIT, CT::T_TYPE_COLON])) {
|
|
348
|
+
$this->fixNextName($tokens, $index, $uses, $namespaceName);
|
|
349
|
+
} elseif ($tokens[$index]->isGivenKind(T_VARIABLE)) {
|
|
350
|
+
$prevIndex = $tokens->getPrevMeaningfulToken($index);
|
|
351
|
+
if (null !== $prevIndex && $tokens[$prevIndex]->isGivenKind(T_STRING)) {
|
|
352
|
+
$this->fixPrevName($tokens, $index, $uses, $namespaceName);
|
|
353
|
+
}
|
|
354
|
+
} elseif (\defined('T_ATTRIBUTE') && $tokens[$index]->isGivenKind(T_ATTRIBUTE)) { // @TODO: drop const check when PHP 8.0+ is required
|
|
355
|
+
$this->fixAttribute($tokens, $index, $uses, $namespaceName);
|
|
356
|
+
} elseif ($discoverSymbolsPhase && !\defined('T_ATTRIBUTE') && $tokens[$index]->isComment() && Preg::match('/#\[\s*('.self::REGEX_CLASS.')/', $tokens[$index]->getContent(), $matches)) { // @TODO: drop when PHP 8.0+ is required
|
|
357
|
+
/** @var class-string $attributeClass */
|
|
358
|
+
$attributeClass = $matches[1];
|
|
359
|
+
$this->determineShortType($attributeClass, 'class', $uses, $namespaceName);
|
|
360
|
+
} elseif ($tokens[$index]->isGivenKind(T_DOC_COMMENT)) {
|
|
361
|
+
Preg::matchAll('/\*\h*@(?:psalm-|phpstan-)?(?:template(?:-covariant|-contravariant)?|(?:import-)?type)\h+('.TypeExpression::REGEX_IDENTIFIER.')(?!\S)/i', $tokens[$index]->getContent(), $matches);
|
|
362
|
+
foreach ($matches[1] as $reservedIdentifier) {
|
|
363
|
+
$this->reservedIdentifiersByLevel[$openedCurlyBrackets + 1][$reservedIdentifier] = true;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
$this->fixPhpDoc($tokens, $index, $uses, $namespaceName);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
$indexDiff += \count($tokens) - $origSize;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
$this->reservedIdentifiersByLevel = [];
|
|
373
|
+
|
|
374
|
+
if ($discoverSymbolsPhase) {
|
|
375
|
+
$this->setupUsesFromDiscoveredSymbols($uses, $namespaceName);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
if ([] !== $this->symbolsForImport) {
|
|
380
|
+
if (null !== $lastUse) {
|
|
381
|
+
$atIndex = $lastUse->getEndIndex() + 1;
|
|
382
|
+
} elseif (0 !== $namespace->getEndIndex()) {
|
|
383
|
+
$atIndex = $namespace->getEndIndex() + 1;
|
|
384
|
+
} else {
|
|
385
|
+
$firstTokenIndex = $tokens->getNextMeaningfulToken($namespace->getScopeStartIndex());
|
|
386
|
+
if (null !== $firstTokenIndex && $tokens[$firstTokenIndex]->isGivenKind(T_DECLARE)) {
|
|
387
|
+
$atIndex = $tokens->getNextTokenOfKind($firstTokenIndex, [';']) + 1;
|
|
388
|
+
} else {
|
|
389
|
+
$atIndex = $namespace->getScopeStartIndex() + 1;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
// Insert all registered FQCNs
|
|
394
|
+
$this->createImportProcessor()->insertImports($tokens, $this->symbolsForImport, $atIndex);
|
|
395
|
+
|
|
396
|
+
$this->symbolsForImport = [];
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @param _Uses $uses
|
|
403
|
+
*/
|
|
404
|
+
private function refreshUsesCache(array $uses): void
|
|
405
|
+
{
|
|
406
|
+
if ($this->cacheUsesLast === $uses) {
|
|
407
|
+
return;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
$this->cacheUsesLast = $uses;
|
|
411
|
+
|
|
412
|
+
$this->cacheUseNameByShortNameLower = [];
|
|
413
|
+
$this->cacheUseShortNameByNameLower = [];
|
|
414
|
+
|
|
415
|
+
foreach ($uses as $kind => $kindUses) {
|
|
416
|
+
foreach ($kindUses as $useLongName => $useShortName) {
|
|
417
|
+
$this->cacheUseNameByShortNameLower[$kind][strtolower($useShortName)] = $useLongName;
|
|
418
|
+
|
|
419
|
+
/**
|
|
420
|
+
* @var class-string $normalisedUseLongName
|
|
421
|
+
*
|
|
422
|
+
* @phpstan-ignore varTag.nativeType
|
|
423
|
+
*/
|
|
424
|
+
$normalisedUseLongName = strtolower($useLongName);
|
|
425
|
+
$this->cacheUseShortNameByNameLower[$kind][$normalisedUseLongName] = $useShortName;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
private function isReservedIdentifier(string $symbol): bool
|
|
431
|
+
{
|
|
432
|
+
if (str_contains($symbol, '\\')) { // optimization only
|
|
433
|
+
return false;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
if ((new TypeAnalysis($symbol))->isReservedType()) {
|
|
437
|
+
return true;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
foreach ($this->reservedIdentifiersByLevel as $reservedIdentifiers) {
|
|
441
|
+
if (isset($reservedIdentifiers[$symbol])) {
|
|
442
|
+
return true;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
return false;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
/**
|
|
450
|
+
* Resolve absolute or relative symbol to normalized FQCN.
|
|
451
|
+
*
|
|
452
|
+
* @param _ImportType $importKind
|
|
453
|
+
* @param _Uses $uses
|
|
454
|
+
*
|
|
455
|
+
* @return class-string
|
|
456
|
+
*/
|
|
457
|
+
private function resolveSymbol(string $symbol, string $importKind, array $uses, string $namespaceName): string
|
|
458
|
+
{
|
|
459
|
+
if (str_starts_with($symbol, '\\')) {
|
|
460
|
+
return substr($symbol, 1); // @phpstan-ignore return.type
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
if ($this->isReservedIdentifier($symbol)) {
|
|
464
|
+
return $symbol; // @phpstan-ignore return.type
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
$this->refreshUsesCache($uses);
|
|
468
|
+
|
|
469
|
+
$symbolArr = explode('\\', $symbol, 2);
|
|
470
|
+
$shortStartNameLower = strtolower($symbolArr[0]);
|
|
471
|
+
if (isset($this->cacheUseNameByShortNameLower[$importKind][$shortStartNameLower])) {
|
|
472
|
+
// @phpstan-ignore return.type
|
|
473
|
+
return $this->cacheUseNameByShortNameLower[$importKind][$shortStartNameLower].(isset($symbolArr[1]) ? '\\'.$symbolArr[1] : '');
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
return ('' !== $namespaceName ? $namespaceName.'\\' : '').$symbol; // @phpstan-ignore return.type
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* Shorten normalized FQCN as much as possible.
|
|
481
|
+
*
|
|
482
|
+
* @param _ImportType $importKind
|
|
483
|
+
* @param _Uses $uses
|
|
484
|
+
*/
|
|
485
|
+
private function shortenSymbol(string $fqcn, string $importKind, array $uses, string $namespaceName): string
|
|
486
|
+
{
|
|
487
|
+
if ($this->isReservedIdentifier($fqcn)) {
|
|
488
|
+
return $fqcn;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
$this->refreshUsesCache($uses);
|
|
492
|
+
|
|
493
|
+
$res = null;
|
|
494
|
+
|
|
495
|
+
// try to shorten the name using namespace
|
|
496
|
+
$iMin = 0;
|
|
497
|
+
if (str_starts_with($fqcn, $namespaceName.'\\')) {
|
|
498
|
+
$tmpRes = substr($fqcn, \strlen($namespaceName) + 1);
|
|
499
|
+
if (!isset($this->cacheUseNameByShortNameLower[$importKind][strtolower(explode('\\', $tmpRes, 2)[0])]) && !$this->isReservedIdentifier($tmpRes)) {
|
|
500
|
+
$res = $tmpRes;
|
|
501
|
+
$iMin = substr_count($namespaceName, '\\') + 1;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
// try to shorten the name using uses
|
|
506
|
+
$tmp = $fqcn;
|
|
507
|
+
for ($i = substr_count($fqcn, '\\'); $i >= $iMin; --$i) {
|
|
508
|
+
if (isset($this->cacheUseShortNameByNameLower[$importKind][strtolower($tmp)])) {
|
|
509
|
+
$tmpRes = $this->cacheUseShortNameByNameLower[$importKind][strtolower($tmp)].substr($fqcn, \strlen($tmp));
|
|
510
|
+
if (!$this->isReservedIdentifier($tmpRes)) {
|
|
511
|
+
$res = $tmpRes;
|
|
512
|
+
|
|
513
|
+
break;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
if ($i > 0) {
|
|
518
|
+
$tmp = substr($tmp, 0, strrpos($tmp, '\\'));
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// shortening is not possible, add leading backslash if needed
|
|
523
|
+
if (null === $res) {
|
|
524
|
+
$res = $fqcn;
|
|
525
|
+
if ('' !== $namespaceName
|
|
526
|
+
|| true === $this->configuration['leading_backslash_in_global_namespace']
|
|
527
|
+
|| isset($this->cacheUseNameByShortNameLower[$importKind][strtolower(explode('\\', $res, 2)[0])])
|
|
528
|
+
) {
|
|
529
|
+
$res = '\\'.$res;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
return $res;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* @param _Uses $uses
|
|
538
|
+
*/
|
|
539
|
+
private function setupUsesFromDiscoveredSymbols(array &$uses, string $namespaceName): void
|
|
540
|
+
{
|
|
541
|
+
foreach ($this->discoveredSymbols as $kind => $discoveredSymbols) {
|
|
542
|
+
$discoveredFqcnByShortNameLower = [];
|
|
543
|
+
|
|
544
|
+
if ('' === $namespaceName) {
|
|
545
|
+
foreach ($discoveredSymbols as $symbol) {
|
|
546
|
+
if (!str_starts_with($symbol, '\\')) {
|
|
547
|
+
$shortStartName = explode('\\', ltrim($symbol, '\\'), 2)[0];
|
|
548
|
+
$shortStartNameLower = strtolower($shortStartName);
|
|
549
|
+
$discoveredFqcnByShortNameLower[$kind][$shortStartNameLower] = $this->resolveSymbol($shortStartName, $kind, $uses, $namespaceName);
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
foreach ($uses[$kind] ?? [] as $useLongName => $useShortName) {
|
|
555
|
+
$discoveredFqcnByShortNameLower[$kind][strtolower($useShortName)] = $useLongName;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
$useByShortNameLower = [];
|
|
559
|
+
foreach ($uses[$kind] ?? [] as $useShortName) {
|
|
560
|
+
$useByShortNameLower[strtolower($useShortName)] = true;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
uasort($discoveredSymbols, static function ($a, $b) {
|
|
564
|
+
$res = str_starts_with($a, '\\') <=> str_starts_with($b, '\\');
|
|
565
|
+
if (0 !== $res) {
|
|
566
|
+
return $res;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
return substr_count($a, '\\') <=> substr_count($b, '\\');
|
|
570
|
+
});
|
|
571
|
+
foreach ($discoveredSymbols as $symbol) {
|
|
572
|
+
while (true) {
|
|
573
|
+
$shortEndNameLower = strtolower(str_contains($symbol, '\\') ? substr($symbol, strrpos($symbol, '\\') + 1) : $symbol);
|
|
574
|
+
if (!isset($discoveredFqcnByShortNameLower[$kind][$shortEndNameLower])) {
|
|
575
|
+
$shortStartNameLower = strtolower(explode('\\', ltrim($symbol, '\\'), 2)[0]);
|
|
576
|
+
if (str_starts_with($symbol, '\\') || ('' === $namespaceName && !isset($useByShortNameLower[$shortStartNameLower]))
|
|
577
|
+
|| !str_contains($symbol, '\\')
|
|
578
|
+
) {
|
|
579
|
+
$discoveredFqcnByShortNameLower[$kind][$shortEndNameLower] = $this->resolveSymbol($symbol, $kind, $uses, $namespaceName);
|
|
580
|
+
|
|
581
|
+
break;
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
// else short name collision - keep unimported
|
|
585
|
+
|
|
586
|
+
if (str_starts_with($symbol, '\\') || '' === $namespaceName || !str_contains($symbol, '\\')) {
|
|
587
|
+
break;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
$symbol = substr($symbol, 0, strrpos($symbol, '\\'));
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
foreach ($uses[$kind] ?? [] as $useLongName => $useShortName) {
|
|
595
|
+
$discoveredLongName = $discoveredFqcnByShortNameLower[$kind][strtolower($useShortName)] ?? null;
|
|
596
|
+
if (strtolower($discoveredLongName) === strtolower($useLongName)) {
|
|
597
|
+
unset($discoveredFqcnByShortNameLower[$kind][strtolower($useShortName)]);
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
foreach ($discoveredFqcnByShortNameLower[$kind] ?? [] as $fqcn) {
|
|
602
|
+
$shortenedName = ltrim($this->shortenSymbol($fqcn, $kind, [], $namespaceName), '\\');
|
|
603
|
+
if (str_contains($shortenedName, '\\')) { // prevent importing non-namespaced names in global namespace
|
|
604
|
+
$shortEndName = str_contains($fqcn, '\\') ? substr($fqcn, strrpos($fqcn, '\\') + 1) : $fqcn;
|
|
605
|
+
$uses[$kind][$fqcn] = $shortEndName;
|
|
606
|
+
$this->symbolsForImport[$kind][$shortEndName] = $fqcn;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
if (isset($this->symbolsForImport[$kind])) {
|
|
611
|
+
ksort($this->symbolsForImport[$kind], SORT_NATURAL);
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* @param _Uses $uses
|
|
618
|
+
*/
|
|
619
|
+
private function fixFunction(FunctionsAnalyzer $functionsAnalyzer, Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
620
|
+
{
|
|
621
|
+
$arguments = $functionsAnalyzer->getFunctionArguments($tokens, $index);
|
|
622
|
+
|
|
623
|
+
foreach ($arguments as $i => $argument) {
|
|
624
|
+
$argument = $functionsAnalyzer->getFunctionArguments($tokens, $index)[$i];
|
|
625
|
+
|
|
626
|
+
if ($argument->hasTypeAnalysis()) {
|
|
627
|
+
$this->replaceByShortType($tokens, $argument->getTypeAnalysis(), $uses, $namespaceName);
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
$returnTypeAnalysis = $functionsAnalyzer->getFunctionReturnType($tokens, $index);
|
|
632
|
+
|
|
633
|
+
if (null !== $returnTypeAnalysis) {
|
|
634
|
+
$this->replaceByShortType($tokens, $returnTypeAnalysis, $uses, $namespaceName);
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* @param _Uses $uses
|
|
640
|
+
*/
|
|
641
|
+
private function fixPhpDoc(Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
642
|
+
{
|
|
643
|
+
$allowedTags = $this->configuration['phpdoc_tags'];
|
|
644
|
+
|
|
645
|
+
if ([] === $allowedTags) {
|
|
646
|
+
return;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
$phpDoc = $tokens[$index];
|
|
650
|
+
$phpDocContent = $phpDoc->getContent();
|
|
651
|
+
$phpDocContentNew = Preg::replaceCallback('/([*{]\h*@)(\S+)(\h+)('.TypeExpression::REGEX_TYPES.')(?!(?!\})\S)/', function ($matches) use ($allowedTags, $uses, $namespaceName) {
|
|
652
|
+
if (!\in_array($matches[2], $allowedTags, true)) {
|
|
653
|
+
return $matches[0];
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
return $matches[1].$matches[2].$matches[3].$this->fixPhpDocType($matches[4], $uses, $namespaceName);
|
|
657
|
+
}, $phpDocContent);
|
|
658
|
+
|
|
659
|
+
if ($phpDocContentNew !== $phpDocContent) {
|
|
660
|
+
$tokens[$index] = new Token([T_DOC_COMMENT, $phpDocContentNew]);
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* @param _Uses $uses
|
|
666
|
+
*/
|
|
667
|
+
private function fixPhpDocType(string $type, array $uses, string $namespaceName): string
|
|
668
|
+
{
|
|
669
|
+
$typeExpression = new TypeExpression($type, null, []);
|
|
670
|
+
|
|
671
|
+
$typeExpression = $typeExpression->mapTypes(function (TypeExpression $type) use ($uses, $namespaceName) {
|
|
672
|
+
$currentTypeValue = $type->toString();
|
|
673
|
+
|
|
674
|
+
if ($type->isCompositeType() || !Preg::match('/^'.self::REGEX_CLASS.'$/', $currentTypeValue)) {
|
|
675
|
+
return $type;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
/** @var class-string $currentTypeValue */
|
|
679
|
+
$shortTokens = $this->determineShortType($currentTypeValue, 'class', $uses, $namespaceName);
|
|
680
|
+
|
|
681
|
+
if (null === $shortTokens) {
|
|
682
|
+
return $type;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
$newTypeValue = implode('', array_map(
|
|
686
|
+
static fn (Token $token) => $token->getContent(),
|
|
687
|
+
$shortTokens
|
|
688
|
+
));
|
|
689
|
+
|
|
690
|
+
return $currentTypeValue === $newTypeValue
|
|
691
|
+
? $type
|
|
692
|
+
: new TypeExpression($newTypeValue, null, []);
|
|
693
|
+
});
|
|
694
|
+
|
|
695
|
+
return $typeExpression->toString();
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
/**
|
|
699
|
+
* @param _Uses $uses
|
|
700
|
+
*/
|
|
701
|
+
private function fixExtendsImplements(Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
702
|
+
{
|
|
703
|
+
// We handle `extends` and `implements` with similar logic, but we need to exit the loop under different conditions.
|
|
704
|
+
$isExtends = $tokens[$index]->equals([T_EXTENDS]);
|
|
705
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
706
|
+
|
|
707
|
+
$typeStartIndex = null;
|
|
708
|
+
$typeEndIndex = null;
|
|
709
|
+
|
|
710
|
+
while (true) {
|
|
711
|
+
if ($tokens[$index]->equalsAny([',', '{', [T_IMPLEMENTS]])) {
|
|
712
|
+
if (null !== $typeStartIndex) {
|
|
713
|
+
$index += $this->shortenClassIfPossible($tokens, $typeStartIndex, $typeEndIndex, $uses, $namespaceName);
|
|
714
|
+
}
|
|
715
|
+
$typeStartIndex = null;
|
|
716
|
+
|
|
717
|
+
if ($tokens[$index]->equalsAny($isExtends ? [[T_IMPLEMENTS], '{'] : ['{'])) {
|
|
718
|
+
break;
|
|
719
|
+
}
|
|
720
|
+
} else {
|
|
721
|
+
if (null === $typeStartIndex) {
|
|
722
|
+
$typeStartIndex = $index;
|
|
723
|
+
}
|
|
724
|
+
$typeEndIndex = $index;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
/**
|
|
732
|
+
* @param _Uses $uses
|
|
733
|
+
*/
|
|
734
|
+
private function fixCatch(Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
735
|
+
{
|
|
736
|
+
$index = $tokens->getNextMeaningfulToken($index); // '('
|
|
737
|
+
$index = $tokens->getNextMeaningfulToken($index); // first part of first exception class to be caught
|
|
738
|
+
|
|
739
|
+
$typeStartIndex = null;
|
|
740
|
+
$typeEndIndex = null;
|
|
741
|
+
|
|
742
|
+
while (true) {
|
|
743
|
+
if ($tokens[$index]->equalsAny([')', [T_VARIABLE], [CT::T_TYPE_ALTERNATION]])) {
|
|
744
|
+
if (null === $typeStartIndex) {
|
|
745
|
+
break;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
$index += $this->shortenClassIfPossible($tokens, $typeStartIndex, $typeEndIndex, $uses, $namespaceName);
|
|
749
|
+
$typeStartIndex = null;
|
|
750
|
+
|
|
751
|
+
if ($tokens[$index]->equals(')')) {
|
|
752
|
+
break;
|
|
753
|
+
}
|
|
754
|
+
} else {
|
|
755
|
+
if (null === $typeStartIndex) {
|
|
756
|
+
$typeStartIndex = $index;
|
|
757
|
+
}
|
|
758
|
+
$typeEndIndex = $index;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* @param _Uses $uses
|
|
767
|
+
*/
|
|
768
|
+
private function fixAttribute(Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
769
|
+
{
|
|
770
|
+
$attributeAnalysis = AttributeAnalyzer::collectOne($tokens, $index);
|
|
771
|
+
|
|
772
|
+
foreach ($attributeAnalysis->getAttributes() as $attribute) {
|
|
773
|
+
$index = $attribute['start'];
|
|
774
|
+
while ($tokens[$index]->equalsAny([[T_STRING], [T_NS_SEPARATOR]])) {
|
|
775
|
+
$index = $tokens->getPrevMeaningfulToken($index);
|
|
776
|
+
}
|
|
777
|
+
$this->fixNextName($tokens, $index, $uses, $namespaceName);
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* @param _Uses $uses
|
|
783
|
+
*/
|
|
784
|
+
private function fixPrevName(Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
785
|
+
{
|
|
786
|
+
$typeStartIndex = null;
|
|
787
|
+
$typeEndIndex = null;
|
|
788
|
+
|
|
789
|
+
while (true) {
|
|
790
|
+
$index = $tokens->getPrevMeaningfulToken($index);
|
|
791
|
+
if ($tokens[$index]->isObjectOperator()) {
|
|
792
|
+
break;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
if ($tokens[$index]->equalsAny([[T_STRING], [T_NS_SEPARATOR]])) {
|
|
796
|
+
$typeStartIndex = $index;
|
|
797
|
+
if (null === $typeEndIndex) {
|
|
798
|
+
$typeEndIndex = $index;
|
|
799
|
+
}
|
|
800
|
+
} else {
|
|
801
|
+
if (null !== $typeEndIndex) {
|
|
802
|
+
$index += $this->shortenClassIfPossible($tokens, $typeStartIndex, $typeEndIndex, $uses, $namespaceName);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
break;
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
/**
|
|
811
|
+
* @param _Uses $uses
|
|
812
|
+
*/
|
|
813
|
+
private function fixNextName(Tokens $tokens, int $index, array $uses, string $namespaceName): void
|
|
814
|
+
{
|
|
815
|
+
$typeStartIndex = null;
|
|
816
|
+
$typeEndIndex = null;
|
|
817
|
+
|
|
818
|
+
while (true) {
|
|
819
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
820
|
+
|
|
821
|
+
if ($tokens[$index]->equalsAny([[T_STRING], [T_NS_SEPARATOR]])) {
|
|
822
|
+
if (null === $typeStartIndex) {
|
|
823
|
+
$typeStartIndex = $index;
|
|
824
|
+
}
|
|
825
|
+
$typeEndIndex = $index;
|
|
826
|
+
} else {
|
|
827
|
+
if (null !== $typeStartIndex) {
|
|
828
|
+
$index += $this->shortenClassIfPossible($tokens, $typeStartIndex, $typeEndIndex, $uses, $namespaceName);
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
break;
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
/**
|
|
837
|
+
* @param _Uses $uses
|
|
838
|
+
*/
|
|
839
|
+
private function shortenClassIfPossible(Tokens $tokens, int $typeStartIndex, int $typeEndIndex, array $uses, string $namespaceName): int
|
|
840
|
+
{
|
|
841
|
+
/** @var class-string $content */
|
|
842
|
+
$content = $tokens->generatePartialCode($typeStartIndex, $typeEndIndex);
|
|
843
|
+
$newTokens = $this->determineShortType($content, 'class', $uses, $namespaceName);
|
|
844
|
+
if (null === $newTokens) {
|
|
845
|
+
return 0;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
$tokens->overrideRange($typeStartIndex, $typeEndIndex, $newTokens);
|
|
849
|
+
|
|
850
|
+
return \count($newTokens) - ($typeEndIndex - $typeStartIndex) - 1;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* @param _Uses $uses
|
|
855
|
+
*/
|
|
856
|
+
private function replaceByShortType(Tokens $tokens, TypeAnalysis $type, array $uses, string $namespaceName): void
|
|
857
|
+
{
|
|
858
|
+
$typeStartIndex = $type->getStartIndex();
|
|
859
|
+
|
|
860
|
+
if ($tokens[$typeStartIndex]->isGivenKind(CT::T_NULLABLE_TYPE)) {
|
|
861
|
+
$typeStartIndex = $tokens->getNextMeaningfulToken($typeStartIndex);
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
$types = $this->getTypes($tokens, $typeStartIndex, $type->getEndIndex());
|
|
865
|
+
|
|
866
|
+
foreach ($types as [$startIndex, $endIndex]) {
|
|
867
|
+
/** @var class-string $content */
|
|
868
|
+
$content = $tokens->generatePartialCode($startIndex, $endIndex);
|
|
869
|
+
$newTokens = $this->determineShortType($content, 'class', $uses, $namespaceName);
|
|
870
|
+
if (null !== $newTokens) {
|
|
871
|
+
$tokens->overrideRange($startIndex, $endIndex, $newTokens);
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* Determines short type based on FQCN, current namespace and imports (`use` declarations).
|
|
878
|
+
*
|
|
879
|
+
* @param class-string $typeName
|
|
880
|
+
* @param _ImportType $importKind
|
|
881
|
+
* @param _Uses $uses
|
|
882
|
+
*
|
|
883
|
+
* @return null|list<Token>
|
|
884
|
+
*/
|
|
885
|
+
private function determineShortType(string $typeName, string $importKind, array $uses, string $namespaceName): ?array
|
|
886
|
+
{
|
|
887
|
+
if (null !== $this->discoveredSymbols) {
|
|
888
|
+
if (!$this->isReservedIdentifier($typeName)) {
|
|
889
|
+
$this->discoveredSymbols[$importKind][] = $typeName;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
return null;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
$fqcn = $this->resolveSymbol($typeName, $importKind, $uses, $namespaceName);
|
|
896
|
+
$shortenedType = $this->shortenSymbol($fqcn, $importKind, $uses, $namespaceName);
|
|
897
|
+
if ($shortenedType === $typeName) {
|
|
898
|
+
return null;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
return $this->namespacedStringToTokens($shortenedType);
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
/**
|
|
905
|
+
* @return iterable<array{int, int}>
|
|
906
|
+
*/
|
|
907
|
+
private function getTypes(Tokens $tokens, int $index, int $endIndex): iterable
|
|
908
|
+
{
|
|
909
|
+
$skipNextYield = false;
|
|
910
|
+
$typeStartIndex = $typeEndIndex = null;
|
|
911
|
+
while (true) {
|
|
912
|
+
if ($tokens[$index]->isGivenKind(CT::T_DISJUNCTIVE_NORMAL_FORM_TYPE_PARENTHESIS_OPEN)) {
|
|
913
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
914
|
+
$typeStartIndex = $typeEndIndex = null;
|
|
915
|
+
|
|
916
|
+
continue;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
if (
|
|
920
|
+
$tokens[$index]->isGivenKind([CT::T_TYPE_ALTERNATION, CT::T_TYPE_INTERSECTION, CT::T_DISJUNCTIVE_NORMAL_FORM_TYPE_PARENTHESIS_CLOSE])
|
|
921
|
+
|| $index > $endIndex
|
|
922
|
+
) {
|
|
923
|
+
if (!$skipNextYield && null !== $typeStartIndex) {
|
|
924
|
+
$origCount = \count($tokens);
|
|
925
|
+
|
|
926
|
+
yield [$typeStartIndex, $typeEndIndex];
|
|
927
|
+
|
|
928
|
+
$endIndex += \count($tokens) - $origCount;
|
|
929
|
+
|
|
930
|
+
// type tokens were possibly updated, restart type match
|
|
931
|
+
$skipNextYield = true;
|
|
932
|
+
$index = $typeEndIndex = $typeStartIndex;
|
|
933
|
+
} else {
|
|
934
|
+
$skipNextYield = false;
|
|
935
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
936
|
+
$typeStartIndex = $typeEndIndex = null;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
if ($index > $endIndex) {
|
|
940
|
+
break;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
continue;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
if (null === $typeStartIndex) {
|
|
947
|
+
$typeStartIndex = $index;
|
|
948
|
+
}
|
|
949
|
+
$typeEndIndex = $index;
|
|
950
|
+
|
|
951
|
+
$index = $tokens->getNextMeaningfulToken($index);
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
/**
|
|
956
|
+
* @return list<Token>
|
|
957
|
+
*/
|
|
958
|
+
private function namespacedStringToTokens(string $input): array
|
|
959
|
+
{
|
|
960
|
+
$tokens = [];
|
|
961
|
+
|
|
962
|
+
if (str_starts_with($input, '\\')) {
|
|
963
|
+
$tokens[] = new Token([T_NS_SEPARATOR, '\\']);
|
|
964
|
+
$input = substr($input, 1);
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
$parts = explode('\\', $input);
|
|
968
|
+
foreach ($parts as $index => $part) {
|
|
969
|
+
$tokens[] = new Token([T_STRING, $part]);
|
|
970
|
+
|
|
971
|
+
if ($index !== \count($parts) - 1) {
|
|
972
|
+
$tokens[] = new Token([T_NS_SEPARATOR, '\\']);
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
return $tokens;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* We need to create import processor dynamically (not in costructor), because actual whitespace configuration
|
|
981
|
+
* is set later, not when fixer's instance is created.
|
|
982
|
+
*/
|
|
983
|
+
private function createImportProcessor(): ImportProcessor
|
|
984
|
+
{
|
|
985
|
+
return new ImportProcessor($this->whitespacesConfig);
|
|
986
|
+
}
|
|
987
|
+
}
|