├── .github └── workflows │ └── cla.yml ├── .gitignore ├── .phpcs-cache ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── dist └── htm.bundle.js ├── docs ├── images │ ├── in-gutenburg-block.png │ ├── in-html-blocks.png │ └── in-php-template.png └── wp-local.md ├── e-assets ├── e-.woff2 └── e-global.css ├── editor-blocks ├── e-alert.css ├── e-alert.js ├── e-badge.css ├── e-badge.js ├── e-box.css ├── e-box.js ├── e-container.css ├── e-container.js ├── e-rule.css ├── e-rule.js ├── e-tag.css ├── e-tag.js ├── my-card.css ├── my-card.js ├── my-header.css └── my-header.js ├── elements ├── e-accordion.html ├── e-alert.php ├── e-autocomplete.html ├── e-badge.html ├── e-blockquote.html ├── e-box.html ├── e-breadcrumb.html ├── e-button.html.bak ├── e-button.php ├── e-code.php ├── e-col.html ├── e-container.html ├── e-details.html ├── e-dialog.html ├── e-dot.html ├── e-icon.html ├── e-input-group.php ├── e-kbd.html ├── e-link.php ├── e-loader.html ├── e-menu.html ├── e-row.html ├── e-rule.php ├── e-switch.php ├── e-table.html ├── e-tabs.html ├── e-tag.html ├── my-card.mjs ├── my-card.php └── my-header.html ├── enhance-ssr-wp-plugin.php ├── enhance-wp-blocks-plugin.php ├── htm-entry.js ├── package.json ├── phpcs.xml ├── rollup.config.js ├── use-html.js └── vendor ├── autoload.php ├── bin ├── phpcbf └── phpcs ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php ├── installers │ ├── .github │ │ └── workflows │ │ │ ├── continuous-integration.yml │ │ │ ├── lint.yml │ │ │ └── phpstan.yml │ ├── LICENSE │ ├── composer.json │ ├── phpstan.neon.dist │ └── src │ │ ├── Composer │ │ └── Installers │ │ │ ├── AglInstaller.php │ │ │ ├── AkauntingInstaller.php │ │ │ ├── AnnotateCmsInstaller.php │ │ │ ├── AsgardInstaller.php │ │ │ ├── AttogramInstaller.php │ │ │ ├── BaseInstaller.php │ │ │ ├── BitrixInstaller.php │ │ │ ├── BonefishInstaller.php │ │ │ ├── CakePHPInstaller.php │ │ │ ├── ChefInstaller.php │ │ │ ├── CiviCrmInstaller.php │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ ├── CockpitInstaller.php │ │ │ ├── CodeIgniterInstaller.php │ │ │ ├── Concrete5Installer.php │ │ │ ├── CroogoInstaller.php │ │ │ ├── DecibelInstaller.php │ │ │ ├── DframeInstaller.php │ │ │ ├── DokuWikiInstaller.php │ │ │ ├── DolibarrInstaller.php │ │ │ ├── DrupalInstaller.php │ │ │ ├── ElggInstaller.php │ │ │ ├── EliasisInstaller.php │ │ │ ├── ExpressionEngineInstaller.php │ │ │ ├── EzPlatformInstaller.php │ │ │ ├── FuelInstaller.php │ │ │ ├── FuelphpInstaller.php │ │ │ ├── GravInstaller.php │ │ │ ├── HuradInstaller.php │ │ │ ├── ImageCMSInstaller.php │ │ │ ├── Installer.php │ │ │ ├── ItopInstaller.php │ │ │ ├── KanboardInstaller.php │ │ │ ├── KnownInstaller.php │ │ │ ├── KodiCMSInstaller.php │ │ │ ├── KohanaInstaller.php │ │ │ ├── LanManagementSystemInstaller.php │ │ │ ├── LaravelInstaller.php │ │ │ ├── LavaLiteInstaller.php │ │ │ ├── LithiumInstaller.php │ │ │ ├── MODULEWorkInstaller.php │ │ │ ├── MODXEvoInstaller.php │ │ │ ├── MagentoInstaller.php │ │ │ ├── MajimaInstaller.php │ │ │ ├── MakoInstaller.php │ │ │ ├── MantisBTInstaller.php │ │ │ ├── MatomoInstaller.php │ │ │ ├── MauticInstaller.php │ │ │ ├── MayaInstaller.php │ │ │ ├── MediaWikiInstaller.php │ │ │ ├── MiaoxingInstaller.php │ │ │ ├── MicroweberInstaller.php │ │ │ ├── ModxInstaller.php │ │ │ ├── MoodleInstaller.php │ │ │ ├── OctoberInstaller.php │ │ │ ├── OntoWikiInstaller.php │ │ │ ├── OsclassInstaller.php │ │ │ ├── OxidInstaller.php │ │ │ ├── PPIInstaller.php │ │ │ ├── PantheonInstaller.php │ │ │ ├── PhiftyInstaller.php │ │ │ ├── PhpBBInstaller.php │ │ │ ├── PiwikInstaller.php │ │ │ ├── PlentymarketsInstaller.php │ │ │ ├── Plugin.php │ │ │ ├── PortoInstaller.php │ │ │ ├── PrestashopInstaller.php │ │ │ ├── ProcessWireInstaller.php │ │ │ ├── PuppetInstaller.php │ │ │ ├── PxcmsInstaller.php │ │ │ ├── RadPHPInstaller.php │ │ │ ├── ReIndexInstaller.php │ │ │ ├── Redaxo5Installer.php │ │ │ ├── RedaxoInstaller.php │ │ │ ├── RoundcubeInstaller.php │ │ │ ├── SMFInstaller.php │ │ │ ├── ShopwareInstaller.php │ │ │ ├── SilverStripeInstaller.php │ │ │ ├── SiteDirectInstaller.php │ │ │ ├── StarbugInstaller.php │ │ │ ├── SyDESInstaller.php │ │ │ ├── SyliusInstaller.php │ │ │ ├── TaoInstaller.php │ │ │ ├── TastyIgniterInstaller.php │ │ │ ├── TheliaInstaller.php │ │ │ ├── TuskInstaller.php │ │ │ ├── UserFrostingInstaller.php │ │ │ ├── VanillaInstaller.php │ │ │ ├── VgmcpInstaller.php │ │ │ ├── WHMCSInstaller.php │ │ │ ├── WinterInstaller.php │ │ │ ├── WolfCMSInstaller.php │ │ │ ├── WordPressInstaller.php │ │ │ ├── YawikInstaller.php │ │ │ ├── ZendInstaller.php │ │ │ └── ZikulaInstaller.php │ │ └── bootstrap.php └── platform_check.php ├── dealerdirect └── phpcodesniffer-composer-installer │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ └── Plugin.php ├── enhance-dev └── ssr │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── examples │ ├── native-ssr │ │ ├── public │ │ │ └── index.php │ │ └── resources │ │ │ └── my-header.php │ └── wasm-ssr │ │ ├── public │ │ └── index.php │ │ └── resources │ │ └── my-header.mjs │ ├── phpcs.xml │ ├── phpunit.xml │ ├── src │ ├── Elements.php │ ├── EnhanceWASM.php │ ├── Enhancer.php │ └── ShadyStyles.php │ └── test │ ├── fixtures │ └── templates │ │ ├── e-button.html │ │ ├── e-tag.html │ │ ├── multiple-slots.html │ │ ├── my-bad-xml.php │ │ ├── my-content.html │ │ ├── my-context-child.php │ │ ├── my-context-parent.php │ │ ├── my-counter.php │ │ ├── my-custom-heading-with-named-slot.html │ │ ├── my-custom-heading.html │ │ ├── my-external-script.html │ │ ├── my-header.php │ │ ├── my-heading.html │ │ ├── my-id.php │ │ ├── my-instance-id.php │ │ ├── my-link-node-first.html │ │ ├── my-link-node-second.html │ │ ├── my-link.php │ │ ├── my-list-container.php │ │ ├── my-list-debug.php │ │ ├── my-list.php │ │ ├── my-multiples.html │ │ ├── my-outline.html │ │ ├── my-page.php │ │ ├── my-paragraph.html │ │ ├── my-pre-page.php │ │ ├── my-pre.php │ │ ├── my-slot-as.html │ │ ├── my-store-data.php │ │ ├── my-style-import-first.html │ │ ├── my-style-import-second.html │ │ ├── my-style-transform.html │ │ ├── my-super-heading.html │ │ ├── my-title.html │ │ ├── my-transform-script.html │ │ ├── my-transform-style.html │ │ ├── my-unnamed.html │ │ └── my-wrapped-heading.html │ └── tests │ ├── ElementsTest.php │ ├── EnhancerTest.php │ └── IsCustomElementTests.php ├── extism └── extism │ ├── .github │ ├── actions │ │ └── libextism │ │ │ └── action.yaml │ └── workflows │ │ └── ci.yaml │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── example │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── memory_test.php │ ├── src │ ├── CurrentPlugin.php │ ├── HostFunction.php │ ├── LibExtism.php │ ├── Manifest.php │ ├── Plugin.php │ └── extism.h │ ├── tests │ ├── Helpers.php │ ├── ManifestTest.php │ ├── PluginTest.php │ └── data │ │ └── test.txt │ └── wasm │ ├── alloc.wasm │ ├── config.wasm │ ├── count_vowels.wasm │ ├── count_vowels_kvstore.wasm │ ├── exit.wasm │ ├── fail.wasm │ ├── fs.wasm │ ├── hello.wasm │ ├── http.wasm │ └── sleep.wasm ├── phpcsstandards ├── phpcsextra │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Modernize │ │ ├── Docs │ │ │ └── FunctionCalls │ │ │ │ └── DirnameStandard.xml │ │ ├── Sniffs │ │ │ └── FunctionCalls │ │ │ │ └── DirnameSniff.php │ │ └── ruleset.xml │ ├── NormalizedArrays │ │ ├── Docs │ │ │ └── Arrays │ │ │ │ ├── ArrayBraceSpacingStandard.xml │ │ │ │ └── CommaAfterLastStandard.xml │ │ ├── Sniffs │ │ │ └── Arrays │ │ │ │ ├── ArrayBraceSpacingSniff.php │ │ │ │ └── CommaAfterLastSniff.php │ │ └── ruleset.xml │ ├── README.md │ ├── Universal │ │ ├── Docs │ │ │ ├── Arrays │ │ │ │ ├── DisallowShortArraySyntaxStandard.xml │ │ │ │ ├── DuplicateArrayKeyStandard.xml │ │ │ │ ├── MixedArrayKeyTypesStandard.xml │ │ │ │ └── MixedKeyedUnkeyedArrayStandard.xml │ │ │ ├── Classes │ │ │ │ ├── DisallowAnonClassParenthesesStandard.xml │ │ │ │ ├── DisallowFinalClassStandard.xml │ │ │ │ ├── ModifierKeywordOrderStandard.xml │ │ │ │ ├── RequireAnonClassParenthesesStandard.xml │ │ │ │ └── RequireFinalClassStandard.xml │ │ │ ├── CodeAnalysis │ │ │ │ ├── ConstructorDestructorReturnStandard.xml │ │ │ │ ├── ForeachUniqueAssignmentStandard.xml │ │ │ │ ├── NoDoubleNegativeStandard.xml │ │ │ │ ├── NoEchoSprintfStandard.xml │ │ │ │ └── StaticInFinalClassStandard.xml │ │ │ ├── Constants │ │ │ │ ├── LowercaseClassResolutionKeywordStandard.xml │ │ │ │ ├── ModifierKeywordOrderStandard.xml │ │ │ │ └── UppercaseMagicConstantsStandard.xml │ │ │ ├── ControlStructures │ │ │ │ ├── DisallowAlternativeSyntaxStandard.xml │ │ │ │ ├── DisallowLonelyIfStandard.xml │ │ │ │ └── IfElseDeclarationStandard.xml │ │ │ ├── Files │ │ │ │ └── SeparateFunctionsFromOOStandard.xml │ │ │ ├── FunctionDeclarations │ │ │ │ ├── NoLongClosuresStandard.xml │ │ │ │ └── RequireFinalMethodsInTraitsStandard.xml │ │ │ ├── Lists │ │ │ │ ├── DisallowLongListSyntaxStandard.xml │ │ │ │ └── DisallowShortListSyntaxStandard.xml │ │ │ ├── Namespaces │ │ │ │ ├── DisallowCurlyBraceSyntaxStandard.xml │ │ │ │ ├── DisallowDeclarationWithoutNameStandard.xml │ │ │ │ ├── EnforceCurlyBraceSyntaxStandard.xml │ │ │ │ └── OneDeclarationPerFileStandard.xml │ │ │ ├── NamingConventions │ │ │ │ └── NoReservedKeywordParameterNamesStandard.xml │ │ │ ├── OOStructures │ │ │ │ └── AlphabeticExtendsImplementsStandard.xml │ │ │ ├── Operators │ │ │ │ ├── ConcatPositionStandard.xml │ │ │ │ ├── DisallowLogicalAndOrStandard.xml │ │ │ │ ├── DisallowShortTernaryStandard.xml │ │ │ │ ├── DisallowStandalonePostIncrementDecrementStandard.xml │ │ │ │ ├── StrictComparisonsStandard.xml │ │ │ │ └── TypeSeparatorSpacingStandard.xml │ │ │ ├── PHP │ │ │ │ ├── LowercasePHPTagStandard.xml │ │ │ │ └── OneStatementInShortEchoTagStandard.xml │ │ │ ├── UseStatements │ │ │ │ ├── DisallowMixedGroupUseStandard.xml │ │ │ │ ├── DisallowUseClassStandard.xml │ │ │ │ ├── DisallowUseConstStandard.xml │ │ │ │ ├── DisallowUseFunctionStandard.xml │ │ │ │ ├── KeywordSpacingStandard.xml │ │ │ │ ├── LowercaseFunctionConstStandard.xml │ │ │ │ ├── NoLeadingBackslashStandard.xml │ │ │ │ └── NoUselessAliasesStandard.xml │ │ │ └── WhiteSpace │ │ │ │ ├── AnonClassKeywordSpacingStandard.xml │ │ │ │ ├── CommaSpacingStandard.xml │ │ │ │ ├── DisallowInlineTabsStandard.xml │ │ │ │ └── PrecisionAlignmentStandard.xml │ │ ├── Helpers │ │ │ └── DummyTokenizer.php │ │ ├── Sniffs │ │ │ ├── Arrays │ │ │ │ ├── DisallowShortArraySyntaxSniff.php │ │ │ │ ├── DuplicateArrayKeySniff.php │ │ │ │ ├── MixedArrayKeyTypesSniff.php │ │ │ │ └── MixedKeyedUnkeyedArraySniff.php │ │ │ ├── Classes │ │ │ │ ├── DisallowAnonClassParenthesesSniff.php │ │ │ │ ├── DisallowFinalClassSniff.php │ │ │ │ ├── ModifierKeywordOrderSniff.php │ │ │ │ ├── RequireAnonClassParenthesesSniff.php │ │ │ │ └── RequireFinalClassSniff.php │ │ │ ├── CodeAnalysis │ │ │ │ ├── ConstructorDestructorReturnSniff.php │ │ │ │ ├── ForeachUniqueAssignmentSniff.php │ │ │ │ ├── NoDoubleNegativeSniff.php │ │ │ │ ├── NoEchoSprintfSniff.php │ │ │ │ └── StaticInFinalClassSniff.php │ │ │ ├── Constants │ │ │ │ ├── LowercaseClassResolutionKeywordSniff.php │ │ │ │ ├── ModifierKeywordOrderSniff.php │ │ │ │ └── UppercaseMagicConstantsSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── DisallowAlternativeSyntaxSniff.php │ │ │ │ ├── DisallowLonelyIfSniff.php │ │ │ │ └── IfElseDeclarationSniff.php │ │ │ ├── Files │ │ │ │ └── SeparateFunctionsFromOOSniff.php │ │ │ ├── FunctionDeclarations │ │ │ │ ├── NoLongClosuresSniff.php │ │ │ │ └── RequireFinalMethodsInTraitsSniff.php │ │ │ ├── Lists │ │ │ │ ├── DisallowLongListSyntaxSniff.php │ │ │ │ └── DisallowShortListSyntaxSniff.php │ │ │ ├── Namespaces │ │ │ │ ├── DisallowCurlyBraceSyntaxSniff.php │ │ │ │ ├── DisallowDeclarationWithoutNameSniff.php │ │ │ │ ├── EnforceCurlyBraceSyntaxSniff.php │ │ │ │ └── OneDeclarationPerFileSniff.php │ │ │ ├── NamingConventions │ │ │ │ └── NoReservedKeywordParameterNamesSniff.php │ │ │ ├── OOStructures │ │ │ │ └── AlphabeticExtendsImplementsSniff.php │ │ │ ├── Operators │ │ │ │ ├── ConcatPositionSniff.php │ │ │ │ ├── DisallowLogicalAndOrSniff.php │ │ │ │ ├── DisallowShortTernarySniff.php │ │ │ │ ├── DisallowStandalonePostIncrementDecrementSniff.php │ │ │ │ ├── StrictComparisonsSniff.php │ │ │ │ └── TypeSeparatorSpacingSniff.php │ │ │ ├── PHP │ │ │ │ ├── LowercasePHPTagSniff.php │ │ │ │ └── OneStatementInShortEchoTagSniff.php │ │ │ ├── UseStatements │ │ │ │ ├── DisallowMixedGroupUseSniff.php │ │ │ │ ├── DisallowUseClassSniff.php │ │ │ │ ├── DisallowUseConstSniff.php │ │ │ │ ├── DisallowUseFunctionSniff.php │ │ │ │ ├── KeywordSpacingSniff.php │ │ │ │ ├── LowercaseFunctionConstSniff.php │ │ │ │ ├── NoLeadingBackslashSniff.php │ │ │ │ └── NoUselessAliasesSniff.php │ │ │ └── WhiteSpace │ │ │ │ ├── AnonClassKeywordSpacingSniff.php │ │ │ │ ├── CommaSpacingSniff.php │ │ │ │ ├── DisallowInlineTabsSniff.php │ │ │ │ └── PrecisionAlignmentSniff.php │ │ └── ruleset.xml │ └── composer.json └── phpcsutils │ ├── .phpdoc.xml.dist │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PHPCSUtils │ ├── AbstractSniffs │ │ └── AbstractArrayDeclarationSniff.php │ ├── BackCompat │ │ ├── BCFile.php │ │ ├── BCTokens.php │ │ └── Helper.php │ ├── Exceptions │ │ ├── InvalidTokenArray.php │ │ ├── TestFileNotFound.php │ │ ├── TestMarkerNotFound.php │ │ └── TestTargetNotFound.php │ ├── Fixers │ │ └── SpacesFixer.php │ ├── Internal │ │ ├── Cache.php │ │ ├── IsShortArrayOrList.php │ │ ├── IsShortArrayOrListWithCache.php │ │ ├── NoFileCache.php │ │ └── StableCollections.php │ ├── TestUtils │ │ └── UtilityMethodTestCase.php │ ├── Tokens │ │ ├── Collections.php │ │ └── TokenHelper.php │ ├── Utils │ │ ├── Arrays.php │ │ ├── Conditions.php │ │ ├── Context.php │ │ ├── ControlStructures.php │ │ ├── FunctionDeclarations.php │ │ ├── GetTokensAsString.php │ │ ├── Lists.php │ │ ├── MessageHelper.php │ │ ├── Namespaces.php │ │ ├── NamingConventions.php │ │ ├── Numbers.php │ │ ├── ObjectDeclarations.php │ │ ├── Operators.php │ │ ├── Orthography.php │ │ ├── Parentheses.php │ │ ├── PassedParameters.php │ │ ├── Scopes.php │ │ ├── TextStrings.php │ │ ├── UseStatements.php │ │ └── Variables.php │ └── ruleset.xml │ ├── README.md │ ├── composer.json │ └── phpcsutils-autoload.php ├── sabberworm └── php-css-parser │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── CSSList │ ├── AtRuleBlockList.php │ ├── CSSBlockList.php │ ├── CSSList.php │ ├── Document.php │ └── KeyFrame.php │ ├── Comment │ ├── Comment.php │ └── Commentable.php │ ├── OutputFormat.php │ ├── OutputFormatter.php │ ├── Parser.php │ ├── Parsing │ ├── Anchor.php │ ├── OutputException.php │ ├── ParserState.php │ ├── SourceException.php │ ├── UnexpectedEOFException.php │ └── UnexpectedTokenException.php │ ├── Property │ ├── AtRule.php │ ├── CSSNamespace.php │ ├── Charset.php │ ├── Import.php │ ├── KeyframeSelector.php │ └── Selector.php │ ├── Renderable.php │ ├── Rule │ └── Rule.php │ ├── RuleSet │ ├── AtRuleSet.php │ ├── DeclarationBlock.php │ └── RuleSet.php │ ├── Settings.php │ └── Value │ ├── CSSFunction.php │ ├── CSSString.php │ ├── CalcFunction.php │ ├── CalcRuleValueList.php │ ├── Color.php │ ├── LineName.php │ ├── PrimitiveValue.php │ ├── RuleValueList.php │ ├── Size.php │ ├── URL.php │ ├── Value.php │ └── ValueList.php ├── squizlabs └── php_codesniffer │ ├── CHANGELOG.md │ ├── CodeSniffer.conf │ ├── CodeSniffer.conf.dist │ ├── README.md │ ├── autoload.php │ ├── bin │ ├── phpcbf │ ├── phpcbf.bat │ ├── phpcs │ └── phpcs.bat │ ├── composer.json │ ├── licence.txt │ ├── phpcs.xsd │ ├── src │ ├── Config.php │ ├── Exceptions │ │ ├── DeepExitException.php │ │ ├── RuntimeException.php │ │ └── TokenizerException.php │ ├── Files │ │ ├── DummyFile.php │ │ ├── File.php │ │ ├── FileList.php │ │ └── LocalFile.php │ ├── Filters │ │ ├── ExactMatch.php │ │ ├── Filter.php │ │ ├── GitModified.php │ │ └── GitStaged.php │ ├── Fixer.php │ ├── Generators │ │ ├── Generator.php │ │ ├── HTML.php │ │ ├── Markdown.php │ │ └── Text.php │ ├── Reporter.php │ ├── Reports │ │ ├── Cbf.php │ │ ├── Checkstyle.php │ │ ├── Code.php │ │ ├── Csv.php │ │ ├── Diff.php │ │ ├── Emacs.php │ │ ├── Full.php │ │ ├── Gitblame.php │ │ ├── Hgblame.php │ │ ├── Info.php │ │ ├── Json.php │ │ ├── Junit.php │ │ ├── Notifysend.php │ │ ├── Performance.php │ │ ├── Report.php │ │ ├── Source.php │ │ ├── Summary.php │ │ ├── Svnblame.php │ │ ├── VersionControl.php │ │ └── Xml.php │ ├── Ruleset.php │ ├── Runner.php │ ├── Sniffs │ │ ├── AbstractArraySniff.php │ │ ├── AbstractPatternSniff.php │ │ ├── AbstractScopeSniff.php │ │ ├── AbstractVariableSniff.php │ │ ├── DeprecatedSniff.php │ │ └── Sniff.php │ ├── Standards │ │ ├── Generic │ │ │ ├── Docs │ │ │ │ ├── Arrays │ │ │ │ │ ├── DisallowLongArraySyntaxStandard.xml │ │ │ │ │ └── DisallowShortArraySyntaxStandard.xml │ │ │ │ ├── Classes │ │ │ │ │ ├── DuplicateClassNameStandard.xml │ │ │ │ │ └── OpeningBraceSameLineStandard.xml │ │ │ │ ├── CodeAnalysis │ │ │ │ │ ├── AssignmentInConditionStandard.xml │ │ │ │ │ ├── EmptyPHPStatementStandard.xml │ │ │ │ │ ├── EmptyStatementStandard.xml │ │ │ │ │ ├── ForLoopShouldBeWhileLoopStandard.xml │ │ │ │ │ ├── ForLoopWithTestFunctionCallStandard.xml │ │ │ │ │ ├── JumbledIncrementerStandard.xml │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceStandard.xml │ │ │ │ │ ├── UnconditionalIfStatementStandard.xml │ │ │ │ │ ├── UnnecessaryFinalModifierStandard.xml │ │ │ │ │ ├── UnusedFunctionParameterStandard.xml │ │ │ │ │ └── UselessOverridingMethodStandard.xml │ │ │ │ ├── Commenting │ │ │ │ │ ├── FixmeStandard.xml │ │ │ │ │ └── TodoStandard.xml │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── DisallowYodaConditionsStandard.xml │ │ │ │ │ └── InlineControlStructureStandard.xml │ │ │ │ ├── Debug │ │ │ │ │ ├── CSSLintStandard.xml │ │ │ │ │ ├── ClosureLinterStandard.xml │ │ │ │ │ └── JSHintStandard.xml │ │ │ │ ├── Files │ │ │ │ │ ├── ByteOrderMarkStandard.xml │ │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ │ ├── ExecutableFileStandard.xml │ │ │ │ │ ├── InlineHTMLStandard.xml │ │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ │ ├── OneClassPerFileStandard.xml │ │ │ │ │ ├── OneInterfacePerFileStandard.xml │ │ │ │ │ ├── OneObjectStructurePerFileStandard.xml │ │ │ │ │ └── OneTraitPerFileStandard.xml │ │ │ │ ├── Formatting │ │ │ │ │ ├── DisallowMultipleStatementsStandard.xml │ │ │ │ │ ├── MultipleStatementAlignmentStandard.xml │ │ │ │ │ ├── NoSpaceAfterCastStandard.xml │ │ │ │ │ ├── SpaceAfterCastStandard.xml │ │ │ │ │ ├── SpaceAfterNotStandard.xml │ │ │ │ │ └── SpaceBeforeCastStandard.xml │ │ │ │ ├── Functions │ │ │ │ │ ├── CallTimePassByReferenceStandard.xml │ │ │ │ │ ├── FunctionCallArgumentSpacingStandard.xml │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanStandard.xml │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieStandard.xml │ │ │ │ ├── Metrics │ │ │ │ │ ├── CyclomaticComplexityStandard.xml │ │ │ │ │ └── NestingLevelStandard.xml │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── AbstractClassNamePrefixStandard.xml │ │ │ │ │ ├── CamelCapsFunctionNameStandard.xml │ │ │ │ │ ├── ConstructorNameStandard.xml │ │ │ │ │ ├── InterfaceNameSuffixStandard.xml │ │ │ │ │ ├── TraitNameSuffixStandard.xml │ │ │ │ │ └── UpperCaseConstantNameStandard.xml │ │ │ │ ├── PHP │ │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ │ ├── CharacterBeforePHPOpeningTagStandard.xml │ │ │ │ │ ├── ClosingPHPTagStandard.xml │ │ │ │ │ ├── DeprecatedFunctionsStandard.xml │ │ │ │ │ ├── DisallowAlternativePHPTagsStandard.xml │ │ │ │ │ ├── DisallowRequestSuperglobalStandard.xml │ │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ │ ├── DiscourageGotoStandard.xml │ │ │ │ │ ├── ForbiddenFunctionsStandard.xml │ │ │ │ │ ├── LowerCaseConstantStandard.xml │ │ │ │ │ ├── LowerCaseKeywordStandard.xml │ │ │ │ │ ├── LowerCaseTypeStandard.xml │ │ │ │ │ ├── NoSilencedErrorsStandard.xml │ │ │ │ │ ├── RequireStrictTypesStandard.xml │ │ │ │ │ ├── SAPIUsageStandard.xml │ │ │ │ │ ├── SyntaxStandard.xml │ │ │ │ │ └── UpperCaseConstantStandard.xml │ │ │ │ ├── Strings │ │ │ │ │ └── UnnecessaryStringConcatStandard.xml │ │ │ │ ├── VersionControl │ │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── ArbitraryParenthesesSpacingStandard.xml │ │ │ │ │ ├── DisallowSpaceIndentStandard.xml │ │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ │ ├── IncrementDecrementSpacingStandard.xml │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ ├── ScopeIndentStandard.xml │ │ │ │ │ └── SpreadOperatorSpacingAfterStandard.xml │ │ │ ├── Sniffs │ │ │ │ ├── Arrays │ │ │ │ │ ├── ArrayIndentSniff.php │ │ │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ │ ├── Classes │ │ │ │ │ ├── DuplicateClassNameSniff.php │ │ │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ │ ├── CodeAnalysis │ │ │ │ │ ├── AssignmentInConditionSniff.php │ │ │ │ │ ├── EmptyPHPStatementSniff.php │ │ │ │ │ ├── EmptyStatementSniff.php │ │ │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ │ │ ├── JumbledIncrementerSniff.php │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceSniff.php │ │ │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ │ │ └── UselessOverridingMethodSniff.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── DocCommentSniff.php │ │ │ │ │ ├── FixmeSniff.php │ │ │ │ │ └── TodoSniff.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── DisallowYodaConditionsSniff.php │ │ │ │ │ └── InlineControlStructureSniff.php │ │ │ │ ├── Debug │ │ │ │ │ ├── CSSLintSniff.php │ │ │ │ │ ├── ClosureLinterSniff.php │ │ │ │ │ ├── ESLintSniff.php │ │ │ │ │ └── JSHintSniff.php │ │ │ │ ├── Files │ │ │ │ │ ├── ByteOrderMarkSniff.php │ │ │ │ │ ├── EndFileNewlineSniff.php │ │ │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ │ │ ├── ExecutableFileSniff.php │ │ │ │ │ ├── InlineHTMLSniff.php │ │ │ │ │ ├── LineEndingsSniff.php │ │ │ │ │ ├── LineLengthSniff.php │ │ │ │ │ ├── LowercasedFilenameSniff.php │ │ │ │ │ ├── OneClassPerFileSniff.php │ │ │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ │ │ ├── OneObjectStructurePerFileSniff.php │ │ │ │ │ └── OneTraitPerFileSniff.php │ │ │ │ ├── Formatting │ │ │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ │ │ ├── SpaceAfterCastSniff.php │ │ │ │ │ ├── SpaceAfterNotSniff.php │ │ │ │ │ └── SpaceBeforeCastSniff.php │ │ │ │ ├── Functions │ │ │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ │ ├── Metrics │ │ │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ │ │ └── NestingLevelSniff.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── AbstractClassNamePrefixSniff.php │ │ │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ │ │ ├── ConstructorNameSniff.php │ │ │ │ │ ├── InterfaceNameSuffixSniff.php │ │ │ │ │ ├── TraitNameSuffixSniff.php │ │ │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ │ ├── PHP │ │ │ │ │ ├── BacktickOperatorSniff.php │ │ │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ │ │ ├── ClosingPHPTagSniff.php │ │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ │ │ ├── DisallowRequestSuperglobalSniff.php │ │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ │ ├── DiscourageGotoSniff.php │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ ├── LowerCaseConstantSniff.php │ │ │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ │ │ ├── LowerCaseTypeSniff.php │ │ │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ │ │ ├── RequireStrictTypesSniff.php │ │ │ │ │ ├── SAPIUsageSniff.php │ │ │ │ │ ├── SyntaxSniff.php │ │ │ │ │ └── UpperCaseConstantSniff.php │ │ │ │ ├── Strings │ │ │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ │ ├── VersionControl │ │ │ │ │ ├── GitMergeConflictSniff.php │ │ │ │ │ └── SubversionPropertiesSniff.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── ArbitraryParenthesesSpacingSniff.php │ │ │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ │ │ ├── DisallowTabIndentSniff.php │ │ │ │ │ ├── IncrementDecrementSpacingSniff.php │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ ├── ScopeIndentSniff.php │ │ │ │ │ └── SpreadOperatorSpacingAfterSniff.php │ │ │ ├── Tests │ │ │ │ ├── Arrays │ │ │ │ │ ├── ArrayIndentUnitTest.inc │ │ │ │ │ ├── ArrayIndentUnitTest.inc.fixed │ │ │ │ │ ├── ArrayIndentUnitTest.php │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc.fixed │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc.fixed │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.php │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc.fixed │ │ │ │ │ └── DisallowShortArraySyntaxUnitTest.php │ │ │ │ ├── Classes │ │ │ │ │ ├── DuplicateClassNameUnitTest.1.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.2.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.3.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.4.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.5.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.6.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.php │ │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc │ │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc.fixed │ │ │ │ │ └── OpeningBraceSameLineUnitTest.php │ │ │ │ ├── CodeAnalysis │ │ │ │ │ ├── AssignmentInConditionUnitTest.1.inc │ │ │ │ │ ├── AssignmentInConditionUnitTest.2.inc │ │ │ │ │ ├── AssignmentInConditionUnitTest.3.inc │ │ │ │ │ ├── AssignmentInConditionUnitTest.4.inc │ │ │ │ │ ├── AssignmentInConditionUnitTest.5.inc │ │ │ │ │ ├── AssignmentInConditionUnitTest.6.inc │ │ │ │ │ ├── AssignmentInConditionUnitTest.php │ │ │ │ │ ├── EmptyPHPStatementUnitTest.inc │ │ │ │ │ ├── EmptyPHPStatementUnitTest.inc.fixed │ │ │ │ │ ├── EmptyPHPStatementUnitTest.php │ │ │ │ │ ├── EmptyStatementUnitTest.inc │ │ │ │ │ ├── EmptyStatementUnitTest.php │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.1.inc │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.2.inc │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.3.inc │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.php │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.1.inc │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.2.inc │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.3.inc │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.php │ │ │ │ │ ├── JumbledIncrementerUnitTest.1.inc │ │ │ │ │ ├── JumbledIncrementerUnitTest.2.inc │ │ │ │ │ ├── JumbledIncrementerUnitTest.3.inc │ │ │ │ │ ├── JumbledIncrementerUnitTest.4.inc │ │ │ │ │ ├── JumbledIncrementerUnitTest.php │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceUnitTest.inc │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceUnitTest.php │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.inc │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.php │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.1.inc │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.2.inc │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.php │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.1.inc │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.2.inc │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.3.inc │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.php │ │ │ │ │ ├── UselessOverridingMethodUnitTest.1.inc │ │ │ │ │ ├── UselessOverridingMethodUnitTest.2.inc │ │ │ │ │ ├── UselessOverridingMethodUnitTest.3.inc │ │ │ │ │ ├── UselessOverridingMethodUnitTest.4.inc │ │ │ │ │ ├── UselessOverridingMethodUnitTest.5.inc │ │ │ │ │ ├── UselessOverridingMethodUnitTest.6.inc │ │ │ │ │ └── UselessOverridingMethodUnitTest.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── DocCommentUnitTest.1.inc │ │ │ │ │ ├── DocCommentUnitTest.1.inc.fixed │ │ │ │ │ ├── DocCommentUnitTest.1.js │ │ │ │ │ ├── DocCommentUnitTest.1.js.fixed │ │ │ │ │ ├── DocCommentUnitTest.2.inc │ │ │ │ │ ├── DocCommentUnitTest.2.js │ │ │ │ │ ├── DocCommentUnitTest.php │ │ │ │ │ ├── FixmeUnitTest.inc │ │ │ │ │ ├── FixmeUnitTest.js │ │ │ │ │ ├── FixmeUnitTest.php │ │ │ │ │ ├── TodoUnitTest.inc │ │ │ │ │ ├── TodoUnitTest.js │ │ │ │ │ └── TodoUnitTest.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── DisallowYodaConditionsUnitTest.inc │ │ │ │ │ ├── DisallowYodaConditionsUnitTest.php │ │ │ │ │ ├── InlineControlStructureUnitTest.1.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.1.inc.fixed │ │ │ │ │ ├── InlineControlStructureUnitTest.2.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.3.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.4.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.5.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.6.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.7.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.js │ │ │ │ │ ├── InlineControlStructureUnitTest.js.fixed │ │ │ │ │ └── InlineControlStructureUnitTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── CSSLintUnitTest.css │ │ │ │ │ ├── CSSLintUnitTest.php │ │ │ │ │ ├── ClosureLinterUnitTest.js │ │ │ │ │ ├── ClosureLinterUnitTest.php │ │ │ │ │ ├── ESLintUnitTest.js │ │ │ │ │ ├── ESLintUnitTest.php │ │ │ │ │ ├── JSHintUnitTest.js │ │ │ │ │ └── JSHintUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── ByteOrderMarkUnitTest.1.inc │ │ │ │ │ ├── ByteOrderMarkUnitTest.2.inc │ │ │ │ │ ├── ByteOrderMarkUnitTest.3.inc │ │ │ │ │ ├── ByteOrderMarkUnitTest.4.inc │ │ │ │ │ ├── ByteOrderMarkUnitTest.5.inc │ │ │ │ │ ├── ByteOrderMarkUnitTest.php │ │ │ │ │ ├── EndFileNewlineUnitTest.1.css │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.1.js │ │ │ │ │ ├── EndFileNewlineUnitTest.2.css │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.2.js │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.php │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.10.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.css │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.js │ │ │ │ │ ├── EndFileNoNewlineUnitTest.4.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.5.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.7.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.8.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.8.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.9.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.9.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.php │ │ │ │ │ ├── ExecutableFileUnitTest.1.inc │ │ │ │ │ ├── ExecutableFileUnitTest.2.inc │ │ │ │ │ ├── ExecutableFileUnitTest.3.inc │ │ │ │ │ ├── ExecutableFileUnitTest.4.inc │ │ │ │ │ ├── ExecutableFileUnitTest.php │ │ │ │ │ ├── InlineHTMLUnitTest.1.inc │ │ │ │ │ ├── InlineHTMLUnitTest.2.inc │ │ │ │ │ ├── InlineHTMLUnitTest.3.inc │ │ │ │ │ ├── InlineHTMLUnitTest.4.inc │ │ │ │ │ ├── InlineHTMLUnitTest.5.inc │ │ │ │ │ ├── InlineHTMLUnitTest.6.inc │ │ │ │ │ ├── InlineHTMLUnitTest.7.inc │ │ │ │ │ ├── InlineHTMLUnitTest.php │ │ │ │ │ ├── LineEndingsUnitTest.1.inc │ │ │ │ │ ├── LineEndingsUnitTest.1.inc.fixed │ │ │ │ │ ├── LineEndingsUnitTest.2.inc │ │ │ │ │ ├── LineEndingsUnitTest.2.inc.fixed │ │ │ │ │ ├── LineEndingsUnitTest.css │ │ │ │ │ ├── LineEndingsUnitTest.css.fixed │ │ │ │ │ ├── LineEndingsUnitTest.js │ │ │ │ │ ├── LineEndingsUnitTest.js.fixed │ │ │ │ │ ├── LineEndingsUnitTest.php │ │ │ │ │ ├── LineLengthUnitTest.1.inc │ │ │ │ │ ├── LineLengthUnitTest.2.inc │ │ │ │ │ ├── LineLengthUnitTest.3.inc │ │ │ │ │ ├── LineLengthUnitTest.4.inc │ │ │ │ │ ├── LineLengthUnitTest.php │ │ │ │ │ ├── LowercasedFilenameUnitTest.1.inc │ │ │ │ │ ├── LowercasedFilenameUnitTest.2.inc │ │ │ │ │ ├── LowercasedFilenameUnitTest.php │ │ │ │ │ ├── OneClassPerFileUnitTest.inc │ │ │ │ │ ├── OneClassPerFileUnitTest.php │ │ │ │ │ ├── OneInterfacePerFileUnitTest.inc │ │ │ │ │ ├── OneInterfacePerFileUnitTest.php │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.inc │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.php │ │ │ │ │ ├── OneTraitPerFileUnitTest.inc │ │ │ │ │ └── OneTraitPerFileUnitTest.php │ │ │ │ ├── Formatting │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc.fixed │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.php │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc.fixed │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js.fixed │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.php │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc.fixed │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.php │ │ │ │ │ ├── SpaceAfterCastUnitTest.inc │ │ │ │ │ ├── SpaceAfterCastUnitTest.inc.fixed │ │ │ │ │ ├── SpaceAfterCastUnitTest.php │ │ │ │ │ ├── SpaceAfterNotUnitTest.inc │ │ │ │ │ ├── SpaceAfterNotUnitTest.inc.fixed │ │ │ │ │ ├── SpaceAfterNotUnitTest.js │ │ │ │ │ ├── SpaceAfterNotUnitTest.js.fixed │ │ │ │ │ ├── SpaceAfterNotUnitTest.php │ │ │ │ │ ├── SpaceBeforeCastUnitTest.inc │ │ │ │ │ ├── SpaceBeforeCastUnitTest.inc.fixed │ │ │ │ │ └── SpaceBeforeCastUnitTest.php │ │ │ │ ├── Functions │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.1.inc │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.2.inc │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.3.inc │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.php │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.inc │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.inc.fixed │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.php │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.php │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.inc │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.inc.fixed │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieUnitTest.php │ │ │ │ ├── Metrics │ │ │ │ │ ├── CyclomaticComplexityUnitTest.inc │ │ │ │ │ ├── CyclomaticComplexityUnitTest.php │ │ │ │ │ ├── NestingLevelUnitTest.inc │ │ │ │ │ └── NestingLevelUnitTest.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.inc │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.php │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.inc │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.php │ │ │ │ │ ├── ConstructorNameUnitTest.inc │ │ │ │ │ ├── ConstructorNameUnitTest.php │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.inc │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.php │ │ │ │ │ ├── TraitNameSuffixUnitTest.inc │ │ │ │ │ ├── TraitNameSuffixUnitTest.php │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.inc │ │ │ │ │ └── UpperCaseConstantNameUnitTest.php │ │ │ │ ├── PHP │ │ │ │ │ ├── BacktickOperatorUnitTest.inc │ │ │ │ │ ├── BacktickOperatorUnitTest.php │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.1.inc │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.2.inc │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.3.inc │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.php │ │ │ │ │ ├── ClosingPHPTagUnitTest.1.inc │ │ │ │ │ ├── ClosingPHPTagUnitTest.2.inc │ │ │ │ │ ├── ClosingPHPTagUnitTest.php │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.inc │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.php │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc.fixed │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc.fixed │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.3.inc │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.php │ │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.inc │ │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.php │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc.fixed │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc.fixed │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.3.inc │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.php │ │ │ │ │ ├── DiscourageGotoUnitTest.inc │ │ │ │ │ ├── DiscourageGotoUnitTest.php │ │ │ │ │ ├── ForbiddenFunctionsUnitTest.inc │ │ │ │ │ ├── ForbiddenFunctionsUnitTest.php │ │ │ │ │ ├── LowerCaseConstantUnitTest.inc │ │ │ │ │ ├── LowerCaseConstantUnitTest.inc.fixed │ │ │ │ │ ├── LowerCaseConstantUnitTest.js │ │ │ │ │ ├── LowerCaseConstantUnitTest.js.fixed │ │ │ │ │ ├── LowerCaseConstantUnitTest.php │ │ │ │ │ ├── LowerCaseKeywordUnitTest.inc │ │ │ │ │ ├── LowerCaseKeywordUnitTest.inc.fixed │ │ │ │ │ ├── LowerCaseKeywordUnitTest.php │ │ │ │ │ ├── LowerCaseTypeUnitTest.inc │ │ │ │ │ ├── LowerCaseTypeUnitTest.inc.fixed │ │ │ │ │ ├── LowerCaseTypeUnitTest.php │ │ │ │ │ ├── NoSilencedErrorsUnitTest.inc │ │ │ │ │ ├── NoSilencedErrorsUnitTest.php │ │ │ │ │ ├── RequireStrictTypesUnitTest.1.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.10.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.11.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.11.inc.fixed │ │ │ │ │ ├── RequireStrictTypesUnitTest.12.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.12.inc.fixed │ │ │ │ │ ├── RequireStrictTypesUnitTest.13.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.14.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.14.inc.fixed │ │ │ │ │ ├── RequireStrictTypesUnitTest.15.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.15.inc.fixed │ │ │ │ │ ├── RequireStrictTypesUnitTest.2.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.3.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.4.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.5.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.6.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.7.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.8.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.9.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.php │ │ │ │ │ ├── SAPIUsageUnitTest.inc │ │ │ │ │ ├── SAPIUsageUnitTest.php │ │ │ │ │ ├── SyntaxUnitTest.1.inc │ │ │ │ │ ├── SyntaxUnitTest.2.inc │ │ │ │ │ ├── SyntaxUnitTest.php │ │ │ │ │ ├── UpperCaseConstantUnitTest.inc │ │ │ │ │ ├── UpperCaseConstantUnitTest.inc.fixed │ │ │ │ │ └── UpperCaseConstantUnitTest.php │ │ │ │ ├── Strings │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.inc │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.js │ │ │ │ │ └── UnnecessaryStringConcatUnitTest.php │ │ │ │ ├── VersionControl │ │ │ │ │ ├── GitMergeConflictUnitTest.1.css │ │ │ │ │ ├── GitMergeConflictUnitTest.1.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.2.css │ │ │ │ │ ├── GitMergeConflictUnitTest.2.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.3.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.4.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.5.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.6.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.7.inc │ │ │ │ │ ├── GitMergeConflictUnitTest.js │ │ │ │ │ ├── GitMergeConflictUnitTest.php │ │ │ │ │ ├── SubversionPropertiesUnitTest.inc │ │ │ │ │ └── SubversionPropertiesUnitTest.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.1.inc │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.1.inc.fixed │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.2.inc │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.php │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc.fixed │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc.fixed │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.3.inc │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.3.inc.fixed │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css.fixed │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js.fixed │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.php │ │ │ │ │ ├── DisallowTabIndentUnitTest.1.inc │ │ │ │ │ ├── DisallowTabIndentUnitTest.1.inc.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.2.inc │ │ │ │ │ ├── DisallowTabIndentUnitTest.2.inc.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.3.inc │ │ │ │ │ ├── DisallowTabIndentUnitTest.3.inc.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.css │ │ │ │ │ ├── DisallowTabIndentUnitTest.css.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.js │ │ │ │ │ ├── DisallowTabIndentUnitTest.js.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.php │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc.fixed │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js.fixed │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.php │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.1.inc │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.1.inc.fixed │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.2.inc │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ │ ├── ScopeIndentUnitTest.1.inc │ │ │ │ │ ├── ScopeIndentUnitTest.1.inc.fixed │ │ │ │ │ ├── ScopeIndentUnitTest.1.js │ │ │ │ │ ├── ScopeIndentUnitTest.1.js.fixed │ │ │ │ │ ├── ScopeIndentUnitTest.2.inc │ │ │ │ │ ├── ScopeIndentUnitTest.2.inc.fixed │ │ │ │ │ ├── ScopeIndentUnitTest.3.inc │ │ │ │ │ ├── ScopeIndentUnitTest.3.inc.fixed │ │ │ │ │ ├── ScopeIndentUnitTest.4.inc │ │ │ │ │ ├── ScopeIndentUnitTest.php │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.inc │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.inc.fixed │ │ │ │ │ └── SpreadOperatorSpacingAfterUnitTest.php │ │ │ └── ruleset.xml │ │ ├── MySource │ │ │ ├── Sniffs │ │ │ │ ├── CSS │ │ │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ │ ├── Channels │ │ │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ │ │ ├── IncludeSystemSniff.php │ │ │ │ │ └── UnusedSystemSniff.php │ │ │ │ ├── Commenting │ │ │ │ │ └── FunctionCommentSniff.php │ │ │ │ ├── Debug │ │ │ │ │ ├── DebugCodeSniff.php │ │ │ │ │ └── FirebugConsoleSniff.php │ │ │ │ ├── Objects │ │ │ │ │ ├── AssignThisSniff.php │ │ │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ │ │ └── DisallowNewWidgetSniff.php │ │ │ │ ├── PHP │ │ │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ │ │ ├── EvalObjectFactorySniff.php │ │ │ │ │ ├── GetRequestDataSniff.php │ │ │ │ │ └── ReturnFunctionValueSniff.php │ │ │ │ └── Strings │ │ │ │ │ └── JoinStringsSniff.php │ │ │ ├── Tests │ │ │ │ ├── CSS │ │ │ │ │ ├── BrowserSpecificStylesUnitTest.css │ │ │ │ │ └── BrowserSpecificStylesUnitTest.php │ │ │ │ ├── Channels │ │ │ │ │ ├── DisallowSelfActionsUnitTest.inc │ │ │ │ │ ├── DisallowSelfActionsUnitTest.php │ │ │ │ │ ├── IncludeSystemUnitTest.inc │ │ │ │ │ ├── IncludeSystemUnitTest.php │ │ │ │ │ ├── UnusedSystemUnitTest.inc │ │ │ │ │ └── UnusedSystemUnitTest.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ └── FunctionCommentUnitTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── DebugCodeUnitTest.inc │ │ │ │ │ ├── DebugCodeUnitTest.php │ │ │ │ │ ├── FirebugConsoleUnitTest.js │ │ │ │ │ └── FirebugConsoleUnitTest.php │ │ │ │ ├── Objects │ │ │ │ │ ├── AssignThisUnitTest.js │ │ │ │ │ ├── AssignThisUnitTest.php │ │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.js │ │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.php │ │ │ │ │ ├── DisallowNewWidgetUnitTest.inc │ │ │ │ │ └── DisallowNewWidgetUnitTest.php │ │ │ │ ├── PHP │ │ │ │ │ ├── AjaxNullComparisonUnitTest.inc │ │ │ │ │ ├── AjaxNullComparisonUnitTest.php │ │ │ │ │ ├── EvalObjectFactoryUnitTest.inc │ │ │ │ │ ├── EvalObjectFactoryUnitTest.php │ │ │ │ │ ├── GetRequestDataUnitTest.inc │ │ │ │ │ ├── GetRequestDataUnitTest.php │ │ │ │ │ ├── ReturnFunctionValueUnitTest.inc │ │ │ │ │ └── ReturnFunctionValueUnitTest.php │ │ │ │ └── Strings │ │ │ │ │ ├── JoinStringsUnitTest.js │ │ │ │ │ └── JoinStringsUnitTest.php │ │ │ └── ruleset.xml │ │ ├── PEAR │ │ │ ├── Docs │ │ │ │ ├── Classes │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ ├── Commenting │ │ │ │ │ ├── ClassCommentStandard.xml │ │ │ │ │ ├── FileCommentStandard.xml │ │ │ │ │ ├── FunctionCommentStandard.xml │ │ │ │ │ └── InlineCommentStandard.xml │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlSignatureStandard.xml │ │ │ │ │ └── MultiLineConditionStandard.xml │ │ │ │ ├── Files │ │ │ │ │ ├── IncludingFileStandard.xml │ │ │ │ │ └── LineLengthStandard.xml │ │ │ │ ├── Formatting │ │ │ │ │ └── MultiLineAssignmentStandard.xml │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ ├── FunctionDeclarationStandard.xml │ │ │ │ │ └── ValidDefaultValueStandard.xml │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── ValidClassNameStandard.xml │ │ │ │ │ ├── ValidFunctionNameStandard.xml │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── ObjectOperatorIndentStandard.xml │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ ├── Sniffs │ │ │ │ ├── Classes │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ └── InlineCommentSniff.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ └── MultiLineConditionSniff.php │ │ │ │ ├── Files │ │ │ │ │ └── IncludingFileSniff.php │ │ │ │ ├── Formatting │ │ │ │ │ └── MultiLineAssignmentSniff.php │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ └── ValidDefaultValueSniff.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── ValidClassNameSniff.php │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ ├── Tests │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc.fixed │ │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ │ └── InlineCommentUnitTest.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlSignatureUnitTest.inc │ │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ │ ├── MultiLineConditionUnitTest.inc │ │ │ │ │ ├── MultiLineConditionUnitTest.inc.fixed │ │ │ │ │ ├── MultiLineConditionUnitTest.js │ │ │ │ │ ├── MultiLineConditionUnitTest.js.fixed │ │ │ │ │ └── MultiLineConditionUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── IncludingFileUnitTest.inc │ │ │ │ │ ├── IncludingFileUnitTest.inc.fixed │ │ │ │ │ └── IncludingFileUnitTest.php │ │ │ │ ├── Formatting │ │ │ │ │ ├── MultiLineAssignmentUnitTest.inc │ │ │ │ │ └── MultiLineAssignmentUnitTest.php │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ │ ├── FunctionCallSignatureUnitTest.js │ │ │ │ │ ├── FunctionCallSignatureUnitTest.js.fixed │ │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc │ │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc.fixed │ │ │ │ │ ├── FunctionDeclarationUnitTest.2.inc │ │ │ │ │ ├── FunctionDeclarationUnitTest.js │ │ │ │ │ ├── FunctionDeclarationUnitTest.js.fixed │ │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ │ ├── ValidDefaultValueUnitTest.inc │ │ │ │ │ └── ValidDefaultValueUnitTest.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ │ ├── ValidClassNameUnitTest.php │ │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc.fixed │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.php │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ │ ├── ScopeIndentUnitTest.inc │ │ │ │ │ └── ScopeIndentUnitTest.php │ │ │ └── ruleset.xml │ │ ├── PSR1 │ │ │ ├── Docs │ │ │ │ ├── Classes │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ ├── Files │ │ │ │ │ └── SideEffectsStandard.xml │ │ │ │ └── Methods │ │ │ │ │ └── CamelCapsMethodNameStandard.xml │ │ │ ├── Sniffs │ │ │ │ ├── Classes │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ ├── Files │ │ │ │ │ └── SideEffectsSniff.php │ │ │ │ └── Methods │ │ │ │ │ └── CamelCapsMethodNameSniff.php │ │ │ ├── Tests │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ │ ├── ClassDeclarationUnitTest.3.inc │ │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── SideEffectsUnitTest.1.inc │ │ │ │ │ ├── SideEffectsUnitTest.10.inc │ │ │ │ │ ├── SideEffectsUnitTest.11.inc │ │ │ │ │ ├── SideEffectsUnitTest.12.inc │ │ │ │ │ ├── SideEffectsUnitTest.13.inc │ │ │ │ │ ├── SideEffectsUnitTest.14.inc │ │ │ │ │ ├── SideEffectsUnitTest.15.inc │ │ │ │ │ ├── SideEffectsUnitTest.16.inc │ │ │ │ │ ├── SideEffectsUnitTest.17.inc │ │ │ │ │ ├── SideEffectsUnitTest.2.inc │ │ │ │ │ ├── SideEffectsUnitTest.3.inc │ │ │ │ │ ├── SideEffectsUnitTest.4.inc │ │ │ │ │ ├── SideEffectsUnitTest.5.inc │ │ │ │ │ ├── SideEffectsUnitTest.6.inc │ │ │ │ │ ├── SideEffectsUnitTest.7.inc │ │ │ │ │ ├── SideEffectsUnitTest.8.inc │ │ │ │ │ ├── SideEffectsUnitTest.9.inc │ │ │ │ │ └── SideEffectsUnitTest.php │ │ │ │ └── Methods │ │ │ │ │ ├── CamelCapsMethodNameUnitTest.inc │ │ │ │ │ └── CamelCapsMethodNameUnitTest.php │ │ │ └── ruleset.xml │ │ ├── PSR12 │ │ │ ├── Docs │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassInstantiationStandard.xml │ │ │ │ │ ├── ClosingBraceStandard.xml │ │ │ │ │ └── OpeningBraceSpaceStandard.xml │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── BooleanOperatorPlacementStandard.xml │ │ │ │ │ └── ControlStructureSpacingStandard.xml │ │ │ │ ├── Files │ │ │ │ │ ├── ImportStatementStandard.xml │ │ │ │ │ └── OpenTagStandard.xml │ │ │ │ ├── Functions │ │ │ │ │ ├── NullableTypeDeclarationStandard.xml │ │ │ │ │ └── ReturnTypeDeclarationStandard.xml │ │ │ │ ├── Keywords │ │ │ │ │ └── ShortFormTypeKeywordsStandard.xml │ │ │ │ ├── Namespaces │ │ │ │ │ └── CompoundNamespaceDepthStandard.xml │ │ │ │ ├── Operators │ │ │ │ │ └── OperatorSpacingStandard.xml │ │ │ │ └── Properties │ │ │ │ │ └── ConstantVisibilityStandard.xml │ │ │ ├── Sniffs │ │ │ │ ├── Classes │ │ │ │ │ ├── AnonClassDeclarationSniff.php │ │ │ │ │ ├── ClassInstantiationSniff.php │ │ │ │ │ ├── ClosingBraceSniff.php │ │ │ │ │ └── OpeningBraceSpaceSniff.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── BooleanOperatorPlacementSniff.php │ │ │ │ │ └── ControlStructureSpacingSniff.php │ │ │ │ ├── Files │ │ │ │ │ ├── DeclareStatementSniff.php │ │ │ │ │ ├── FileHeaderSniff.php │ │ │ │ │ ├── ImportStatementSniff.php │ │ │ │ │ └── OpenTagSniff.php │ │ │ │ ├── Functions │ │ │ │ │ ├── NullableTypeDeclarationSniff.php │ │ │ │ │ └── ReturnTypeDeclarationSniff.php │ │ │ │ ├── Keywords │ │ │ │ │ └── ShortFormTypeKeywordsSniff.php │ │ │ │ ├── Namespaces │ │ │ │ │ └── CompoundNamespaceDepthSniff.php │ │ │ │ ├── Operators │ │ │ │ │ └── OperatorSpacingSniff.php │ │ │ │ ├── Properties │ │ │ │ │ └── ConstantVisibilitySniff.php │ │ │ │ └── Traits │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ ├── Tests │ │ │ │ ├── Classes │ │ │ │ │ ├── AnonClassDeclarationUnitTest.inc │ │ │ │ │ ├── AnonClassDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── AnonClassDeclarationUnitTest.php │ │ │ │ │ ├── ClassInstantiationUnitTest.inc │ │ │ │ │ ├── ClassInstantiationUnitTest.inc.fixed │ │ │ │ │ ├── ClassInstantiationUnitTest.php │ │ │ │ │ ├── ClosingBraceUnitTest.inc │ │ │ │ │ ├── ClosingBraceUnitTest.php │ │ │ │ │ ├── OpeningBraceSpaceUnitTest.inc │ │ │ │ │ ├── OpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ │ └── OpeningBraceSpaceUnitTest.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc.fixed │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.php │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ └── ControlStructureSpacingUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── DeclareStatementUnitTest.1.inc │ │ │ │ │ ├── DeclareStatementUnitTest.1.inc.fixed │ │ │ │ │ ├── DeclareStatementUnitTest.2.inc │ │ │ │ │ ├── DeclareStatementUnitTest.php │ │ │ │ │ ├── FileHeaderUnitTest.1.inc │ │ │ │ │ ├── FileHeaderUnitTest.10.inc │ │ │ │ │ ├── FileHeaderUnitTest.10.inc.fixed │ │ │ │ │ ├── FileHeaderUnitTest.11.inc │ │ │ │ │ ├── FileHeaderUnitTest.11.inc.fixed │ │ │ │ │ ├── FileHeaderUnitTest.12.inc │ │ │ │ │ ├── FileHeaderUnitTest.12.inc.fixed │ │ │ │ │ ├── FileHeaderUnitTest.13.inc │ │ │ │ │ ├── FileHeaderUnitTest.14.inc │ │ │ │ │ ├── FileHeaderUnitTest.15.inc │ │ │ │ │ ├── FileHeaderUnitTest.16.inc │ │ │ │ │ ├── FileHeaderUnitTest.17.inc │ │ │ │ │ ├── FileHeaderUnitTest.18.inc │ │ │ │ │ ├── FileHeaderUnitTest.2.inc │ │ │ │ │ ├── FileHeaderUnitTest.2.inc.fixed │ │ │ │ │ ├── FileHeaderUnitTest.3.inc │ │ │ │ │ ├── FileHeaderUnitTest.4.inc │ │ │ │ │ ├── FileHeaderUnitTest.4.inc.fixed │ │ │ │ │ ├── FileHeaderUnitTest.5.inc │ │ │ │ │ ├── FileHeaderUnitTest.6.inc │ │ │ │ │ ├── FileHeaderUnitTest.7.inc │ │ │ │ │ ├── FileHeaderUnitTest.7.inc.fixed │ │ │ │ │ ├── FileHeaderUnitTest.8.inc │ │ │ │ │ ├── FileHeaderUnitTest.9.inc │ │ │ │ │ ├── FileHeaderUnitTest.php │ │ │ │ │ ├── ImportStatementUnitTest.inc │ │ │ │ │ ├── ImportStatementUnitTest.inc.fixed │ │ │ │ │ ├── ImportStatementUnitTest.php │ │ │ │ │ ├── OpenTagUnitTest.1.inc │ │ │ │ │ ├── OpenTagUnitTest.2.inc │ │ │ │ │ ├── OpenTagUnitTest.2.inc.fixed │ │ │ │ │ ├── OpenTagUnitTest.3.inc │ │ │ │ │ ├── OpenTagUnitTest.4.inc │ │ │ │ │ ├── OpenTagUnitTest.5.inc │ │ │ │ │ └── OpenTagUnitTest.php │ │ │ │ ├── Functions │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.php │ │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc │ │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc.fixed │ │ │ │ │ └── ReturnTypeDeclarationUnitTest.php │ │ │ │ ├── Keywords │ │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc │ │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc.fixed │ │ │ │ │ └── ShortFormTypeKeywordsUnitTest.php │ │ │ │ ├── Namespaces │ │ │ │ │ ├── CompoundNamespaceDepthUnitTest.inc │ │ │ │ │ └── CompoundNamespaceDepthUnitTest.php │ │ │ │ ├── Operators │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc.fixed │ │ │ │ │ ├── OperatorSpacingUnitTest.2.inc │ │ │ │ │ └── OperatorSpacingUnitTest.php │ │ │ │ ├── Properties │ │ │ │ │ ├── ConstantVisibilityUnitTest.inc │ │ │ │ │ └── ConstantVisibilityUnitTest.php │ │ │ │ └── Traits │ │ │ │ │ ├── UseDeclarationUnitTest.inc │ │ │ │ │ ├── UseDeclarationUnitTest.inc.fixed │ │ │ │ │ └── UseDeclarationUnitTest.php │ │ │ └── ruleset.xml │ │ ├── PSR2 │ │ │ ├── Docs │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationStandard.xml │ │ │ │ │ └── PropertyDeclarationStandard.xml │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlStructureSpacingStandard.xml │ │ │ │ │ ├── ElseIfDeclarationStandard.xml │ │ │ │ │ └── SwitchDeclarationStandard.xml │ │ │ │ ├── Files │ │ │ │ │ ├── ClosingTagStandard.xml │ │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ │ ├── Methods │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ ├── FunctionClosingBraceStandard.xml │ │ │ │ │ └── MethodDeclarationStandard.xml │ │ │ │ └── Namespaces │ │ │ │ │ ├── NamespaceDeclarationStandard.xml │ │ │ │ │ └── UseDeclarationStandard.xml │ │ │ ├── Sniffs │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ └── PropertyDeclarationSniff.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ ├── Files │ │ │ │ │ ├── ClosingTagSniff.php │ │ │ │ │ └── EndFileNewlineSniff.php │ │ │ │ ├── Methods │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ │ │ └── MethodDeclarationSniff.php │ │ │ │ └── Namespaces │ │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ ├── Tests │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ │ ├── PropertyDeclarationUnitTest.inc │ │ │ │ │ ├── PropertyDeclarationUnitTest.inc.fixed │ │ │ │ │ └── PropertyDeclarationUnitTest.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.php │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.11.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.11.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.12.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.12.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.13.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.13.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.14.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc.fixed │ │ │ │ │ └── EndFileNewlineUnitTest.php │ │ │ │ ├── Methods │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ │ ├── FunctionClosingBraceUnitTest.inc │ │ │ │ │ ├── FunctionClosingBraceUnitTest.inc.fixed │ │ │ │ │ ├── FunctionClosingBraceUnitTest.php │ │ │ │ │ ├── MethodDeclarationUnitTest.inc │ │ │ │ │ ├── MethodDeclarationUnitTest.inc.fixed │ │ │ │ │ └── MethodDeclarationUnitTest.php │ │ │ │ └── Namespaces │ │ │ │ │ ├── NamespaceDeclarationUnitTest.inc │ │ │ │ │ ├── NamespaceDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── NamespaceDeclarationUnitTest.php │ │ │ │ │ ├── UseDeclarationUnitTest.1.inc │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.15.inc │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.17.inc │ │ │ │ │ ├── UseDeclarationUnitTest.2.inc │ │ │ │ │ ├── UseDeclarationUnitTest.2.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.4.inc │ │ │ │ │ ├── UseDeclarationUnitTest.5.inc │ │ │ │ │ ├── UseDeclarationUnitTest.5.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.6.inc │ │ │ │ │ ├── UseDeclarationUnitTest.7.inc │ │ │ │ │ ├── UseDeclarationUnitTest.8.inc │ │ │ │ │ ├── UseDeclarationUnitTest.9.inc │ │ │ │ │ └── UseDeclarationUnitTest.php │ │ │ └── ruleset.xml │ │ ├── Squiz │ │ │ ├── Docs │ │ │ │ ├── Arrays │ │ │ │ │ ├── ArrayBracketSpacingStandard.xml │ │ │ │ │ └── ArrayDeclarationStandard.xml │ │ │ │ ├── Classes │ │ │ │ │ ├── LowercaseClassKeywordsStandard.xml │ │ │ │ │ └── SelfMemberReferenceStandard.xml │ │ │ │ ├── Commenting │ │ │ │ │ ├── DocCommentAlignmentStandard.xml │ │ │ │ │ └── FunctionCommentThrowTagStandard.xml │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ForEachLoopDeclarationStandard.xml │ │ │ │ │ ├── ForLoopDeclarationStandard.xml │ │ │ │ │ └── LowercaseDeclarationStandard.xml │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionDuplicateArgumentStandard.xml │ │ │ │ │ └── LowercaseFunctionKeywordsStandard.xml │ │ │ │ ├── Scope │ │ │ │ │ └── StaticThisUsageStandard.xml │ │ │ │ ├── Strings │ │ │ │ │ └── EchoedStringsStandard.xml │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── CastSpacingStandard.xml │ │ │ │ │ ├── FunctionOpeningBraceStandard.xml │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ ├── MemberVarSpacingStandard.xml │ │ │ │ │ ├── ObjectOperatorSpacingStandard.xml │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ ├── ScopeKeywordSpacingStandard.xml │ │ │ │ │ ├── SemicolonSpacingStandard.xml │ │ │ │ │ └── SuperfluousWhitespaceStandard.xml │ │ │ ├── Sniffs │ │ │ │ ├── Arrays │ │ │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ │ │ └── ArrayDeclarationSniff.php │ │ │ │ ├── CSS │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ │ │ ├── ForbiddenStylesSniff.php │ │ │ │ │ ├── IndentationSniff.php │ │ │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ │ │ ├── MissingColonSniff.php │ │ │ │ │ ├── NamedColoursSniff.php │ │ │ │ │ ├── OpacitySniff.php │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ └── ShorthandSizeSniff.php │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ ├── ClassFileNameSniff.php │ │ │ │ │ ├── DuplicatePropertySniff.php │ │ │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ │ │ └── ValidClassNameSniff.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── BlockCommentSniff.php │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ │ │ ├── InlineCommentSniff.php │ │ │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ │ │ ├── PostStatementCommentSniff.php │ │ │ │ │ └── VariableCommentSniff.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ ├── Debug │ │ │ │ │ ├── JSLintSniff.php │ │ │ │ │ └── JavaScriptLintSniff.php │ │ │ │ ├── Files │ │ │ │ │ └── FileExtensionSniff.php │ │ │ │ ├── Formatting │ │ │ │ │ └── OperatorBracketSniff.php │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ │ │ ├── GlobalFunctionSniff.php │ │ │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ ├── Objects │ │ │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ │ │ ├── ObjectInstantiationSniff.php │ │ │ │ │ └── ObjectMemberCommaSniff.php │ │ │ │ ├── Operators │ │ │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ │ ├── PHP │ │ │ │ │ ├── CommentedOutCodeSniff.php │ │ │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ │ │ ├── DisallowInlineIfSniff.php │ │ │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ │ ├── EmbeddedPhpSniff.php │ │ │ │ │ ├── EvalSniff.php │ │ │ │ │ ├── GlobalKeywordSniff.php │ │ │ │ │ ├── HeredocSniff.php │ │ │ │ │ ├── InnerFunctionsSniff.php │ │ │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ │ │ └── NonExecutableCodeSniff.php │ │ │ │ ├── Scope │ │ │ │ │ ├── MemberVarScopeSniff.php │ │ │ │ │ ├── MethodScopeSniff.php │ │ │ │ │ └── StaticThisUsageSniff.php │ │ │ │ ├── Strings │ │ │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ │ │ └── EchoedStringsSniff.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── CastSpacingSniff.php │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ │ │ ├── MemberVarSpacingSniff.php │ │ │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ │ │ ├── OperatorSpacingSniff.php │ │ │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ └── SuperfluousWhitespaceSniff.php │ │ │ ├── Tests │ │ │ │ ├── Arrays │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc.fixed │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.php │ │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc │ │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc.fixed │ │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc │ │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc.fixed │ │ │ │ │ └── ArrayDeclarationUnitTest.php │ │ │ │ ├── CSS │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css.fixed │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.php │ │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.css │ │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.php │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css.fixed │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.php │ │ │ │ │ ├── ColonSpacingUnitTest.css │ │ │ │ │ ├── ColonSpacingUnitTest.css.fixed │ │ │ │ │ ├── ColonSpacingUnitTest.php │ │ │ │ │ ├── ColourDefinitionUnitTest.css │ │ │ │ │ ├── ColourDefinitionUnitTest.css.fixed │ │ │ │ │ ├── ColourDefinitionUnitTest.php │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css.fixed │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.php │ │ │ │ │ ├── DuplicateClassDefinitionUnitTest.css │ │ │ │ │ ├── DuplicateClassDefinitionUnitTest.php │ │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.css │ │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.php │ │ │ │ │ ├── EmptyClassDefinitionUnitTest.css │ │ │ │ │ ├── EmptyClassDefinitionUnitTest.php │ │ │ │ │ ├── EmptyStyleDefinitionUnitTest.css │ │ │ │ │ ├── EmptyStyleDefinitionUnitTest.php │ │ │ │ │ ├── ForbiddenStylesUnitTest.css │ │ │ │ │ ├── ForbiddenStylesUnitTest.css.fixed │ │ │ │ │ ├── ForbiddenStylesUnitTest.php │ │ │ │ │ ├── IndentationUnitTest.1.css │ │ │ │ │ ├── IndentationUnitTest.1.css.fixed │ │ │ │ │ ├── IndentationUnitTest.2.css │ │ │ │ │ ├── IndentationUnitTest.php │ │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.css │ │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.php │ │ │ │ │ ├── MissingColonUnitTest.css │ │ │ │ │ ├── MissingColonUnitTest.php │ │ │ │ │ ├── NamedColoursUnitTest.css │ │ │ │ │ ├── NamedColoursUnitTest.php │ │ │ │ │ ├── OpacityUnitTest.css │ │ │ │ │ ├── OpacityUnitTest.css.fixed │ │ │ │ │ ├── OpacityUnitTest.php │ │ │ │ │ ├── SemicolonSpacingUnitTest.css │ │ │ │ │ ├── SemicolonSpacingUnitTest.css.fixed │ │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ │ ├── ShorthandSizeUnitTest.css │ │ │ │ │ ├── ShorthandSizeUnitTest.css.fixed │ │ │ │ │ └── ShorthandSizeUnitTest.php │ │ │ │ ├── Classes │ │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ │ ├── ClassFileNameUnitTest.inc │ │ │ │ │ ├── ClassFileNameUnitTest.php │ │ │ │ │ ├── DuplicatePropertyUnitTest.js │ │ │ │ │ ├── DuplicatePropertyUnitTest.php │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc.fixed │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.php │ │ │ │ │ ├── SelfMemberReferenceUnitTest.inc │ │ │ │ │ ├── SelfMemberReferenceUnitTest.inc.fixed │ │ │ │ │ ├── SelfMemberReferenceUnitTest.php │ │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ │ └── ValidClassNameUnitTest.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── BlockCommentUnitTest.inc │ │ │ │ │ ├── BlockCommentUnitTest.inc.fixed │ │ │ │ │ ├── BlockCommentUnitTest.php │ │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.1.inc │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.1.inc.fixed │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.2.inc │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.3.inc │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.4.inc │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.4.inc.fixed │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.5.inc │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.5.inc.fixed │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.php │ │ │ │ │ ├── DocCommentAlignmentUnitTest.inc │ │ │ │ │ ├── DocCommentAlignmentUnitTest.inc.fixed │ │ │ │ │ ├── DocCommentAlignmentUnitTest.js │ │ │ │ │ ├── DocCommentAlignmentUnitTest.js.fixed │ │ │ │ │ ├── DocCommentAlignmentUnitTest.php │ │ │ │ │ ├── EmptyCatchCommentUnitTest.inc │ │ │ │ │ ├── EmptyCatchCommentUnitTest.php │ │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ │ ├── FileCommentUnitTest.1.inc.fixed │ │ │ │ │ ├── FileCommentUnitTest.1.js │ │ │ │ │ ├── FileCommentUnitTest.1.js.fixed │ │ │ │ │ ├── FileCommentUnitTest.10.inc │ │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ │ ├── FileCommentUnitTest.2.js │ │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ │ ├── FileCommentUnitTest.5.inc │ │ │ │ │ ├── FileCommentUnitTest.6.inc │ │ │ │ │ ├── FileCommentUnitTest.7.inc │ │ │ │ │ ├── FileCommentUnitTest.8.inc │ │ │ │ │ ├── FileCommentUnitTest.9.inc │ │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ │ ├── FunctionCommentThrowTagUnitTest.inc │ │ │ │ │ ├── FunctionCommentThrowTagUnitTest.php │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ │ ├── InlineCommentUnitTest.js │ │ │ │ │ ├── InlineCommentUnitTest.js.fixed │ │ │ │ │ ├── InlineCommentUnitTest.php │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc.fixed │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.js │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.js.fixed │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.php │ │ │ │ │ ├── PostStatementCommentUnitTest.1.js │ │ │ │ │ ├── PostStatementCommentUnitTest.1.js.fixed │ │ │ │ │ ├── PostStatementCommentUnitTest.2.js │ │ │ │ │ ├── PostStatementCommentUnitTest.inc │ │ │ │ │ ├── PostStatementCommentUnitTest.inc.fixed │ │ │ │ │ ├── PostStatementCommentUnitTest.php │ │ │ │ │ ├── VariableCommentUnitTest.inc │ │ │ │ │ ├── VariableCommentUnitTest.inc.fixed │ │ │ │ │ └── VariableCommentUnitTest.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlSignatureUnitTest.inc │ │ │ │ │ ├── ControlSignatureUnitTest.inc.fixed │ │ │ │ │ ├── ControlSignatureUnitTest.js │ │ │ │ │ ├── ControlSignatureUnitTest.js.fixed │ │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.php │ │ │ │ │ ├── ForLoopDeclarationUnitTest.1.inc │ │ │ │ │ ├── ForLoopDeclarationUnitTest.1.inc.fixed │ │ │ │ │ ├── ForLoopDeclarationUnitTest.2.inc │ │ │ │ │ ├── ForLoopDeclarationUnitTest.3.inc │ │ │ │ │ ├── ForLoopDeclarationUnitTest.js │ │ │ │ │ ├── ForLoopDeclarationUnitTest.js.fixed │ │ │ │ │ ├── ForLoopDeclarationUnitTest.php │ │ │ │ │ ├── InlineIfDeclarationUnitTest.inc │ │ │ │ │ ├── InlineIfDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── InlineIfDeclarationUnitTest.php │ │ │ │ │ ├── LowercaseDeclarationUnitTest.inc │ │ │ │ │ ├── LowercaseDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── LowercaseDeclarationUnitTest.php │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── SwitchDeclarationUnitTest.js │ │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── JSLintUnitTest.js │ │ │ │ │ ├── JSLintUnitTest.php │ │ │ │ │ ├── JavaScriptLintUnitTest.js │ │ │ │ │ └── JavaScriptLintUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── FileExtensionUnitTest.1.inc │ │ │ │ │ ├── FileExtensionUnitTest.2.inc │ │ │ │ │ ├── FileExtensionUnitTest.3.inc │ │ │ │ │ ├── FileExtensionUnitTest.4.inc │ │ │ │ │ ├── FileExtensionUnitTest.5.inc │ │ │ │ │ └── FileExtensionUnitTest.php │ │ │ │ ├── Formatting │ │ │ │ │ ├── OperatorBracketUnitTest.inc │ │ │ │ │ ├── OperatorBracketUnitTest.inc.fixed │ │ │ │ │ ├── OperatorBracketUnitTest.js │ │ │ │ │ ├── OperatorBracketUnitTest.js.fixed │ │ │ │ │ └── OperatorBracketUnitTest.php │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.inc │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.inc.fixed │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.php │ │ │ │ │ ├── FunctionDeclarationUnitTest.inc │ │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.inc │ │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.php │ │ │ │ │ ├── GlobalFunctionUnitTest.inc │ │ │ │ │ ├── GlobalFunctionUnitTest.php │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc.fixed │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.php │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc.fixed │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js.fixed │ │ │ │ │ └── MultiLineFunctionDeclarationUnitTest.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ ├── Objects │ │ │ │ │ ├── DisallowObjectStringIndexUnitTest.js │ │ │ │ │ ├── DisallowObjectStringIndexUnitTest.php │ │ │ │ │ ├── ObjectInstantiationUnitTest.inc │ │ │ │ │ ├── ObjectInstantiationUnitTest.php │ │ │ │ │ ├── ObjectMemberCommaUnitTest.js │ │ │ │ │ ├── ObjectMemberCommaUnitTest.js.fixed │ │ │ │ │ └── ObjectMemberCommaUnitTest.php │ │ │ │ ├── Operators │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.inc │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.js │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.php │ │ │ │ │ ├── IncrementDecrementUsageUnitTest.inc │ │ │ │ │ ├── IncrementDecrementUsageUnitTest.php │ │ │ │ │ ├── ValidLogicalOperatorsUnitTest.inc │ │ │ │ │ └── ValidLogicalOperatorsUnitTest.php │ │ │ │ ├── PHP │ │ │ │ │ ├── CommentedOutCodeUnitTest.css │ │ │ │ │ ├── CommentedOutCodeUnitTest.inc │ │ │ │ │ ├── CommentedOutCodeUnitTest.php │ │ │ │ │ ├── DisallowBooleanStatementUnitTest.inc │ │ │ │ │ ├── DisallowBooleanStatementUnitTest.php │ │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.inc │ │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.php │ │ │ │ │ ├── DisallowInlineIfUnitTest.inc │ │ │ │ │ ├── DisallowInlineIfUnitTest.js │ │ │ │ │ ├── DisallowInlineIfUnitTest.php │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.inc │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.php │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.inc │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.js │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.php │ │ │ │ │ ├── DiscouragedFunctionsUnitTest.inc │ │ │ │ │ ├── DiscouragedFunctionsUnitTest.php │ │ │ │ │ ├── EmbeddedPhpUnitTest.1.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.1.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.10.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.11.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.12.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.12.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.13.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.13.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.14.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.15.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.16.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.17.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.18.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.18.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.19.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.19.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.2.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.2.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.20.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.20.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.21.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.21.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.22.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.22.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.23.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.3.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.3.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.4.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.4.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.5.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.5.inc.fixed │ │ │ │ │ ├── EmbeddedPhpUnitTest.6.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.7.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.8.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.9.inc │ │ │ │ │ ├── EmbeddedPhpUnitTest.php │ │ │ │ │ ├── EvalUnitTest.inc │ │ │ │ │ ├── EvalUnitTest.php │ │ │ │ │ ├── GlobalKeywordUnitTest.inc │ │ │ │ │ ├── GlobalKeywordUnitTest.php │ │ │ │ │ ├── HeredocUnitTest.1.inc │ │ │ │ │ ├── HeredocUnitTest.2.inc │ │ │ │ │ ├── HeredocUnitTest.php │ │ │ │ │ ├── InnerFunctionsUnitTest.inc │ │ │ │ │ ├── InnerFunctionsUnitTest.php │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc.fixed │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.php │ │ │ │ │ ├── NonExecutableCodeUnitTest.1.inc │ │ │ │ │ ├── NonExecutableCodeUnitTest.2.inc │ │ │ │ │ ├── NonExecutableCodeUnitTest.3.inc │ │ │ │ │ ├── NonExecutableCodeUnitTest.4.inc │ │ │ │ │ └── NonExecutableCodeUnitTest.php │ │ │ │ ├── Scope │ │ │ │ │ ├── MemberVarScopeUnitTest.inc │ │ │ │ │ ├── MemberVarScopeUnitTest.php │ │ │ │ │ ├── MethodScopeUnitTest.inc │ │ │ │ │ ├── MethodScopeUnitTest.php │ │ │ │ │ ├── StaticThisUsageUnitTest.inc │ │ │ │ │ └── StaticThisUsageUnitTest.php │ │ │ │ ├── Strings │ │ │ │ │ ├── ConcatenationSpacingUnitTest.inc │ │ │ │ │ ├── ConcatenationSpacingUnitTest.inc.fixed │ │ │ │ │ ├── ConcatenationSpacingUnitTest.php │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc.fixed │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.php │ │ │ │ │ ├── EchoedStringsUnitTest.inc │ │ │ │ │ ├── EchoedStringsUnitTest.inc.fixed │ │ │ │ │ └── EchoedStringsUnitTest.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── CastSpacingUnitTest.inc │ │ │ │ │ ├── CastSpacingUnitTest.inc.fixed │ │ │ │ │ ├── CastSpacingUnitTest.php │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ ├── ControlStructureSpacingUnitTest.js │ │ │ │ │ ├── ControlStructureSpacingUnitTest.js.fixed │ │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc.fixed │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js.fixed │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.php │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js.fixed │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.php │ │ │ │ │ ├── FunctionSpacingUnitTest.1.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.1.inc.fixed │ │ │ │ │ ├── FunctionSpacingUnitTest.2.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.2.inc.fixed │ │ │ │ │ ├── FunctionSpacingUnitTest.3.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.3.inc.fixed │ │ │ │ │ ├── FunctionSpacingUnitTest.4.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.5.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.5.inc.fixed │ │ │ │ │ ├── FunctionSpacingUnitTest.6.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.6.inc.fixed │ │ │ │ │ ├── FunctionSpacingUnitTest.7.inc │ │ │ │ │ ├── FunctionSpacingUnitTest.php │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc.fixed │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc.fixed │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js.fixed │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.php │ │ │ │ │ ├── MemberVarSpacingUnitTest.inc │ │ │ │ │ ├── MemberVarSpacingUnitTest.inc.fixed │ │ │ │ │ ├── MemberVarSpacingUnitTest.php │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc.fixed │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.php │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc.fixed │ │ │ │ │ ├── OperatorSpacingUnitTest.2.inc │ │ │ │ │ ├── OperatorSpacingUnitTest.3.inc │ │ │ │ │ ├── OperatorSpacingUnitTest.js │ │ │ │ │ ├── OperatorSpacingUnitTest.js.fixed │ │ │ │ │ ├── OperatorSpacingUnitTest.php │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.js │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.js.fixed │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.php │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.1.inc │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.1.inc.fixed │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.2.inc │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.3.inc │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.3.inc.fixed │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.php │ │ │ │ │ ├── SemicolonSpacingUnitTest.inc │ │ │ │ │ ├── SemicolonSpacingUnitTest.inc.fixed │ │ │ │ │ ├── SemicolonSpacingUnitTest.js │ │ │ │ │ ├── SemicolonSpacingUnitTest.js.fixed │ │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc.fixed │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc.fixed │ │ │ │ │ └── SuperfluousWhitespaceUnitTest.php │ │ │ └── ruleset.xml │ │ └── Zend │ │ │ ├── Docs │ │ │ ├── Debug │ │ │ │ └── CodeAnalyzerStandard.xml │ │ │ ├── Files │ │ │ │ └── ClosingTagStandard.xml │ │ │ └── NamingConventions │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ ├── Sniffs │ │ │ ├── Debug │ │ │ │ └── CodeAnalyzerSniff.php │ │ │ ├── Files │ │ │ │ └── ClosingTagSniff.php │ │ │ └── NamingConventions │ │ │ │ └── ValidVariableNameSniff.php │ │ │ ├── Tests │ │ │ ├── Debug │ │ │ │ ├── CodeAnalyzerUnitTest.inc │ │ │ │ └── CodeAnalyzerUnitTest.php │ │ │ ├── Files │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ ├── ClosingTagUnitTest.3.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ └── ClosingTagUnitTest.php │ │ │ └── NamingConventions │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ └── ruleset.xml │ ├── Tokenizers │ │ ├── CSS.php │ │ ├── Comment.php │ │ ├── JS.php │ │ ├── PHP.php │ │ └── Tokenizer.php │ └── Util │ │ ├── Cache.php │ │ ├── Common.php │ │ ├── Standards.php │ │ ├── Timing.php │ │ └── Tokens.php │ └── tests │ ├── AllTests.php │ ├── ConfigDouble.php │ ├── Core │ ├── AbstractMethodUnitTest.php │ ├── AllTests.php │ ├── Autoloader │ │ ├── DetermineLoadedClassTest.php │ │ └── TestFiles │ │ │ ├── A.inc │ │ │ ├── B.inc │ │ │ ├── C.inc │ │ │ └── Sub │ │ │ └── C.inc │ ├── Config │ │ └── ReportWidthTest.php │ ├── ErrorSuppressionTest.php │ ├── File │ │ ├── FindEndOfStatementTest.inc │ │ ├── FindEndOfStatementTest.php │ │ ├── FindExtendedClassNameTest.inc │ │ ├── FindExtendedClassNameTest.php │ │ ├── FindImplementedInterfaceNamesTest.inc │ │ ├── FindImplementedInterfaceNamesTest.php │ │ ├── FindStartOfStatementTest.inc │ │ ├── FindStartOfStatementTest.php │ │ ├── GetClassPropertiesTest.inc │ │ ├── GetClassPropertiesTest.php │ │ ├── GetConditionTest.inc │ │ ├── GetConditionTest.php │ │ ├── GetDeclarationNameJSTest.js │ │ ├── GetDeclarationNameJSTest.php │ │ ├── GetDeclarationNameTest.inc │ │ ├── GetDeclarationNameTest.php │ │ ├── GetMemberPropertiesTest.inc │ │ ├── GetMemberPropertiesTest.php │ │ ├── GetMethodParametersParseError1Test.inc │ │ ├── GetMethodParametersParseError1Test.php │ │ ├── GetMethodParametersParseError2Test.inc │ │ ├── GetMethodParametersParseError2Test.php │ │ ├── GetMethodParametersTest.inc │ │ ├── GetMethodParametersTest.php │ │ ├── GetMethodPropertiesTest.inc │ │ ├── GetMethodPropertiesTest.php │ │ ├── GetTokensAsStringTest.inc │ │ ├── GetTokensAsStringTest.php │ │ ├── IsReferenceTest.inc │ │ └── IsReferenceTest.php │ ├── Filters │ │ ├── AbstractFilterTestCase.php │ │ ├── Filter │ │ │ ├── AcceptTest.php │ │ │ └── AcceptTest.xml │ │ ├── GitModifiedTest.php │ │ └── GitStagedTest.php │ ├── Fixer │ │ ├── Fixtures │ │ │ ├── GenerateDiffTest-BlankLinesAtEnd.diff │ │ │ ├── GenerateDiffTest-BlankLinesAtEnd.inc │ │ │ ├── GenerateDiffTest-BlankLinesAtStart.diff │ │ │ ├── GenerateDiffTest-BlankLinesAtStart.inc │ │ │ ├── GenerateDiffTest-LineAdded.diff │ │ │ ├── GenerateDiffTest-LineAdded.inc │ │ │ ├── GenerateDiffTest-LineRemoved.diff │ │ │ ├── GenerateDiffTest-LineRemoved.inc │ │ │ ├── GenerateDiffTest-NoDiff.diff │ │ │ ├── GenerateDiffTest-NoDiff.inc │ │ │ ├── GenerateDiffTest-NoTrailingWhitespace.diff │ │ │ ├── GenerateDiffTest-NoTrailingWhitespace.inc │ │ │ ├── GenerateDiffTest-TabsToSpaces.diff │ │ │ ├── GenerateDiffTest-TabsToSpaces.inc │ │ │ ├── GenerateDiffTest-VarNameChanged.diff │ │ │ ├── GenerateDiffTest-VarNameChanged.inc │ │ │ ├── GenerateDiffTest-WhiteSpaceAtEnd.diff │ │ │ ├── GenerateDiffTest-WhiteSpaceAtEnd.inc │ │ │ ├── GenerateDiffTest-WhiteSpaceAtStart.diff │ │ │ ├── GenerateDiffTest-WhiteSpaceAtStart.inc │ │ │ ├── GenerateDiffTest-WindowsLineEndings.inc │ │ │ └── GenerateDiffTest.inc │ │ └── GenerateDiffTest.php │ ├── Ruleset │ │ ├── ExplainCustomRulesetTest.xml │ │ ├── ExplainSingleSniffTest.xml │ │ ├── ExplainTest.php │ │ ├── Fixtures │ │ │ ├── Sniffs │ │ │ │ ├── Deprecated │ │ │ │ │ ├── WithLongReplacementSniff.php │ │ │ │ │ ├── WithReplacementContainingLinuxNewlinesSniff.php │ │ │ │ │ ├── WithReplacementContainingNewlinesSniff.php │ │ │ │ │ ├── WithReplacementSniff.php │ │ │ │ │ └── WithoutReplacementSniff.php │ │ │ │ ├── DeprecatedInvalid │ │ │ │ │ ├── EmptyDeprecationVersionSniff.php │ │ │ │ │ ├── EmptyRemovalVersionSniff.php │ │ │ │ │ ├── InvalidDeprecationMessageSniff.php │ │ │ │ │ ├── InvalidDeprecationVersionSniff.php │ │ │ │ │ └── InvalidRemovalVersionSniff.php │ │ │ │ └── SetProperty │ │ │ │ │ ├── AllowedAsDeclaredSniff.php │ │ │ │ │ ├── AllowedViaMagicMethodSniff.php │ │ │ │ │ ├── AllowedViaStdClassSniff.php │ │ │ │ │ └── NotAllowedViaAttributeSniff.php │ │ │ └── ruleset.xml │ │ ├── RuleInclusionAbsoluteLinuxTest.php │ │ ├── RuleInclusionAbsoluteLinuxTest.xml │ │ ├── RuleInclusionAbsoluteWindowsTest.php │ │ ├── RuleInclusionAbsoluteWindowsTest.xml │ │ ├── RuleInclusionTest-include.xml │ │ ├── RuleInclusionTest.php │ │ ├── RuleInclusionTest.xml │ │ ├── SetPropertyAllowedAsDeclaredTest.xml │ │ ├── SetPropertyAllowedViaMagicMethodTest.xml │ │ ├── SetPropertyAllowedViaStdClassTest.xml │ │ ├── SetPropertyAppliesPropertyToMultipleSniffsInCategoryTest.xml │ │ ├── SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForCategoryTest.xml │ │ ├── SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForStandardTest.xml │ │ ├── SetPropertyNotAllowedViaAttributeTest.xml │ │ ├── SetPropertyThrowsErrorOnInvalidPropertyTest.xml │ │ ├── SetSniffPropertyTest.php │ │ ├── ShowSniffDeprecationsEmptyDeprecationVersionTest.xml │ │ ├── ShowSniffDeprecationsEmptyRemovalVersionTest.xml │ │ ├── ShowSniffDeprecationsInvalidDeprecationMessageTest.xml │ │ ├── ShowSniffDeprecationsInvalidDeprecationVersionTest.xml │ │ ├── ShowSniffDeprecationsInvalidRemovalVersionTest.xml │ │ ├── ShowSniffDeprecationsOrderTest.xml │ │ ├── ShowSniffDeprecationsReportWidthTest.xml │ │ ├── ShowSniffDeprecationsTest.php │ │ └── ShowSniffDeprecationsTest.xml │ ├── Sniffs │ │ ├── AbstractArraySniffTest.inc │ │ ├── AbstractArraySniffTest.php │ │ └── AbstractArraySniffTestable.php │ ├── Tokenizer │ │ ├── AbstractTokenizerTestCase.php │ │ ├── AnonClassParenthesisOwnerTest.inc │ │ ├── AnonClassParenthesisOwnerTest.php │ │ ├── ArrayKeywordTest.inc │ │ ├── ArrayKeywordTest.php │ │ ├── AttributesTest.inc │ │ ├── AttributesTest.php │ │ ├── BackfillEnumTest.inc │ │ ├── BackfillEnumTest.php │ │ ├── BackfillExplicitOctalNotationTest.inc │ │ ├── BackfillExplicitOctalNotationTest.php │ │ ├── BackfillFnTokenTest.inc │ │ ├── BackfillFnTokenTest.php │ │ ├── BackfillMatchTokenTest.inc │ │ ├── BackfillMatchTokenTest.php │ │ ├── BackfillNumericSeparatorTest.inc │ │ ├── BackfillNumericSeparatorTest.php │ │ ├── BackfillReadonlyTest.inc │ │ ├── BackfillReadonlyTest.php │ │ ├── BitwiseOrTest.inc │ │ ├── BitwiseOrTest.php │ │ ├── ContextSensitiveKeywordsTest.inc │ │ ├── ContextSensitiveKeywordsTest.php │ │ ├── DefaultKeywordTest.inc │ │ ├── DefaultKeywordTest.php │ │ ├── DoubleArrowTest.inc │ │ ├── DoubleArrowTest.php │ │ ├── DoubleQuotedStringTest.inc │ │ ├── DoubleQuotedStringTest.php │ │ ├── EnumCaseTest.inc │ │ ├── EnumCaseTest.php │ │ ├── FinallyTest.inc │ │ ├── FinallyTest.php │ │ ├── GotoLabelTest.inc │ │ ├── GotoLabelTest.php │ │ ├── HeredocNowdocCloserTest.inc │ │ ├── HeredocNowdocCloserTest.php │ │ ├── HeredocStringTest.inc │ │ ├── HeredocStringTest.php │ │ ├── NamedFunctionCallArgumentsTest.inc │ │ ├── NamedFunctionCallArgumentsTest.php │ │ ├── NullsafeObjectOperatorTest.inc │ │ ├── NullsafeObjectOperatorTest.php │ │ ├── OtherContextSensitiveKeywordsTest.inc │ │ ├── OtherContextSensitiveKeywordsTest.php │ │ ├── ResolveSimpleTokenTest.inc │ │ ├── ResolveSimpleTokenTest.php │ │ ├── ScopeSettingWithNamespaceOperatorTest.inc │ │ ├── ScopeSettingWithNamespaceOperatorTest.php │ │ ├── ShortArrayTest.inc │ │ ├── ShortArrayTest.php │ │ ├── StableCommentWhitespaceTest.inc │ │ ├── StableCommentWhitespaceTest.php │ │ ├── StableCommentWhitespaceWinTest.inc │ │ ├── StableCommentWhitespaceWinTest.php │ │ ├── TypeIntersectionTest.inc │ │ ├── TypeIntersectionTest.php │ │ ├── TypedConstantsTest.inc │ │ ├── TypedConstantsTest.php │ │ ├── UndoNamespacedNameSingleTokenTest.inc │ │ └── UndoNamespacedNameSingleTokenTest.php │ └── Util │ │ ├── IsCamelCapsTest.php │ │ └── SuggestTypeTest.php │ ├── FileList.php │ ├── Standards │ ├── AbstractSniffUnitTest.php │ └── AllSniffs.php │ ├── TestSuite.php │ ├── TestSuite7.php │ └── bootstrap.php └── wp-coding-standards └── wpcs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── WordPress-Core └── ruleset.xml ├── WordPress-Docs └── ruleset.xml ├── WordPress-Extra └── ruleset.xml ├── WordPress ├── AbstractArrayAssignmentRestrictionsSniff.php ├── AbstractClassRestrictionsSniff.php ├── AbstractFunctionParameterSniff.php ├── AbstractFunctionRestrictionsSniff.php ├── Docs │ ├── Arrays │ │ ├── ArrayIndentationStandard.xml │ │ ├── ArrayKeySpacingRestrictionsStandard.xml │ │ └── MultipleStatementAlignmentStandard.xml │ ├── CodeAnalysis │ │ └── EscapedNotTranslatedStandard.xml │ ├── DateTime │ │ ├── CurrentTimeTimestampStandard.xml │ │ └── RestrictedFunctionsStandard.xml │ ├── NamingConventions │ │ ├── PrefixAllGlobalsStandard.xml │ │ ├── ValidHookNameStandard.xml │ │ └── ValidPostTypeSlugStandard.xml │ ├── PHP │ │ ├── IniSetStandard.xml │ │ ├── StrictInArrayStandard.xml │ │ └── YodaConditionsStandard.xml │ ├── Security │ │ └── SafeRedirectStandard.xml │ ├── WP │ │ ├── CapabilitiesStandard.xml │ │ ├── CapitalPDangitStandard.xml │ │ ├── ClassNameCaseStandard.xml │ │ ├── CronIntervalStandard.xml │ │ ├── DeprecatedClassesStandard.xml │ │ ├── DeprecatedFunctionsStandard.xml │ │ ├── DeprecatedParameterValuesStandard.xml │ │ ├── DeprecatedParametersStandard.xml │ │ ├── EnqueuedResourceParametersStandard.xml │ │ ├── EnqueuedResourcesStandard.xml │ │ └── PostsPerPageStandard.xml │ └── WhiteSpace │ │ ├── CastStructureSpacingStandard.xml │ │ ├── ControlStructureSpacingStandard.xml │ │ ├── ObjectOperatorSpacingStandard.xml │ │ └── OperatorSpacingStandard.xml ├── Helpers │ ├── ArrayWalkingFunctionsHelper.php │ ├── ConstantsHelper.php │ ├── ContextHelper.php │ ├── DeprecationHelper.php │ ├── EscapingFunctionsTrait.php │ ├── FormattingFunctionsHelper.php │ ├── IsUnitTestTrait.php │ ├── ListHelper.php │ ├── MinimumWPVersionTrait.php │ ├── PrintingFunctionsTrait.php │ ├── RulesetPropertyHelper.php │ ├── SanitizationHelperTrait.php │ ├── SnakeCaseHelper.php │ ├── UnslashingFunctionsHelper.php │ ├── ValidationHelper.php │ ├── VariableHelper.php │ ├── WPDBTrait.php │ ├── WPGlobalVariablesHelper.php │ └── WPHookHelper.php ├── Sniff.php ├── Sniffs │ ├── Arrays │ │ ├── ArrayDeclarationSpacingSniff.php │ │ ├── ArrayIndentationSniff.php │ │ ├── ArrayKeySpacingRestrictionsSniff.php │ │ └── MultipleStatementAlignmentSniff.php │ ├── CodeAnalysis │ │ ├── AssignmentInTernaryConditionSniff.php │ │ └── EscapedNotTranslatedSniff.php │ ├── DB │ │ ├── DirectDatabaseQuerySniff.php │ │ ├── PreparedSQLPlaceholdersSniff.php │ │ ├── PreparedSQLSniff.php │ │ ├── RestrictedClassesSniff.php │ │ ├── RestrictedFunctionsSniff.php │ │ └── SlowDBQuerySniff.php │ ├── DateTime │ │ ├── CurrentTimeTimestampSniff.php │ │ └── RestrictedFunctionsSniff.php │ ├── Files │ │ └── FileNameSniff.php │ ├── NamingConventions │ │ ├── PrefixAllGlobalsSniff.php │ │ ├── ValidFunctionNameSniff.php │ │ ├── ValidHookNameSniff.php │ │ ├── ValidPostTypeSlugSniff.php │ │ └── ValidVariableNameSniff.php │ ├── PHP │ │ ├── DevelopmentFunctionsSniff.php │ │ ├── DiscouragedPHPFunctionsSniff.php │ │ ├── DontExtractSniff.php │ │ ├── IniSetSniff.php │ │ ├── NoSilencedErrorsSniff.php │ │ ├── POSIXFunctionsSniff.php │ │ ├── PregQuoteDelimiterSniff.php │ │ ├── RestrictedPHPFunctionsSniff.php │ │ ├── StrictInArraySniff.php │ │ ├── TypeCastsSniff.php │ │ └── YodaConditionsSniff.php │ ├── Security │ │ ├── EscapeOutputSniff.php │ │ ├── NonceVerificationSniff.php │ │ ├── PluginMenuSlugSniff.php │ │ ├── SafeRedirectSniff.php │ │ └── ValidatedSanitizedInputSniff.php │ ├── Utils │ │ └── I18nTextDomainFixerSniff.php │ ├── WP │ │ ├── AlternativeFunctionsSniff.php │ │ ├── CapabilitiesSniff.php │ │ ├── CapitalPDangitSniff.php │ │ ├── ClassNameCaseSniff.php │ │ ├── CronIntervalSniff.php │ │ ├── DeprecatedClassesSniff.php │ │ ├── DeprecatedFunctionsSniff.php │ │ ├── DeprecatedParameterValuesSniff.php │ │ ├── DeprecatedParametersSniff.php │ │ ├── DiscouragedConstantsSniff.php │ │ ├── DiscouragedFunctionsSniff.php │ │ ├── EnqueuedResourceParametersSniff.php │ │ ├── EnqueuedResourcesSniff.php │ │ ├── GlobalVariablesOverrideSniff.php │ │ ├── I18nSniff.php │ │ └── PostsPerPageSniff.php │ └── WhiteSpace │ │ ├── CastStructureSpacingSniff.php │ │ ├── ControlStructureSpacingSniff.php │ │ ├── ObjectOperatorSpacingSniff.php │ │ └── OperatorSpacingSniff.php └── ruleset.xml ├── composer.json └── phpcs.xml.dist.sample /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpcs-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/.phpcs-cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /dist/htm.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/dist/htm.bundle.js -------------------------------------------------------------------------------- /docs/images/in-gutenburg-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/docs/images/in-gutenburg-block.png -------------------------------------------------------------------------------- /docs/images/in-html-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/docs/images/in-html-blocks.png -------------------------------------------------------------------------------- /docs/images/in-php-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/docs/images/in-php-template.png -------------------------------------------------------------------------------- /docs/wp-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/docs/wp-local.md -------------------------------------------------------------------------------- /e-assets/e-.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/e-assets/e-.woff2 -------------------------------------------------------------------------------- /e-assets/e-global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/e-assets/e-global.css -------------------------------------------------------------------------------- /editor-blocks/e-alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-alert.css -------------------------------------------------------------------------------- /editor-blocks/e-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-alert.js -------------------------------------------------------------------------------- /editor-blocks/e-badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-badge.css -------------------------------------------------------------------------------- /editor-blocks/e-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-badge.js -------------------------------------------------------------------------------- /editor-blocks/e-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-box.css -------------------------------------------------------------------------------- /editor-blocks/e-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-box.js -------------------------------------------------------------------------------- /editor-blocks/e-container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-container.css -------------------------------------------------------------------------------- /editor-blocks/e-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-container.js -------------------------------------------------------------------------------- /editor-blocks/e-rule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-rule.css -------------------------------------------------------------------------------- /editor-blocks/e-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-rule.js -------------------------------------------------------------------------------- /editor-blocks/e-tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-tag.css -------------------------------------------------------------------------------- /editor-blocks/e-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/e-tag.js -------------------------------------------------------------------------------- /editor-blocks/my-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/my-card.css -------------------------------------------------------------------------------- /editor-blocks/my-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/my-card.js -------------------------------------------------------------------------------- /editor-blocks/my-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/my-header.css -------------------------------------------------------------------------------- /editor-blocks/my-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/editor-blocks/my-header.js -------------------------------------------------------------------------------- /elements/e-accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-accordion.html -------------------------------------------------------------------------------- /elements/e-alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-alert.php -------------------------------------------------------------------------------- /elements/e-autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-autocomplete.html -------------------------------------------------------------------------------- /elements/e-badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-badge.html -------------------------------------------------------------------------------- /elements/e-blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-blockquote.html -------------------------------------------------------------------------------- /elements/e-box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-box.html -------------------------------------------------------------------------------- /elements/e-breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-breadcrumb.html -------------------------------------------------------------------------------- /elements/e-button.html.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-button.html.bak -------------------------------------------------------------------------------- /elements/e-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-button.php -------------------------------------------------------------------------------- /elements/e-code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-code.php -------------------------------------------------------------------------------- /elements/e-col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-col.html -------------------------------------------------------------------------------- /elements/e-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-container.html -------------------------------------------------------------------------------- /elements/e-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-details.html -------------------------------------------------------------------------------- /elements/e-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-dialog.html -------------------------------------------------------------------------------- /elements/e-dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-dot.html -------------------------------------------------------------------------------- /elements/e-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-icon.html -------------------------------------------------------------------------------- /elements/e-input-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-input-group.php -------------------------------------------------------------------------------- /elements/e-kbd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-kbd.html -------------------------------------------------------------------------------- /elements/e-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-link.php -------------------------------------------------------------------------------- /elements/e-loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-loader.html -------------------------------------------------------------------------------- /elements/e-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-menu.html -------------------------------------------------------------------------------- /elements/e-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-row.html -------------------------------------------------------------------------------- /elements/e-rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-rule.php -------------------------------------------------------------------------------- /elements/e-switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-switch.php -------------------------------------------------------------------------------- /elements/e-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-table.html -------------------------------------------------------------------------------- /elements/e-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-tabs.html -------------------------------------------------------------------------------- /elements/e-tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/e-tag.html -------------------------------------------------------------------------------- /elements/my-card.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/my-card.mjs -------------------------------------------------------------------------------- /elements/my-card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/my-card.php -------------------------------------------------------------------------------- /elements/my-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/elements/my-header.html -------------------------------------------------------------------------------- /enhance-ssr-wp-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/enhance-ssr-wp-plugin.php -------------------------------------------------------------------------------- /enhance-wp-blocks-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/enhance-wp-blocks-plugin.php -------------------------------------------------------------------------------- /htm-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/htm-entry.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/phpcs.xml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/rollup.config.js -------------------------------------------------------------------------------- /use-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/use-html.js -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/phpcbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/bin/phpcbf -------------------------------------------------------------------------------- /vendor/bin/phpcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/bin/phpcs -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/installers/.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /vendor/composer/installers/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/.github/workflows/lint.yml -------------------------------------------------------------------------------- /vendor/composer/installers/.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /vendor/composer/installers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/LICENSE -------------------------------------------------------------------------------- /vendor/composer/installers/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/composer.json -------------------------------------------------------------------------------- /vendor/composer/installers/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/phpstan.neon.dist -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AglInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/AglInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AkauntingInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/AkauntingInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/BaseInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ChefInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DframeInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ElggInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/FuelInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/GravInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/GravInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/HuradInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/Installer.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ItopInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KnownInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MakoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MatomoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MatomoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MauticInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MayaInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ModxInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/OxidInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PPIInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/Plugin.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PortoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SMFInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TaoInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/TuskInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WinterInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/YawikInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ZendInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php -------------------------------------------------------------------------------- /vendor/composer/installers/src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/installers/src/bootstrap.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/dealerdirect/phpcodesniffer-composer-installer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/dealerdirect/phpcodesniffer-composer-installer/LICENSE.md -------------------------------------------------------------------------------- /vendor/dealerdirect/phpcodesniffer-composer-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/dealerdirect/phpcodesniffer-composer-installer/README.md -------------------------------------------------------------------------------- /vendor/dealerdirect/phpcodesniffer-composer-installer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/dealerdirect/phpcodesniffer-composer-installer/composer.json -------------------------------------------------------------------------------- /vendor/dealerdirect/phpcodesniffer-composer-installer/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/dealerdirect/phpcodesniffer-composer-installer/src/Plugin.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/.gitignore -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/LICENSE -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/README.md -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/composer.json -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/examples/native-ssr/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/examples/native-ssr/public/index.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/examples/native-ssr/resources/my-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/examples/native-ssr/resources/my-header.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/examples/wasm-ssr/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/examples/wasm-ssr/public/index.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/examples/wasm-ssr/resources/my-header.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/examples/wasm-ssr/resources/my-header.mjs -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/phpcs.xml -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/phpunit.xml -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/src/Elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/src/Elements.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/src/EnhanceWASM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/src/EnhanceWASM.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/src/Enhancer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/src/Enhancer.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/src/ShadyStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/src/ShadyStyles.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/e-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/e-button.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/e-tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/e-tag.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/multiple-slots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/multiple-slots.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-bad-xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-bad-xml.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-content.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-context-child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-context-child.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-context-parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-context-parent.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-counter.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-custom-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-custom-heading.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-external-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-external-script.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-header.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-heading.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-id.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-instance-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-instance-id.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-link-node-first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-link-node-first.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-link-node-second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-link-node-second.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-link.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-list-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-list-container.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-list-debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-list-debug.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-list.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-multiples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-multiples.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-outline.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-page.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-paragraph.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-pre-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-pre-page.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-pre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-pre.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-slot-as.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-slot-as.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-store-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-store-data.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-style-import-first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-style-import-first.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-style-import-second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-style-import-second.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-style-transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-style-transform.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-super-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-super-heading.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-title.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-transform-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-transform-script.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-transform-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-transform-style.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-unnamed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-unnamed.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/fixtures/templates/my-wrapped-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/fixtures/templates/my-wrapped-heading.html -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/tests/ElementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/tests/ElementsTest.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/tests/EnhancerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/tests/EnhancerTest.php -------------------------------------------------------------------------------- /vendor/enhance-dev/ssr/test/tests/IsCustomElementTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/enhance-dev/ssr/test/tests/IsCustomElementTests.php -------------------------------------------------------------------------------- /vendor/extism/extism/.github/actions/libextism/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/.github/actions/libextism/action.yaml -------------------------------------------------------------------------------- /vendor/extism/extism/.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /vendor/extism/extism/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/.gitignore -------------------------------------------------------------------------------- /vendor/extism/extism/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/Makefile -------------------------------------------------------------------------------- /vendor/extism/extism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/README.md -------------------------------------------------------------------------------- /vendor/extism/extism/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/composer.json -------------------------------------------------------------------------------- /vendor/extism/extism/example/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/example/composer.json -------------------------------------------------------------------------------- /vendor/extism/extism/example/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/example/composer.lock -------------------------------------------------------------------------------- /vendor/extism/extism/example/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/example/index.php -------------------------------------------------------------------------------- /vendor/extism/extism/example/memory_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/example/memory_test.php -------------------------------------------------------------------------------- /vendor/extism/extism/src/CurrentPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/src/CurrentPlugin.php -------------------------------------------------------------------------------- /vendor/extism/extism/src/HostFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/src/HostFunction.php -------------------------------------------------------------------------------- /vendor/extism/extism/src/LibExtism.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/src/LibExtism.php -------------------------------------------------------------------------------- /vendor/extism/extism/src/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/src/Manifest.php -------------------------------------------------------------------------------- /vendor/extism/extism/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/src/Plugin.php -------------------------------------------------------------------------------- /vendor/extism/extism/src/extism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/src/extism.h -------------------------------------------------------------------------------- /vendor/extism/extism/tests/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/tests/Helpers.php -------------------------------------------------------------------------------- /vendor/extism/extism/tests/ManifestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/tests/ManifestTest.php -------------------------------------------------------------------------------- /vendor/extism/extism/tests/PluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/tests/PluginTest.php -------------------------------------------------------------------------------- /vendor/extism/extism/tests/data/test.txt: -------------------------------------------------------------------------------- 1 | hello world! -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/alloc.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/alloc.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/config.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/config.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/count_vowels.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/count_vowels.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/count_vowels_kvstore.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/count_vowels_kvstore.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/exit.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/exit.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/fail.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/fail.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/fs.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/fs.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/hello.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/http.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/http.wasm -------------------------------------------------------------------------------- /vendor/extism/extism/wasm/sleep.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/extism/extism/wasm/sleep.wasm -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/LICENSE -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/Modernize/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/Modernize/ruleset.xml -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/NormalizedArrays/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/NormalizedArrays/ruleset.xml -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/README.md -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/Universal/Helpers/DummyTokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/Universal/Helpers/DummyTokenizer.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/Universal/Sniffs/PHP/LowercasePHPTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/PHP/LowercasePHPTagSniff.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/Universal/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/Universal/ruleset.xml -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsextra/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsextra/composer.json -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/.phpdoc.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/.phpdoc.xml.dist -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/LICENSE -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/PHPCSUtils/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/PHPCSUtils/ruleset.xml -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/README.md -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/composer.json -------------------------------------------------------------------------------- /vendor/phpcsstandards/phpcsutils/phpcsutils-autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/phpcsstandards/phpcsutils/phpcsutils-autoload.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/LICENSE -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/README.md -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/composer.json -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/CSSList/CSSList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/CSSList/CSSList.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/CSSList/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/CSSList/Document.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/CSSList/KeyFrame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/CSSList/KeyFrame.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Comment/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Comment/Comment.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Comment/Commentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Comment/Commentable.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/OutputFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/OutputFormat.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/OutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/OutputFormatter.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parser.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parsing/Anchor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parsing/Anchor.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parsing/OutputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parsing/OutputException.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parsing/ParserState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parsing/ParserState.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parsing/SourceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parsing/SourceException.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Property/AtRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Property/AtRule.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Property/CSSNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Property/CSSNamespace.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Property/Charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Property/Charset.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Property/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Property/Import.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Property/KeyframeSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Property/KeyframeSelector.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Property/Selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Property/Selector.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Renderable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Renderable.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Rule/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Rule/Rule.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/RuleSet/RuleSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/RuleSet/RuleSet.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Settings.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/CSSFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/CSSFunction.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/CSSString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/CSSString.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/CalcFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/CalcFunction.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/Color.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/LineName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/LineName.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/PrimitiveValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/PrimitiveValue.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/RuleValueList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/RuleValueList.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/Size.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/URL.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/Value.php -------------------------------------------------------------------------------- /vendor/sabberworm/php-css-parser/src/Value/ValueList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/sabberworm/php-css-parser/src/Value/ValueList.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/CodeSniffer.conf -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/CodeSniffer.conf.dist -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/README.md -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/autoload.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/bin/phpcbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/bin/phpcbf -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/bin/phpcbf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/bin/phpcbf.bat -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/bin/phpcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/bin/phpcs -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/bin/phpcs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/bin/phpcs.bat -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/composer.json -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/licence.txt -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/phpcs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/phpcs.xsd -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Config.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Exceptions/DeepExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Exceptions/DeepExitException.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Exceptions/TokenizerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Exceptions/TokenizerException.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Files/DummyFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Files/DummyFile.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Files/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Files/File.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Files/FileList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Files/FileList.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Files/LocalFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Files/LocalFile.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Filters/ExactMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Filters/ExactMatch.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Filters/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Filters/Filter.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Filters/GitModified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Filters/GitModified.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Filters/GitStaged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Filters/GitStaged.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Fixer.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Generators/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Generators/Generator.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Generators/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Generators/HTML.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Generators/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Generators/Markdown.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Generators/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Generators/Text.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reporter.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Cbf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Cbf.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Checkstyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Checkstyle.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Code.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Csv.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Diff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Emacs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Emacs.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Full.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Gitblame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Gitblame.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Hgblame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Hgblame.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Info.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Json.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Junit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Junit.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Notifysend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Notifysend.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Performance.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Report.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Source.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Summary.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Svnblame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Svnblame.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/VersionControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/VersionControl.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Reports/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Reports/Xml.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Ruleset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Ruleset.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Runner.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractArraySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractArraySniff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractPatternSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractPatternSniff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractScopeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractScopeSniff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractVariableSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractVariableSniff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Sniffs/DeprecatedSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Sniffs/DeprecatedSniff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Sniffs/Sniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Sniffs/Sniff.php -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.js: -------------------------------------------------------------------------------- 1 | var foo = bar; 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.8.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css.fixed: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css.fixed: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js.fixed: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.9.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enhance-dev/enhance-wordpress-plugin/HEAD/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/ruleset.xml -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | 3 | hi 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.12.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.13.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | add('arg'))?> 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | add('arg')) /* comment */ ?> 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); /* comment */ 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | add('arg')); } ?> 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); } 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 |