sdc-build-wp 3.7.2 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2341) hide show
  1. package/.phpcs.xml +59 -0
  2. package/composer.json +19 -0
  3. package/composer.lock +413 -0
  4. package/index.js +23 -0
  5. package/lib/php.js +64 -0
  6. package/package.json +1 -1
  7. package/vendor/autoload.php +25 -0
  8. package/vendor/bin/phpcbf +119 -0
  9. package/vendor/bin/phpcs +119 -0
  10. package/vendor/composer/ClassLoader.php +579 -0
  11. package/vendor/composer/InstalledVersions.php +378 -0
  12. package/vendor/composer/LICENSE +21 -0
  13. package/vendor/composer/autoload_classmap.php +47 -0
  14. package/vendor/composer/autoload_namespaces.php +9 -0
  15. package/vendor/composer/autoload_psr4.php +10 -0
  16. package/vendor/composer/autoload_real.php +36 -0
  17. package/vendor/composer/autoload_static.php +73 -0
  18. package/vendor/composer/installed.json +421 -0
  19. package/vendor/composer/installed.php +68 -0
  20. package/vendor/dealerdirect/phpcodesniffer-composer-installer/LICENSE.md +22 -0
  21. package/vendor/dealerdirect/phpcodesniffer-composer-installer/README.md +285 -0
  22. package/vendor/dealerdirect/phpcodesniffer-composer-installer/composer.json +71 -0
  23. package/vendor/dealerdirect/phpcodesniffer-composer-installer/src/Plugin.php +637 -0
  24. package/vendor/phpcsstandards/phpcsextra/CHANGELOG.md +590 -0
  25. package/vendor/phpcsstandards/phpcsextra/LICENSE +165 -0
  26. package/vendor/phpcsstandards/phpcsextra/Modernize/Docs/FunctionCalls/DirnameStandard.xml +40 -0
  27. package/vendor/phpcsstandards/phpcsextra/Modernize/Sniffs/FunctionCalls/DirnameSniff.php +382 -0
  28. package/vendor/phpcsstandards/phpcsextra/Modernize/ruleset.xml +5 -0
  29. package/vendor/phpcsstandards/phpcsextra/NormalizedArrays/Docs/Arrays/ArrayBraceSpacingStandard.xml +94 -0
  30. package/vendor/phpcsstandards/phpcsextra/NormalizedArrays/Docs/Arrays/CommaAfterLastStandard.xml +43 -0
  31. package/vendor/phpcsstandards/phpcsextra/NormalizedArrays/Sniffs/Arrays/ArrayBraceSpacingSniff.php +305 -0
  32. package/vendor/phpcsstandards/phpcsextra/NormalizedArrays/Sniffs/Arrays/CommaAfterLastSniff.php +226 -0
  33. package/vendor/phpcsstandards/phpcsextra/NormalizedArrays/ruleset.xml +5 -0
  34. package/vendor/phpcsstandards/phpcsextra/README.md +573 -0
  35. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Arrays/DisallowShortArraySyntaxStandard.xml +27 -0
  36. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Arrays/DuplicateArrayKeyStandard.xml +44 -0
  37. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Arrays/MixedArrayKeyTypesStandard.xml +40 -0
  38. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Arrays/MixedKeyedUnkeyedArrayStandard.xml +31 -0
  39. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/DisallowAnonClassParenthesesStandard.xml +24 -0
  40. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/DisallowFinalClassStandard.xml +25 -0
  41. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/ModifierKeywordOrderStandard.xml +27 -0
  42. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/RequireAnonClassParenthesesStandard.xml +23 -0
  43. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Classes/RequireFinalClassStandard.xml +25 -0
  44. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/CodeAnalysis/ConstructorDestructorReturnStandard.xml +64 -0
  45. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/CodeAnalysis/ForeachUniqueAssignmentStandard.xml +26 -0
  46. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/CodeAnalysis/NoDoubleNegativeStandard.xml +27 -0
  47. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/CodeAnalysis/NoEchoSprintfStandard.xml +25 -0
  48. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/CodeAnalysis/StaticInFinalClassStandard.xml +43 -0
  49. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Constants/LowercaseClassResolutionKeywordStandard.xml +23 -0
  50. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Constants/ModifierKeywordOrderStandard.xml +30 -0
  51. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Constants/UppercaseMagicConstantsStandard.xml +25 -0
  52. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/ControlStructures/DisallowAlternativeSyntaxStandard.xml +35 -0
  53. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/ControlStructures/DisallowLonelyIfStandard.xml +49 -0
  54. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/ControlStructures/IfElseDeclarationStandard.xml +37 -0
  55. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Files/SeparateFunctionsFromOOStandard.xml +45 -0
  56. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/FunctionDeclarations/NoLongClosuresStandard.xml +42 -0
  57. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/FunctionDeclarations/RequireFinalMethodsInTraitsStandard.xml +33 -0
  58. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Lists/DisallowLongListSyntaxStandard.xml +23 -0
  59. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Lists/DisallowShortListSyntaxStandard.xml +23 -0
  60. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Namespaces/DisallowCurlyBraceSyntaxStandard.xml +27 -0
  61. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Namespaces/DisallowDeclarationWithoutNameStandard.xml +25 -0
  62. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Namespaces/EnforceCurlyBraceSyntaxStandard.xml +27 -0
  63. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Namespaces/OneDeclarationPerFileStandard.xml +27 -0
  64. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/NamingConventions/NoReservedKeywordParameterNamesStandard.xml +23 -0
  65. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/OOStructures/AlphabeticExtendsImplementsStandard.xml +27 -0
  66. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Operators/ConcatPositionStandard.xml +31 -0
  67. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Operators/DisallowLogicalAndOrStandard.xml +30 -0
  68. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Operators/DisallowShortTernaryStandard.xml +26 -0
  69. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Operators/DisallowStandalonePostIncrementDecrementStandard.xml +44 -0
  70. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Operators/StrictComparisonsStandard.xml +29 -0
  71. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/Operators/TypeSeparatorSpacingStandard.xml +33 -0
  72. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/PHP/LowercasePHPTagStandard.xml +25 -0
  73. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/PHP/OneStatementInShortEchoTagStandard.xml +41 -0
  74. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/DisallowMixedGroupUseStandard.xml +39 -0
  75. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/DisallowUseClassStandard.xml +25 -0
  76. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/DisallowUseConstStandard.xml +25 -0
  77. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/DisallowUseFunctionStandard.xml +25 -0
  78. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/KeywordSpacingStandard.xml +29 -0
  79. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/LowercaseFunctionConstStandard.xml +25 -0
  80. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/NoLeadingBackslashStandard.xml +23 -0
  81. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/UseStatements/NoUselessAliasesStandard.xml +30 -0
  82. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/WhiteSpace/AnonClassKeywordSpacingStandard.xml +31 -0
  83. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/WhiteSpace/CommaSpacingStandard.xml +94 -0
  84. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/WhiteSpace/DisallowInlineTabsStandard.xml +25 -0
  85. package/vendor/phpcsstandards/phpcsextra/Universal/Docs/WhiteSpace/PrecisionAlignmentStandard.xml +29 -0
  86. package/vendor/phpcsstandards/phpcsextra/Universal/Helpers/DummyTokenizer.php +60 -0
  87. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php +89 -0
  88. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Arrays/DuplicateArrayKeySniff.php +297 -0
  89. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Arrays/MixedArrayKeyTypesSniff.php +174 -0
  90. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Arrays/MixedKeyedUnkeyedArraySniff.php +134 -0
  91. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Classes/DisallowAnonClassParenthesesSniff.php +112 -0
  92. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Classes/DisallowFinalClassSniff.php +116 -0
  93. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Classes/ModifierKeywordOrderSniff.php +188 -0
  94. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Classes/RequireAnonClassParenthesesSniff.php +81 -0
  95. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Classes/RequireFinalClassSniff.php +102 -0
  96. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/CodeAnalysis/ConstructorDestructorReturnSniff.php +211 -0
  97. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/CodeAnalysis/ForeachUniqueAssignmentSniff.php +153 -0
  98. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/CodeAnalysis/NoDoubleNegativeSniff.php +269 -0
  99. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/CodeAnalysis/NoEchoSprintfSniff.php +131 -0
  100. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/CodeAnalysis/StaticInFinalClassSniff.php +216 -0
  101. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Constants/LowercaseClassResolutionKeywordSniff.php +106 -0
  102. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Constants/ModifierKeywordOrderSniff.php +199 -0
  103. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Constants/UppercaseMagicConstantsSniff.php +89 -0
  104. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/ControlStructures/DisallowAlternativeSyntaxSniff.php +216 -0
  105. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/ControlStructures/DisallowLonelyIfSniff.php +348 -0
  106. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/ControlStructures/IfElseDeclarationSniff.php +164 -0
  107. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Files/SeparateFunctionsFromOOSniff.php +190 -0
  108. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/FunctionDeclarations/NoLongClosuresSniff.php +233 -0
  109. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/FunctionDeclarations/RequireFinalMethodsInTraitsSniff.php +120 -0
  110. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Lists/DisallowLongListSyntaxSniff.php +71 -0
  111. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Lists/DisallowShortListSyntaxSniff.php +86 -0
  112. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Namespaces/DisallowCurlyBraceSyntaxSniff.php +81 -0
  113. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Namespaces/DisallowDeclarationWithoutNameSniff.php +80 -0
  114. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Namespaces/EnforceCurlyBraceSyntaxSniff.php +81 -0
  115. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Namespaces/OneDeclarationPerFileSniff.php +96 -0
  116. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/NamingConventions/NoReservedKeywordParameterNamesSniff.php +190 -0
  117. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/OOStructures/AlphabeticExtendsImplementsSniff.php +275 -0
  118. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Operators/ConcatPositionSniff.php +204 -0
  119. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Operators/DisallowLogicalAndOrSniff.php +112 -0
  120. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Operators/DisallowShortTernarySniff.php +76 -0
  121. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Operators/DisallowStandalonePostIncrementDecrementSniff.php +197 -0
  122. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Operators/StrictComparisonsSniff.php +116 -0
  123. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/Operators/TypeSeparatorSpacingSniff.php +85 -0
  124. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/PHP/LowercasePHPTagSniff.php +87 -0
  125. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/PHP/OneStatementInShortEchoTagSniff.php +101 -0
  126. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/DisallowMixedGroupUseSniff.php +248 -0
  127. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/DisallowUseClassSniff.php +211 -0
  128. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/DisallowUseConstSniff.php +211 -0
  129. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/DisallowUseFunctionSniff.php +211 -0
  130. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/KeywordSpacingSniff.php +207 -0
  131. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/LowercaseFunctionConstSniff.php +156 -0
  132. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/NoLeadingBackslashSniff.php +170 -0
  133. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/UseStatements/NoUselessAliasesSniff.php +155 -0
  134. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/WhiteSpace/AnonClassKeywordSpacingSniff.php +79 -0
  135. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/WhiteSpace/CommaSpacingSniff.php +408 -0
  136. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/WhiteSpace/DisallowInlineTabsSniff.php +173 -0
  137. package/vendor/phpcsstandards/phpcsextra/Universal/Sniffs/WhiteSpace/PrecisionAlignmentSniff.php +445 -0
  138. package/vendor/phpcsstandards/phpcsextra/Universal/ruleset.xml +5 -0
  139. package/vendor/phpcsstandards/phpcsextra/composer.json +69 -0
  140. package/vendor/phpcsstandards/phpcsutils/.phpdoc.xml.dist +36 -0
  141. package/vendor/phpcsstandards/phpcsutils/CHANGELOG.md +1106 -0
  142. package/vendor/phpcsstandards/phpcsutils/LICENSE +165 -0
  143. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/AbstractSniffs/AbstractArrayDeclarationSniff.php +551 -0
  144. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCFile.php +781 -0
  145. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/BCTokens.php +123 -0
  146. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/BackCompat/Helper.php +202 -0
  147. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/InvalidTokenArray.php +44 -0
  148. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestFileNotFound.php +47 -0
  149. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestMarkerNotFound.php +43 -0
  150. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/TestTargetNotFound.php +50 -0
  151. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Fixers/SpacesFixer.php +246 -0
  152. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/Cache.php +218 -0
  153. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrList.php +687 -0
  154. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/IsShortArrayOrListWithCache.php +269 -0
  155. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/NoFileCache.php +164 -0
  156. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Internal/StableCollections.php +75 -0
  157. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/TestUtils/UtilityMethodTestCase.php +459 -0
  158. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/Collections.php +837 -0
  159. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Tokens/TokenHelper.php +55 -0
  160. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Arrays.php +227 -0
  161. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Conditions.php +156 -0
  162. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Context.php +232 -0
  163. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ControlStructures.php +276 -0
  164. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/FunctionDeclarations.php +828 -0
  165. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/GetTokensAsString.php +262 -0
  166. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Lists.php +359 -0
  167. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/MessageHelper.php +145 -0
  168. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Namespaces.php +389 -0
  169. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/NamingConventions.php +116 -0
  170. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Numbers.php +322 -0
  171. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/ObjectDeclarations.php +359 -0
  172. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Operators.php +252 -0
  173. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Orthography.php +120 -0
  174. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Parentheses.php +419 -0
  175. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/PassedParameters.php +510 -0
  176. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Scopes.php +143 -0
  177. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/TextStrings.php +331 -0
  178. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/UseStatements.php +432 -0
  179. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Utils/Variables.php +333 -0
  180. package/vendor/phpcsstandards/phpcsutils/PHPCSUtils/ruleset.xml +4 -0
  181. package/vendor/phpcsstandards/phpcsutils/README.md +297 -0
  182. package/vendor/phpcsstandards/phpcsutils/composer.json +92 -0
  183. package/vendor/phpcsstandards/phpcsutils/phpcsutils-autoload.php +68 -0
  184. package/vendor/squizlabs/php_codesniffer/CHANGELOG.md +7596 -0
  185. package/vendor/squizlabs/php_codesniffer/CodeSniffer.conf +5 -0
  186. package/vendor/squizlabs/php_codesniffer/CodeSniffer.conf.dist +9 -0
  187. package/vendor/squizlabs/php_codesniffer/README.md +153 -0
  188. package/vendor/squizlabs/php_codesniffer/autoload.php +345 -0
  189. package/vendor/squizlabs/php_codesniffer/bin/phpcbf +15 -0
  190. package/vendor/squizlabs/php_codesniffer/bin/phpcbf.bat +10 -0
  191. package/vendor/squizlabs/php_codesniffer/bin/phpcs +15 -0
  192. package/vendor/squizlabs/php_codesniffer/bin/phpcs.bat +10 -0
  193. package/vendor/squizlabs/php_codesniffer/composer.json +90 -0
  194. package/vendor/squizlabs/php_codesniffer/licence.txt +24 -0
  195. package/vendor/squizlabs/php_codesniffer/phpcs.xsd +136 -0
  196. package/vendor/squizlabs/php_codesniffer/src/Config.php +1661 -0
  197. package/vendor/squizlabs/php_codesniffer/src/Exceptions/DeepExitException.php +20 -0
  198. package/vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php +17 -0
  199. package/vendor/squizlabs/php_codesniffer/src/Exceptions/TokenizerException.php +17 -0
  200. package/vendor/squizlabs/php_codesniffer/src/Files/DummyFile.php +82 -0
  201. package/vendor/squizlabs/php_codesniffer/src/Files/File.php +2954 -0
  202. package/vendor/squizlabs/php_codesniffer/src/Files/FileList.php +261 -0
  203. package/vendor/squizlabs/php_codesniffer/src/Files/LocalFile.php +219 -0
  204. package/vendor/squizlabs/php_codesniffer/src/Filters/ExactMatch.php +156 -0
  205. package/vendor/squizlabs/php_codesniffer/src/Filters/Filter.php +288 -0
  206. package/vendor/squizlabs/php_codesniffer/src/Filters/GitModified.php +124 -0
  207. package/vendor/squizlabs/php_codesniffer/src/Filters/GitStaged.php +126 -0
  208. package/vendor/squizlabs/php_codesniffer/src/Fixer.php +846 -0
  209. package/vendor/squizlabs/php_codesniffer/src/Generators/Generator.php +128 -0
  210. package/vendor/squizlabs/php_codesniffer/src/Generators/HTML.php +316 -0
  211. package/vendor/squizlabs/php_codesniffer/src/Generators/Markdown.php +195 -0
  212. package/vendor/squizlabs/php_codesniffer/src/Generators/Text.php +259 -0
  213. package/vendor/squizlabs/php_codesniffer/src/Reporter.php +445 -0
  214. package/vendor/squizlabs/php_codesniffer/src/Reports/Cbf.php +254 -0
  215. package/vendor/squizlabs/php_codesniffer/src/Reports/Checkstyle.php +111 -0
  216. package/vendor/squizlabs/php_codesniffer/src/Reports/Code.php +365 -0
  217. package/vendor/squizlabs/php_codesniffer/src/Reports/Csv.php +92 -0
  218. package/vendor/squizlabs/php_codesniffer/src/Reports/Diff.php +131 -0
  219. package/vendor/squizlabs/php_codesniffer/src/Reports/Emacs.php +91 -0
  220. package/vendor/squizlabs/php_codesniffer/src/Reports/Full.php +260 -0
  221. package/vendor/squizlabs/php_codesniffer/src/Reports/Gitblame.php +91 -0
  222. package/vendor/squizlabs/php_codesniffer/src/Reports/Hgblame.php +110 -0
  223. package/vendor/squizlabs/php_codesniffer/src/Reports/Info.php +173 -0
  224. package/vendor/squizlabs/php_codesniffer/src/Reports/Json.php +107 -0
  225. package/vendor/squizlabs/php_codesniffer/src/Reports/Junit.php +133 -0
  226. package/vendor/squizlabs/php_codesniffer/src/Reports/Notifysend.php +243 -0
  227. package/vendor/squizlabs/php_codesniffer/src/Reports/Performance.php +161 -0
  228. package/vendor/squizlabs/php_codesniffer/src/Reports/Report.php +87 -0
  229. package/vendor/squizlabs/php_codesniffer/src/Reports/Source.php +337 -0
  230. package/vendor/squizlabs/php_codesniffer/src/Reports/Summary.php +184 -0
  231. package/vendor/squizlabs/php_codesniffer/src/Reports/Svnblame.php +73 -0
  232. package/vendor/squizlabs/php_codesniffer/src/Reports/VersionControl.php +377 -0
  233. package/vendor/squizlabs/php_codesniffer/src/Reports/Xml.php +128 -0
  234. package/vendor/squizlabs/php_codesniffer/src/Ruleset.php +1623 -0
  235. package/vendor/squizlabs/php_codesniffer/src/Runner.php +992 -0
  236. package/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractArraySniff.php +172 -0
  237. package/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractPatternSniff.php +941 -0
  238. package/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractScopeSniff.php +189 -0
  239. package/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractVariableSniff.php +230 -0
  240. package/vendor/squizlabs/php_codesniffer/src/Sniffs/DeprecatedSniff.php +63 -0
  241. package/vendor/squizlabs/php_codesniffer/src/Sniffs/Sniff.php +80 -0
  242. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Arrays/ArrayIndentStandard.xml +107 -0
  243. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Arrays/DisallowLongArraySyntaxStandard.xml +23 -0
  244. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Arrays/DisallowShortArraySyntaxStandard.xml +23 -0
  245. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Classes/DuplicateClassNameStandard.xml +27 -0
  246. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Classes/OpeningBraceSameLineStandard.xml +36 -0
  247. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/AssignmentInConditionStandard.xml +23 -0
  248. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/EmptyPHPStatementStandard.xml +44 -0
  249. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/EmptyStatementStandard.xml +23 -0
  250. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/ForLoopShouldBeWhileLoopStandard.xml +23 -0
  251. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/ForLoopWithTestFunctionCallStandard.xml +24 -0
  252. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/JumbledIncrementerStandard.xml +25 -0
  253. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/RequireExplicitBooleanOperatorPrecedenceStandard.xml +44 -0
  254. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnconditionalIfStatementStandard.xml +39 -0
  255. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnnecessaryFinalModifierStandard.xml +29 -0
  256. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnusedFunctionParameterStandard.xml +25 -0
  257. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UselessOverridingMethodStandard.xml +32 -0
  258. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Commenting/DocCommentStandard.xml +269 -0
  259. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Commenting/FixmeStandard.xml +25 -0
  260. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Commenting/TodoStandard.xml +25 -0
  261. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/ControlStructures/DisallowYodaConditionsStandard.xml +23 -0
  262. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/ControlStructures/InlineControlStructureStandard.xml +22 -0
  263. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Debug/CSSLintStandard.xml +19 -0
  264. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Debug/ClosureLinterStandard.xml +19 -0
  265. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Debug/JSHintStandard.xml +19 -0
  266. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/ByteOrderMarkStandard.xml +7 -0
  267. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/EndFileNewlineStandard.xml +7 -0
  268. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/EndFileNoNewlineStandard.xml +7 -0
  269. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/ExecutableFileStandard.xml +7 -0
  270. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/InlineHTMLStandard.xml +24 -0
  271. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LineEndingsStandard.xml +7 -0
  272. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LineLengthStandard.xml +7 -0
  273. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LowercasedFilenameStandard.xml +7 -0
  274. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneClassPerFileStandard.xml +29 -0
  275. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneInterfacePerFileStandard.xml +29 -0
  276. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneObjectStructurePerFileStandard.xml +29 -0
  277. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneTraitPerFileStandard.xml +29 -0
  278. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/DisallowMultipleStatementsStandard.xml +20 -0
  279. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/MultipleStatementAlignmentStandard.xml +56 -0
  280. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/NoSpaceAfterCastStandard.xml +19 -0
  281. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterCastStandard.xml +19 -0
  282. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterNotStandard.xml +22 -0
  283. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceBeforeCastStandard.xml +21 -0
  284. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/CallTimePassByReferenceStandard.xml +31 -0
  285. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/FunctionCallArgumentSpacingStandard.xml +39 -0
  286. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceBsdAllmanStandard.xml +24 -0
  287. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceKernighanRitchieStandard.xml +24 -0
  288. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Metrics/CyclomaticComplexityStandard.xml +7 -0
  289. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Metrics/NestingLevelStandard.xml +7 -0
  290. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/AbstractClassNamePrefixStandard.xml +23 -0
  291. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/CamelCapsFunctionNameStandard.xml +23 -0
  292. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/ConstructorNameStandard.xml +29 -0
  293. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/InterfaceNameSuffixStandard.xml +23 -0
  294. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/TraitNameSuffixStandard.xml +23 -0
  295. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/UpperCaseConstantNameStandard.xml +29 -0
  296. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/BacktickOperatorStandard.xml +7 -0
  297. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/CharacterBeforePHPOpeningTagStandard.xml +22 -0
  298. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/ClosingPHPTagStandard.xml +22 -0
  299. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DeprecatedFunctionsStandard.xml +19 -0
  300. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowAlternativePHPTagsStandard.xml +7 -0
  301. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowRequestSuperglobalStandard.xml +7 -0
  302. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowShortOpenTagStandard.xml +7 -0
  303. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DiscourageGotoStandard.xml +7 -0
  304. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/ForbiddenFunctionsStandard.xml +19 -0
  305. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseConstantStandard.xml +23 -0
  306. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseKeywordStandard.xml +19 -0
  307. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseTypeStandard.xml +38 -0
  308. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/NoSilencedErrorsStandard.xml +23 -0
  309. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/RequireStrictTypesStandard.xml +38 -0
  310. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/SAPIUsageStandard.xml +23 -0
  311. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/SyntaxStandard.xml +21 -0
  312. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/UpperCaseConstantStandard.xml +23 -0
  313. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Strings/UnnecessaryHeredocStandard.xml +39 -0
  314. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Strings/UnnecessaryStringConcatStandard.xml +19 -0
  315. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/VersionControl/SubversionPropertiesStandard.xml +7 -0
  316. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/ArbitraryParenthesesSpacingStandard.xml +23 -0
  317. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/DisallowSpaceIndentStandard.xml +7 -0
  318. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/DisallowTabIndentStandard.xml +7 -0
  319. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/HereNowdocIdentifierSpacingStandard.xml +23 -0
  320. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/IncrementDecrementSpacingStandard.xml +26 -0
  321. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/LanguageConstructSpacingStandard.xml +44 -0
  322. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/ScopeIndentStandard.xml +23 -0
  323. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/SpreadOperatorSpacingAfterStandard.xml +34 -0
  324. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Arrays/ArrayIndentSniff.php +193 -0
  325. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php +72 -0
  326. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php +61 -0
  327. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php +126 -0
  328. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php +124 -0
  329. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php +171 -0
  330. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php +183 -0
  331. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php +97 -0
  332. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php +91 -0
  333. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php +101 -0
  334. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php +134 -0
  335. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/RequireExplicitBooleanOperatorPrecedenceSniff.php +112 -0
  336. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php +93 -0
  337. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php +88 -0
  338. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php +307 -0
  339. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php +184 -0
  340. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php +357 -0
  341. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Commenting/FixmeSniff.php +78 -0
  342. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Commenting/TodoSniff.php +77 -0
  343. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php +185 -0
  344. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php +365 -0
  345. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php +98 -0
  346. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php +119 -0
  347. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/ESLintSniff.php +115 -0
  348. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/JSHintSniff.php +97 -0
  349. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php +82 -0
  350. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php +84 -0
  351. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php +91 -0
  352. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php +62 -0
  353. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php +79 -0
  354. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php +148 -0
  355. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php +201 -0
  356. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php +70 -0
  357. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php +57 -0
  358. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php +57 -0
  359. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php +62 -0
  360. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php +57 -0
  361. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php +105 -0
  362. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php +426 -0
  363. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php +61 -0
  364. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php +161 -0
  365. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php +143 -0
  366. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/SpaceBeforeCastSniff.php +73 -0
  367. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php +141 -0
  368. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php +197 -0
  369. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php +225 -0
  370. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php +177 -0
  371. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php +117 -0
  372. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php +100 -0
  373. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/AbstractClassNamePrefixSniff.php +60 -0
  374. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php +222 -0
  375. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php +178 -0
  376. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php +55 -0
  377. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/TraitNameSuffixSniff.php +55 -0
  378. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php +151 -0
  379. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php +48 -0
  380. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php +86 -0
  381. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php +54 -0
  382. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php +75 -0
  383. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php +253 -0
  384. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php +55 -0
  385. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php +168 -0
  386. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php +50 -0
  387. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php +245 -0
  388. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php +244 -0
  389. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php +82 -0
  390. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php +364 -0
  391. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php +77 -0
  392. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php +108 -0
  393. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php +67 -0
  394. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php +75 -0
  395. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php +57 -0
  396. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Strings/UnnecessaryHeredocSniff.php +97 -0
  397. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php +129 -0
  398. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php +228 -0
  399. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php +186 -0
  400. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php +239 -0
  401. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php +232 -0
  402. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php +201 -0
  403. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/HereNowdocIdentifierSpacingSniff.php +69 -0
  404. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/IncrementDecrementSpacingSniff.php +174 -0
  405. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php +161 -0
  406. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php +1591 -0
  407. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/SpreadOperatorSpacingAfterSniff.php +159 -0
  408. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.inc +154 -0
  409. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.inc.fixed +155 -0
  410. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.php +81 -0
  411. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.1.inc +33 -0
  412. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.1.inc.fixed +33 -0
  413. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.2.inc +17 -0
  414. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.2.inc.fixed +17 -0
  415. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.3.inc +7 -0
  416. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.php +75 -0
  417. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.inc +12 -0
  418. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.inc.fixed +12 -0
  419. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.php +58 -0
  420. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.1.inc +14 -0
  421. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.10.inc +6 -0
  422. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.11.inc +13 -0
  423. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.2.inc +6 -0
  424. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.3.inc +10 -0
  425. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.4.inc +5 -0
  426. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.5.inc +8 -0
  427. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.6.inc +12 -0
  428. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.7.inc +13 -0
  429. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.8.inc +8 -0
  430. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.9.inc +5 -0
  431. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.97.inc +8 -0
  432. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.98.inc +8 -0
  433. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.99.inc +7 -0
  434. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php +98 -0
  435. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.inc +100 -0
  436. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.inc.fixed +100 -0
  437. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.php +68 -0
  438. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.1.inc +95 -0
  439. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.2.inc +4 -0
  440. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.3.inc +4 -0
  441. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.4.inc +6 -0
  442. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.5.inc +6 -0
  443. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.6.inc +5 -0
  444. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.php +96 -0
  445. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.1.inc +86 -0
  446. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.1.inc.fixed +80 -0
  447. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.2.inc +27 -0
  448. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.2.inc.fixed +23 -0
  449. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php +110 -0
  450. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.inc +74 -0
  451. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.php +68 -0
  452. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.1.inc +37 -0
  453. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.2.inc +4 -0
  454. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.3.inc +6 -0
  455. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.php +64 -0
  456. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.1.inc +95 -0
  457. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.2.inc +5 -0
  458. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.3.inc +6 -0
  459. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.php +75 -0
  460. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.1.inc +89 -0
  461. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.2.inc +8 -0
  462. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.3.inc +6 -0
  463. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.4.inc +8 -0
  464. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.php +72 -0
  465. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/RequireExplicitBooleanOperatorPrecedenceUnitTest.inc +131 -0
  466. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/RequireExplicitBooleanOperatorPrecedenceUnitTest.php +91 -0
  467. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.1.inc +13 -0
  468. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.2.inc +4 -0
  469. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.php +65 -0
  470. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.1.inc +56 -0
  471. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.2.inc +5 -0
  472. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php +69 -0
  473. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.1.inc +274 -0
  474. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.2.inc +5 -0
  475. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.3.inc +5 -0
  476. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.php +78 -0
  477. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.1.inc +173 -0
  478. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.2.inc +7 -0
  479. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.3.inc +10 -0
  480. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.4.inc +10 -0
  481. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.5.inc +10 -0
  482. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.6.inc +10 -0
  483. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php +72 -0
  484. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.1.inc +270 -0
  485. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.1.inc.fixed +275 -0
  486. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.1.js +270 -0
  487. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.1.js.fixed +275 -0
  488. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.2.inc +6 -0
  489. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.2.js +4 -0
  490. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.php +127 -0
  491. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.inc +23 -0
  492. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.js +23 -0
  493. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php +63 -0
  494. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.inc +23 -0
  495. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.js +23 -0
  496. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php +62 -0
  497. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.inc +187 -0
  498. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.php +95 -0
  499. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.1.inc +278 -0
  500. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.1.inc.fixed +316 -0
  501. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.1.js +35 -0
  502. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.1.js.fixed +44 -0
  503. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.2.inc +8 -0
  504. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.2.js +5 -0
  505. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.3.inc +4 -0
  506. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.3.js +5 -0
  507. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.4.inc +5 -0
  508. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.5.inc +4 -0
  509. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.6.inc +6 -0
  510. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.7.inc +16 -0
  511. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.php +121 -0
  512. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.css +6 -0
  513. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.php +77 -0
  514. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.js +6 -0
  515. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.php +74 -0
  516. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.js +1 -0
  517. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.php +122 -0
  518. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/JSHintUnitTest.js +3 -0
  519. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/JSHintUnitTest.php +71 -0
  520. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.1.inc +4 -0
  521. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.2.inc +3 -0
  522. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.3.inc +1 -0
  523. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.4.inc +0 -0
  524. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.5.inc +0 -0
  525. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.php +63 -0
  526. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.css +3 -0
  527. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.inc +3 -0
  528. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.js +3 -0
  529. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.css +2 -0
  530. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.inc +2 -0
  531. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.js +2 -0
  532. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.css +2 -0
  533. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.css.fixed +2 -0
  534. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.inc +2 -0
  535. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.inc.fixed +2 -0
  536. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.js +2 -0
  537. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.js.fixed +2 -0
  538. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.4.inc +2 -0
  539. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.4.inc.fixed +2 -0
  540. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.5.inc +2 -0
  541. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.6.inc +1 -0
  542. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.6.inc.fixed +1 -0
  543. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.7.inc +1 -0
  544. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.7.inc.fixed +1 -0
  545. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.8.inc +1 -0
  546. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.php +68 -0
  547. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css +3 -0
  548. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css.fixed +2 -0
  549. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.inc +3 -0
  550. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.inc.fixed +2 -0
  551. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.js +3 -0
  552. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.js.fixed +2 -0
  553. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.10.inc +1 -0
  554. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css +2 -0
  555. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css.fixed +2 -0
  556. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc +3 -0
  557. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc.fixed +3 -0
  558. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js +2 -0
  559. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js.fixed +2 -0
  560. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.css +2 -0
  561. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.inc +2 -0
  562. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.js +2 -0
  563. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.4.inc +3 -0
  564. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.5.inc +2 -0
  565. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.6.inc +2 -0
  566. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.6.inc.fixed +2 -0
  567. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.7.inc +6 -0
  568. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.8.inc +1 -0
  569. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.8.inc.fixed +1 -0
  570. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.9.inc +1 -0
  571. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.9.inc.fixed +1 -0
  572. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.php +72 -0
  573. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.1.inc +1 -0
  574. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.2.inc +1 -0
  575. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.3.inc +1 -0
  576. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.4.inc +1 -0
  577. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.php +76 -0
  578. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.1.inc +3 -0
  579. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.2.inc +3 -0
  580. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.3.inc +6 -0
  581. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.4.inc +3 -0
  582. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.5.inc +3 -0
  583. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.6.inc +2 -0
  584. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.7.inc +2 -0
  585. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.php +69 -0
  586. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.1.inc +18 -0
  587. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.1.inc.fixed +18 -0
  588. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.2.inc +5 -0
  589. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.2.inc.fixed +5 -0
  590. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css +3 -0
  591. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css.fixed +3 -0
  592. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js +2 -0
  593. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js.fixed +2 -0
  594. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.php +68 -0
  595. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.1.inc +84 -0
  596. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.2.inc +7 -0
  597. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.3.inc +16 -0
  598. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.4.inc +16 -0
  599. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.php +114 -0
  600. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.1.inc +7 -0
  601. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.2.inc +7 -0
  602. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.php +106 -0
  603. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.inc +13 -0
  604. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.php +56 -0
  605. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.inc +13 -0
  606. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.php +56 -0
  607. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.inc +26 -0
  608. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.php +59 -0
  609. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.inc +17 -0
  610. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.php +56 -0
  611. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/lowercased_filename_unit_test.inc +1 -0
  612. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.inc +20 -0
  613. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.inc.fixed +25 -0
  614. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.php +59 -0
  615. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc +504 -0
  616. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc.fixed +504 -0
  617. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.js +118 -0
  618. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.js.fixed +118 -0
  619. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.php +170 -0
  620. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.inc +51 -0
  621. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.inc.fixed +51 -0
  622. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.php +77 -0
  623. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.1.inc +100 -0
  624. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.1.inc.fixed +97 -0
  625. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.2.inc +3 -0
  626. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.php +103 -0
  627. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.1.inc +86 -0
  628. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.1.inc.fixed +83 -0
  629. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.2.inc +7 -0
  630. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.js +5 -0
  631. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.js.fixed +5 -0
  632. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.php +96 -0
  633. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.inc +65 -0
  634. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.inc.fixed +65 -0
  635. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.php +83 -0
  636. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.1.inc +66 -0
  637. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.2.inc +7 -0
  638. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.3.inc +7 -0
  639. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php +75 -0
  640. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.1.inc +199 -0
  641. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.1.inc.fixed +199 -0
  642. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.2.inc +7 -0
  643. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.php +96 -0
  644. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.inc +270 -0
  645. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed +287 -0
  646. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.php +91 -0
  647. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.1.inc +232 -0
  648. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.1.inc.fixed +222 -0
  649. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.2.inc +19 -0
  650. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.2.inc.fixed +19 -0
  651. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.3.inc +7 -0
  652. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.php +116 -0
  653. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.1.inc +460 -0
  654. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.2.inc +7 -0
  655. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.3.inc +7 -0
  656. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.php +77 -0
  657. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.1.inc +108 -0
  658. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.2.inc +7 -0
  659. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.3.inc +7 -0
  660. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php +70 -0
  661. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.1.inc +45 -0
  662. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.2.inc +7 -0
  663. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.php +67 -0
  664. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.1.inc +204 -0
  665. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.2.inc +9 -0
  666. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.3.inc +7 -0
  667. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.php +105 -0
  668. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.inc +130 -0
  669. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.php +66 -0
  670. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.1.inc +13 -0
  671. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.2.inc +7 -0
  672. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.php +62 -0
  673. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.1.inc +11 -0
  674. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.2.inc +7 -0
  675. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.php +63 -0
  676. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.1.inc +91 -0
  677. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.2.inc +7 -0
  678. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.3.inc +7 -0
  679. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.4.inc +7 -0
  680. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.5.inc +9 -0
  681. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.php +74 -0
  682. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.inc +9 -0
  683. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.php +57 -0
  684. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.1.inc +9 -0
  685. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.2.inc +4 -0
  686. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.3.inc +3 -0
  687. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.php +61 -0
  688. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.1.inc +10 -0
  689. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.2.inc +5 -0
  690. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.php +64 -0
  691. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.inc +4 -0
  692. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.php +63 -0
  693. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.1.inc +14 -0
  694. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.1.inc.fixed +14 -0
  695. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc +6 -0
  696. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc.fixed +6 -0
  697. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.3.inc +7 -0
  698. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.php +110 -0
  699. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.inc +16 -0
  700. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.php +56 -0
  701. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc +11 -0
  702. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc.fixed +11 -0
  703. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc +8 -0
  704. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc.fixed +8 -0
  705. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.3.inc +20 -0
  706. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.4.inc +6 -0
  707. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.php +110 -0
  708. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.inc +18 -0
  709. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.php +58 -0
  710. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.inc +60 -0
  711. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.php +59 -0
  712. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.1.inc +153 -0
  713. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.1.inc.fixed +153 -0
  714. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.2.inc +4 -0
  715. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.js +14 -0
  716. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.js.fixed +14 -0
  717. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.php +105 -0
  718. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.inc +64 -0
  719. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.inc.fixed +64 -0
  720. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.php +78 -0
  721. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.inc +145 -0
  722. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.inc.fixed +145 -0
  723. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.php +117 -0
  724. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.inc +16 -0
  725. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.php +57 -0
  726. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.1.inc +8 -0
  727. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.10.inc +5 -0
  728. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.11.inc +5 -0
  729. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.11.inc.fixed +5 -0
  730. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.12.inc +5 -0
  731. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.12.inc.fixed +5 -0
  732. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.13.inc +3 -0
  733. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.14.inc +5 -0
  734. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.14.inc.fixed +5 -0
  735. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.15.inc +5 -0
  736. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.15.inc.fixed +5 -0
  737. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.2.inc +2 -0
  738. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.3.inc +5 -0
  739. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.4.inc +10 -0
  740. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.5.inc +6 -0
  741. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.6.inc +4 -0
  742. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.7.inc +4 -0
  743. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.8.inc +5 -0
  744. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.9.inc +5 -0
  745. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.php +72 -0
  746. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.inc +5 -0
  747. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.php +53 -0
  748. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.1.inc +4 -0
  749. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.2.inc +3 -0
  750. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.php +63 -0
  751. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.inc +98 -0
  752. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.inc.fixed +98 -0
  753. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.php +75 -0
  754. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.1.inc +108 -0
  755. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.1.inc.fixed +108 -0
  756. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.2.inc +108 -0
  757. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.2.inc.fixed +108 -0
  758. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.3.inc +6 -0
  759. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryHeredocUnitTest.php +74 -0
  760. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.1.inc +34 -0
  761. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.2.inc +7 -0
  762. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.js +15 -0
  763. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.php +87 -0
  764. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.1.css +35 -0
  765. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.1.inc +61 -0
  766. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.2.css +32 -0
  767. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.2.inc +31 -0
  768. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.3.inc +43 -0
  769. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.4.inc +71 -0
  770. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.5.inc +34 -0
  771. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.6.inc +34 -0
  772. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.7.inc +19 -0
  773. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.js +33 -0
  774. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.php +175 -0
  775. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/SubversionPropertiesUnitTest.inc +3 -0
  776. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/SubversionPropertiesUnitTest.php +66 -0
  777. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.1.inc +192 -0
  778. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.1.inc.fixed +180 -0
  779. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.2.inc +4 -0
  780. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.php +106 -0
  781. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.1.inc +125 -0
  782. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.1.inc.fixed +125 -0
  783. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.2.inc +125 -0
  784. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.2.inc.fixed +125 -0
  785. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.3.inc +19 -0
  786. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.3.inc.fixed +19 -0
  787. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.4.inc +13 -0
  788. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.css +4 -0
  789. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.css.fixed +4 -0
  790. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.js +9 -0
  791. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.js.fixed +9 -0
  792. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.php +145 -0
  793. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.1.inc +102 -0
  794. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.1.inc.fixed +102 -0
  795. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.2.inc +19 -0
  796. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.2.inc.fixed +19 -0
  797. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.3.inc +13 -0
  798. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.css +5 -0
  799. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.css.fixed +5 -0
  800. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.js +9 -0
  801. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.js.fixed +9 -0
  802. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.php +153 -0
  803. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/HereNowdocIdentifierSpacingUnitTest.inc +25 -0
  804. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/HereNowdocIdentifierSpacingUnitTest.inc.fixed +25 -0
  805. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/HereNowdocIdentifierSpacingUnitTest.php +58 -0
  806. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.inc +43 -0
  807. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.inc.fixed +41 -0
  808. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.js +17 -0
  809. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.js.fixed +16 -0
  810. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.php +86 -0
  811. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.1.inc +100 -0
  812. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.1.inc.fixed +94 -0
  813. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.2.inc +4 -0
  814. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.php +101 -0
  815. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.inc +1659 -0
  816. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.inc.fixed +1659 -0
  817. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.js +239 -0
  818. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.js.fixed +239 -0
  819. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.2.inc +1659 -0
  820. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.2.inc.fixed +1659 -0
  821. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.3.inc +34 -0
  822. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.3.inc.fixed +34 -0
  823. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.4.inc +6 -0
  824. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.php +220 -0
  825. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.1.inc +78 -0
  826. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.1.inc.fixed +73 -0
  827. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.2.inc +4 -0
  828. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.php +72 -0
  829. package/vendor/squizlabs/php_codesniffer/src/Standards/Generic/ruleset.xml +4 -0
  830. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php +89 -0
  831. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/DisallowSelfActionsSniff.php +127 -0
  832. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/IncludeOwnSystemSniff.php +100 -0
  833. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php +316 -0
  834. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php +143 -0
  835. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Commenting/FunctionCommentSniff.php +86 -0
  836. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Debug/DebugCodeSniff.php +57 -0
  837. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php +66 -0
  838. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Objects/AssignThisSniff.php +83 -0
  839. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Objects/CreateWidgetTypeCallbackSniff.php +220 -0
  840. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php +61 -0
  841. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php +105 -0
  842. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php +116 -0
  843. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/GetRequestDataSniff.php +108 -0
  844. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php +65 -0
  845. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php +78 -0
  846. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/CSS/BrowserSpecificStylesUnitTest.css +13 -0
  847. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/CSS/BrowserSpecificStylesUnitTest.php +53 -0
  848. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/DisallowSelfActionsUnitTest.inc +51 -0
  849. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/DisallowSelfActionsUnitTest.php +58 -0
  850. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/IncludeSystemUnitTest.inc +112 -0
  851. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/IncludeSystemUnitTest.php +65 -0
  852. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/UnusedSystemUnitTest.inc +67 -0
  853. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/UnusedSystemUnitTest.php +60 -0
  854. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Commenting/FunctionCommentUnitTest.inc +101 -0
  855. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Commenting/FunctionCommentUnitTest.php +59 -0
  856. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/DebugCodeUnitTest.inc +4 -0
  857. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/DebugCodeUnitTest.php +56 -0
  858. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/FirebugConsoleUnitTest.js +8 -0
  859. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/FirebugConsoleUnitTest.php +66 -0
  860. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/AssignThisUnitTest.js +20 -0
  861. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/AssignThisUnitTest.php +63 -0
  862. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/CreateWidgetTypeCallbackUnitTest.js +186 -0
  863. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/CreateWidgetTypeCallbackUnitTest.php +62 -0
  864. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/DisallowNewWidgetUnitTest.inc +6 -0
  865. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/DisallowNewWidgetUnitTest.php +53 -0
  866. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/AjaxNullComparisonUnitTest.inc +182 -0
  867. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/AjaxNullComparisonUnitTest.php +60 -0
  868. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/EvalObjectFactoryUnitTest.inc +26 -0
  869. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/EvalObjectFactoryUnitTest.php +57 -0
  870. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/GetRequestDataUnitTest.inc +30 -0
  871. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/GetRequestDataUnitTest.php +61 -0
  872. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/ReturnFunctionValueUnitTest.inc +9 -0
  873. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/ReturnFunctionValueUnitTest.php +57 -0
  874. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Strings/JoinStringsUnitTest.js +18 -0
  875. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Strings/JoinStringsUnitTest.php +67 -0
  876. package/vendor/squizlabs/php_codesniffer/src/Standards/MySource/ruleset.xml +18 -0
  877. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Classes/ClassDeclarationStandard.xml +22 -0
  878. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/ClassCommentStandard.xml +177 -0
  879. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/FileCommentStandard.xml +293 -0
  880. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/FunctionCommentStandard.xml +230 -0
  881. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/InlineCommentStandard.xml +19 -0
  882. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/ControlStructures/ControlSignatureStandard.xml +36 -0
  883. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/ControlStructures/MultiLineConditionStandard.xml +60 -0
  884. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Files/IncludingFileStandard.xml +24 -0
  885. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Files/LineLengthStandard.xml +7 -0
  886. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Formatting/MultiLineAssignmentStandard.xml +35 -0
  887. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Functions/FunctionCallSignatureStandard.xml +19 -0
  888. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Functions/FunctionDeclarationStandard.xml +41 -0
  889. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Functions/ValidDefaultValueStandard.xml +25 -0
  890. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidClassNameStandard.xml +23 -0
  891. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidFunctionNameStandard.xml +23 -0
  892. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidVariableNameStandard.xml +29 -0
  893. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ObjectOperatorIndentStandard.xml +39 -0
  894. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeClosingBraceStandard.xml +23 -0
  895. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeIndentStandard.xml +29 -0
  896. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Classes/ClassDeclarationSniff.php +150 -0
  897. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php +122 -0
  898. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/FileCommentSniff.php +583 -0
  899. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php +539 -0
  900. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/InlineCommentSniff.php +68 -0
  901. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/ControlStructures/ControlSignatureSniff.php +48 -0
  902. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php +283 -0
  903. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Files/IncludingFileSniff.php +136 -0
  904. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php +106 -0
  905. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Functions/FunctionCallSignatureSniff.php +634 -0
  906. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php +549 -0
  907. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php +78 -0
  908. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/NamingConventions/ValidClassNameSniff.php +98 -0
  909. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php +284 -0
  910. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/NamingConventions/ValidVariableNameSniff.php +103 -0
  911. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php +204 -0
  912. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php +182 -0
  913. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php +24 -0
  914. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.1.inc +114 -0
  915. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.1.inc.fixed +125 -0
  916. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.2.inc +11 -0
  917. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.php +100 -0
  918. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/ClassCommentUnitTest.inc +163 -0
  919. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/ClassCommentUnitTest.php +78 -0
  920. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.1.inc +53 -0
  921. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.2.inc +9 -0
  922. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.3.inc +8 -0
  923. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.4.inc +7 -0
  924. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.php +95 -0
  925. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.inc +512 -0
  926. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.inc.fixed +491 -0
  927. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.php +103 -0
  928. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/InlineCommentUnitTest.inc +29 -0
  929. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/InlineCommentUnitTest.inc.fixed +29 -0
  930. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/InlineCommentUnitTest.php +60 -0
  931. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/ControlSignatureUnitTest.inc +165 -0
  932. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/ControlSignatureUnitTest.php +77 -0
  933. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.inc +251 -0
  934. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.inc.fixed +247 -0
  935. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.js +251 -0
  936. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.js.fixed +247 -0
  937. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.php +96 -0
  938. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Files/IncludingFileUnitTest.inc +99 -0
  939. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Files/IncludingFileUnitTest.inc.fixed +99 -0
  940. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Files/IncludingFileUnitTest.php +72 -0
  941. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Formatting/MultiLineAssignmentUnitTest.inc +22 -0
  942. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Formatting/MultiLineAssignmentUnitTest.php +57 -0
  943. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.inc +576 -0
  944. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.inc.fixed +591 -0
  945. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.js +80 -0
  946. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.js.fixed +84 -0
  947. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.php +164 -0
  948. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.1.inc +490 -0
  949. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.1.inc.fixed +487 -0
  950. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.2.inc +7 -0
  951. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.js +59 -0
  952. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.js.fixed +60 -0
  953. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.php +149 -0
  954. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/ValidDefaultValueUnitTest.1.inc +116 -0
  955. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/ValidDefaultValueUnitTest.2.inc +7 -0
  956. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/ValidDefaultValueUnitTest.php +73 -0
  957. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidClassNameUnitTest.inc +90 -0
  958. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidClassNameUnitTest.php +78 -0
  959. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidFunctionNameUnitTest.inc +243 -0
  960. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidFunctionNameUnitTest.php +154 -0
  961. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidVariableNameUnitTest.inc +101 -0
  962. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidVariableNameUnitTest.php +61 -0
  963. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ObjectOperatorIndentUnitTest.inc +142 -0
  964. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ObjectOperatorIndentUnitTest.inc.fixed +142 -0
  965. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ObjectOperatorIndentUnitTest.php +79 -0
  966. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc +170 -0
  967. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc.fixed +177 -0
  968. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeClosingBraceUnitTest.php +73 -0
  969. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeIndentUnitTest.inc +314 -0
  970. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeIndentUnitTest.inc.fixed +314 -0
  971. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeIndentUnitTest.php +71 -0
  972. package/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/ruleset.xml +41 -0
  973. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Docs/Classes/ClassDeclarationStandard.xml +48 -0
  974. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Docs/Files/SideEffectsStandard.xml +27 -0
  975. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Docs/Methods/CamelCapsMethodNameStandard.xml +29 -0
  976. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Sniffs/Classes/ClassDeclarationSniff.php +75 -0
  977. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Sniffs/Files/SideEffectsSniff.php +303 -0
  978. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php +91 -0
  979. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.1.inc +3 -0
  980. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.2.inc +4 -0
  981. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.3.inc +3 -0
  982. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.php +62 -0
  983. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.1.inc +87 -0
  984. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.10.inc +8 -0
  985. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.11.inc +11 -0
  986. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.12.inc +8 -0
  987. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.13.inc +2 -0
  988. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.14.inc +2 -0
  989. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.15.inc +2 -0
  990. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.16.inc +2 -0
  991. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.17.inc +8 -0
  992. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.2.inc +24 -0
  993. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.3.inc +6 -0
  994. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.4.inc +10 -0
  995. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.5.inc +2 -0
  996. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.6.inc +9 -0
  997. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.7.inc +8 -0
  998. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.8.inc +8 -0
  999. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.9.inc +8 -0
  1000. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.php +85 -0
  1001. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Methods/CamelCapsMethodNameUnitTest.inc +81 -0
  1002. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Methods/CamelCapsMethodNameUnitTest.php +64 -0
  1003. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/ruleset.xml +47 -0
  1004. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Classes/ClassInstantiationStandard.xml +19 -0
  1005. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Classes/ClosingBraceStandard.xml +35 -0
  1006. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Classes/OpeningBraceSpaceStandard.xml +32 -0
  1007. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/ControlStructures/BooleanOperatorPlacementStandard.xml +59 -0
  1008. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/ControlStructures/ControlStructureSpacingStandard.xml +124 -0
  1009. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Files/ImportStatementStandard.xml +33 -0
  1010. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Files/OpenTagStandard.xml +40 -0
  1011. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Functions/NullableTypeDeclarationStandard.xml +45 -0
  1012. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Functions/ReturnTypeDeclarationStandard.xml +41 -0
  1013. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Keywords/ShortFormTypeKeywordsStandard.xml +19 -0
  1014. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Namespaces/CompoundNamespaceDepthStandard.xml +28 -0
  1015. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Operators/OperatorSpacingStandard.xml +27 -0
  1016. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Properties/ConstantVisibilityStandard.xml +27 -0
  1017. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/AnonClassDeclarationSniff.php +246 -0
  1018. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/ClassInstantiationSniff.php +112 -0
  1019. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/ClosingBraceSniff.php +67 -0
  1020. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/OpeningBraceSpaceSniff.php +80 -0
  1021. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/ControlStructures/BooleanOperatorPlacementSniff.php +229 -0
  1022. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/ControlStructures/ControlStructureSpacingSniff.php +219 -0
  1023. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/DeclareStatementSniff.php +262 -0
  1024. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/FileHeaderSniff.php +429 -0
  1025. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/ImportStatementSniff.php +77 -0
  1026. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/OpenTagSniff.php +76 -0
  1027. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Functions/NullableTypeDeclarationSniff.php +94 -0
  1028. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Functions/ReturnTypeDeclarationSniff.php +110 -0
  1029. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Keywords/ShortFormTypeKeywordsSniff.php +75 -0
  1030. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Namespaces/CompoundNamespaceDepthSniff.php +80 -0
  1031. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Operators/OperatorSpacingSniff.php +128 -0
  1032. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Properties/ConstantVisibilitySniff.php +64 -0
  1033. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Traits/UseDeclarationSniff.php +700 -0
  1034. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/AnonClassDeclarationUnitTest.inc +96 -0
  1035. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/AnonClassDeclarationUnitTest.inc.fixed +98 -0
  1036. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/AnonClassDeclarationUnitTest.php +80 -0
  1037. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClassInstantiationUnitTest.inc +51 -0
  1038. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClassInstantiationUnitTest.inc.fixed +51 -0
  1039. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClassInstantiationUnitTest.php +72 -0
  1040. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClosingBraceUnitTest.inc +52 -0
  1041. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClosingBraceUnitTest.php +60 -0
  1042. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/OpeningBraceSpaceUnitTest.inc +57 -0
  1043. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/OpeningBraceSpaceUnitTest.inc.fixed +48 -0
  1044. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/OpeningBraceSpaceUnitTest.php +60 -0
  1045. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/BooleanOperatorPlacementUnitTest.inc +131 -0
  1046. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/BooleanOperatorPlacementUnitTest.inc.fixed +141 -0
  1047. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/BooleanOperatorPlacementUnitTest.php +64 -0
  1048. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc +133 -0
  1049. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed +131 -0
  1050. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.php +77 -0
  1051. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.1.inc +50 -0
  1052. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.1.inc.fixed +54 -0
  1053. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.2.inc +3 -0
  1054. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.php +84 -0
  1055. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.1.inc +29 -0
  1056. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.10.inc +4 -0
  1057. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.10.inc.fixed +5 -0
  1058. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.11.inc +21 -0
  1059. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.11.inc.fixed +22 -0
  1060. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.12.inc +17 -0
  1061. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.12.inc.fixed +18 -0
  1062. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.13.inc +24 -0
  1063. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.14.inc +7 -0
  1064. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.15.inc +5 -0
  1065. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.16.inc +13 -0
  1066. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.17.inc +13 -0
  1067. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.18.inc +16 -0
  1068. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.2.inc +33 -0
  1069. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.2.inc.fixed +29 -0
  1070. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.3.inc +27 -0
  1071. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.4.inc +15 -0
  1072. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.4.inc.fixed +19 -0
  1073. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.5.inc +18 -0
  1074. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.6.inc +13 -0
  1075. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.7.inc +2 -0
  1076. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.7.inc.fixed +3 -0
  1077. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.8.inc +5 -0
  1078. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.9.inc +7 -0
  1079. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.php +87 -0
  1080. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/ImportStatementUnitTest.inc +26 -0
  1081. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/ImportStatementUnitTest.inc.fixed +26 -0
  1082. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/ImportStatementUnitTest.php +57 -0
  1083. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.1.inc +3 -0
  1084. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.2.inc +1 -0
  1085. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.2.inc.fixed +2 -0
  1086. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.3.inc +3 -0
  1087. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.4.inc +2 -0
  1088. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.5.inc +1 -0
  1089. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.php +60 -0
  1090. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/NullableTypeDeclarationUnitTest.inc +95 -0
  1091. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/NullableTypeDeclarationUnitTest.inc.fixed +92 -0
  1092. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/NullableTypeDeclarationUnitTest.php +72 -0
  1093. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/ReturnTypeDeclarationUnitTest.inc +66 -0
  1094. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/ReturnTypeDeclarationUnitTest.inc.fixed +62 -0
  1095. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/ReturnTypeDeclarationUnitTest.php +66 -0
  1096. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.inc +14 -0
  1097. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.inc.fixed +14 -0
  1098. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.php +59 -0
  1099. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Namespaces/CompoundNamespaceDepthUnitTest.inc +31 -0
  1100. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Namespaces/CompoundNamespaceDepthUnitTest.php +57 -0
  1101. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.1.inc +79 -0
  1102. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.1.inc.fixed +79 -0
  1103. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.2.inc +3 -0
  1104. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.3.inc +6 -0
  1105. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.php +81 -0
  1106. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Properties/ConstantVisibilityUnitTest.inc +22 -0
  1107. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Properties/ConstantVisibilityUnitTest.php +57 -0
  1108. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Traits/UseDeclarationUnitTest.inc +221 -0
  1109. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Traits/UseDeclarationUnitTest.inc.fixed +213 -0
  1110. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Traits/UseDeclarationUnitTest.php +76 -0
  1111. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/ruleset.xml +348 -0
  1112. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Classes/ClassDeclarationStandard.xml +23 -0
  1113. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Classes/PropertyDeclarationStandard.xml +81 -0
  1114. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/ControlStructures/ControlStructureSpacingStandard.xml +23 -0
  1115. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/ControlStructures/ElseIfDeclarationStandard.xml +27 -0
  1116. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/ControlStructures/SwitchDeclarationStandard.xml +104 -0
  1117. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Files/ClosingTagStandard.xml +23 -0
  1118. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Files/EndFileNewlineStandard.xml +7 -0
  1119. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Methods/FunctionCallSignatureStandard.xml +107 -0
  1120. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Methods/FunctionClosingBraceStandard.xml +26 -0
  1121. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Methods/MethodDeclarationStandard.xml +51 -0
  1122. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml +22 -0
  1123. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Namespaces/UseDeclarationStandard.xml +57 -0
  1124. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Classes/ClassDeclarationSniff.php +540 -0
  1125. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Classes/PropertyDeclarationSniff.php +226 -0
  1126. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/ControlStructures/ControlStructureSpacingSniff.php +141 -0
  1127. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/ControlStructures/ElseIfDeclarationSniff.php +72 -0
  1128. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/ControlStructures/SwitchDeclarationSniff.php +396 -0
  1129. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php +89 -0
  1130. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Files/EndFileNewlineSniff.php +107 -0
  1131. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Methods/FunctionCallSignatureSniff.php +79 -0
  1132. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php +91 -0
  1133. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Methods/MethodDeclarationSniff.php +162 -0
  1134. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Namespaces/NamespaceDeclarationSniff.php +100 -0
  1135. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php +297 -0
  1136. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/ClassDeclarationUnitTest.inc +346 -0
  1137. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/ClassDeclarationUnitTest.inc.fixed +335 -0
  1138. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/ClassDeclarationUnitTest.php +103 -0
  1139. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.inc +87 -0
  1140. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.inc.fixed +84 -0
  1141. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.php +84 -0
  1142. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc +81 -0
  1143. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed +80 -0
  1144. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ControlStructureSpacingUnitTest.php +67 -0
  1145. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc +17 -0
  1146. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc.fixed +17 -0
  1147. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.php +56 -0
  1148. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/SwitchDeclarationUnitTest.inc +598 -0
  1149. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/SwitchDeclarationUnitTest.inc.fixed +593 -0
  1150. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/SwitchDeclarationUnitTest.php +86 -0
  1151. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.1.inc +12 -0
  1152. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.1.inc.fixed +12 -0
  1153. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.2.inc +3 -0
  1154. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.3.inc +7 -0
  1155. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc +1 -0
  1156. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc.fixed +1 -0
  1157. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.5.inc +1 -0
  1158. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.5.inc.fixed +1 -0
  1159. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.6.inc +5 -0
  1160. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.6.inc.fixed +5 -0
  1161. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.7.inc +5 -0
  1162. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.7.inc.fixed +5 -0
  1163. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.php +69 -0
  1164. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.1.inc +3 -0
  1165. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.1.inc.fixed +2 -0
  1166. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.10.inc +3 -0
  1167. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.10.inc.fixed +2 -0
  1168. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.11.inc +1 -0
  1169. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.11.inc.fixed +1 -0
  1170. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.12.inc +1 -0
  1171. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.12.inc.fixed +1 -0
  1172. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.13.inc +5 -0
  1173. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.13.inc.fixed +1 -0
  1174. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.14.inc +1 -0
  1175. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.2.inc +2 -0
  1176. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.3.inc +2 -0
  1177. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.3.inc.fixed +2 -0
  1178. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.4.inc +4 -0
  1179. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.5.inc +6 -0
  1180. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.6.inc +2 -0
  1181. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.6.inc.fixed +2 -0
  1182. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.7.inc +11 -0
  1183. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.7.inc.fixed +2 -0
  1184. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.8.inc +2 -0
  1185. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.9.inc +2 -0
  1186. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.9.inc.fixed +2 -0
  1187. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.php +71 -0
  1188. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.inc +267 -0
  1189. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.inc.fixed +283 -0
  1190. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.php +99 -0
  1191. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionClosingBraceUnitTest.inc +70 -0
  1192. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionClosingBraceUnitTest.inc.fixed +61 -0
  1193. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionClosingBraceUnitTest.php +60 -0
  1194. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/MethodDeclarationUnitTest.inc +75 -0
  1195. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/MethodDeclarationUnitTest.inc.fixed +75 -0
  1196. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/MethodDeclarationUnitTest.php +76 -0
  1197. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/NamespaceDeclarationUnitTest.inc +26 -0
  1198. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/NamespaceDeclarationUnitTest.inc.fixed +28 -0
  1199. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/NamespaceDeclarationUnitTest.php +58 -0
  1200. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.1.inc +40 -0
  1201. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.10.inc +8 -0
  1202. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.10.inc.fixed +9 -0
  1203. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.11.inc +2 -0
  1204. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.11.inc.fixed +4 -0
  1205. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.12.inc +9 -0
  1206. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.12.inc.fixed +11 -0
  1207. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.13.inc +10 -0
  1208. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.13.inc.fixed +11 -0
  1209. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.14.inc +8 -0
  1210. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.14.inc.fixed +9 -0
  1211. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.15.inc +10 -0
  1212. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.16.inc +11 -0
  1213. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.16.inc.fixed +9 -0
  1214. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.17.inc +3 -0
  1215. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.18.inc +4 -0
  1216. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.2.inc +21 -0
  1217. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.2.inc.fixed +27 -0
  1218. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc +16 -0
  1219. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc.fixed +16 -0
  1220. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.4.inc +4 -0
  1221. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.5.inc +47 -0
  1222. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.5.inc.fixed +56 -0
  1223. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.6.inc +1 -0
  1224. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.7.inc +1 -0
  1225. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.8.inc +8 -0
  1226. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.9.inc +8 -0
  1227. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.php +102 -0
  1228. package/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/ruleset.xml +218 -0
  1229. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Arrays/ArrayBracketSpacingStandard.xml +19 -0
  1230. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Arrays/ArrayDeclarationStandard.xml +117 -0
  1231. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Classes/LowercaseClassKeywordsStandard.xml +23 -0
  1232. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Classes/SelfMemberReferenceStandard.xml +63 -0
  1233. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Commenting/DocCommentAlignmentStandard.xml +39 -0
  1234. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Commenting/FunctionCommentThrowTagStandard.xml +32 -0
  1235. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/ForEachLoopDeclarationStandard.xml +39 -0
  1236. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/ForLoopDeclarationStandard.xml +55 -0
  1237. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/LowercaseDeclarationStandard.xml +23 -0
  1238. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Functions/LowercaseFunctionKeywordsStandard.xml +25 -0
  1239. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/PHP/HeredocStandard.xml +32 -0
  1240. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Scope/StaticThisUsageStandard.xml +31 -0
  1241. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Strings/EchoedStringsStandard.xml +19 -0
  1242. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/CastSpacingStandard.xml +19 -0
  1243. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/FunctionClosingBraceSpaceStandard.xml +73 -0
  1244. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/FunctionOpeningBraceStandard.xml +41 -0
  1245. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/LanguageConstructSpacingStandard.xml +19 -0
  1246. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/MemberVarSpacingStandard.xml +91 -0
  1247. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/ObjectOperatorSpacingStandard.xml +19 -0
  1248. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/ScopeClosingBraceStandard.xml +59 -0
  1249. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/ScopeKeywordSpacingStandard.xml +23 -0
  1250. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/SemicolonSpacingStandard.xml +19 -0
  1251. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/SuperfluousWhitespaceStandard.xml +98 -0
  1252. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Arrays/ArrayBracketSpacingSniff.php +95 -0
  1253. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php +962 -0
  1254. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ClassDefinitionClosingBraceSpaceSniff.php +136 -0
  1255. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ClassDefinitionNameSpacingSniff.php +113 -0
  1256. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ClassDefinitionOpeningBraceSpaceSniff.php +178 -0
  1257. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ColonSpacingSniff.php +109 -0
  1258. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ColourDefinitionSniff.php +90 -0
  1259. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php +73 -0
  1260. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php +118 -0
  1261. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/DuplicateStyleDefinitionSniff.php +90 -0
  1262. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php +63 -0
  1263. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php +66 -0
  1264. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ForbiddenStylesSniff.php +179 -0
  1265. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/IndentationSniff.php +152 -0
  1266. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/LowercaseStyleDefinitionSniff.php +99 -0
  1267. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php +93 -0
  1268. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php +95 -0
  1269. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/OpacitySniff.php +103 -0
  1270. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/SemicolonSpacingSniff.php +105 -0
  1271. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ShorthandSizeSniff.php +183 -0
  1272. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php +207 -0
  1273. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php +70 -0
  1274. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/DuplicatePropertySniff.php +84 -0
  1275. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php +73 -0
  1276. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/SelfMemberReferenceSniff.php +248 -0
  1277. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/ValidClassNameSniff.php +87 -0
  1278. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/BlockCommentSniff.php +401 -0
  1279. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php +109 -0
  1280. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php +130 -0
  1281. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/DocCommentAlignmentSniff.php +167 -0
  1282. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/EmptyCatchCommentSniff.php +55 -0
  1283. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php +228 -0
  1284. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php +800 -0
  1285. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FunctionCommentThrowTagSniff.php +233 -0
  1286. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/InlineCommentSniff.php +349 -0
  1287. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/LongConditionClosingCommentSniff.php +218 -0
  1288. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/PostStatementCommentSniff.php +129 -0
  1289. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php +201 -0
  1290. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ControlSignatureSniff.php +337 -0
  1291. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php +51 -0
  1292. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ForEachLoopDeclarationSniff.php +236 -0
  1293. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php +316 -0
  1294. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/InlineIfDeclarationSniff.php +155 -0
  1295. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php +75 -0
  1296. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/SwitchDeclarationSniff.php +304 -0
  1297. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Debug/JSLintSniff.php +88 -0
  1298. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Debug/JavaScriptLintSniff.php +91 -0
  1299. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Files/FileExtensionSniff.php +68 -0
  1300. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php +402 -0
  1301. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php +479 -0
  1302. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/FunctionDeclarationSniff.php +34 -0
  1303. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php +64 -0
  1304. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php +61 -0
  1305. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/LowercaseFunctionKeywordsSniff.php +69 -0
  1306. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/MultiLineFunctionDeclarationSniff.php +262 -0
  1307. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/NamingConventions/ValidFunctionNameSniff.php +54 -0
  1308. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php +190 -0
  1309. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php +87 -0
  1310. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php +85 -0
  1311. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Objects/ObjectMemberCommaSniff.php +66 -0
  1312. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Operators/ComparisonOperatorUsageSniff.php +235 -0
  1313. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Operators/IncrementDecrementUsageSniff.php +231 -0
  1314. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php +67 -0
  1315. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php +283 -0
  1316. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowBooleanStatementSniff.php +59 -0
  1317. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowComparisonAssignmentSniff.php +112 -0
  1318. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php +57 -0
  1319. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php +196 -0
  1320. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowSizeFunctionsInLoopsSniff.php +116 -0
  1321. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DiscouragedFunctionsSniff.php +38 -0
  1322. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php +516 -0
  1323. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/EvalSniff.php +48 -0
  1324. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/GlobalKeywordSniff.php +53 -0
  1325. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/HeredocSniff.php +51 -0
  1326. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php +76 -0
  1327. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/LowercasePHPFunctionsSniff.php +167 -0
  1328. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/NonExecutableCodeSniff.php +303 -0
  1329. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php +77 -0
  1330. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php +83 -0
  1331. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php +128 -0
  1332. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Strings/ConcatenationSpacingSniff.php +164 -0
  1333. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Strings/DoubleQuoteUsageSniff.php +144 -0
  1334. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Strings/EchoedStringsSniff.php +88 -0
  1335. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php +65 -0
  1336. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php +359 -0
  1337. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php +164 -0
  1338. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php +98 -0
  1339. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/FunctionSpacingSniff.php +372 -0
  1340. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php +91 -0
  1341. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/LogicalOperatorSpacingSniff.php +102 -0
  1342. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php +252 -0
  1343. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php +167 -0
  1344. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/OperatorSpacingSniff.php +409 -0
  1345. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/PropertyLabelSpacingSniff.php +81 -0
  1346. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php +114 -0
  1347. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php +172 -0
  1348. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php +116 -0
  1349. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php +265 -0
  1350. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayBracketSpacingUnitTest.inc +31 -0
  1351. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayBracketSpacingUnitTest.inc.fixed +31 -0
  1352. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayBracketSpacingUnitTest.php +62 -0
  1353. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.1.inc +560 -0
  1354. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.1.inc.fixed +598 -0
  1355. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.2.inc +555 -0
  1356. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.2.inc.fixed +591 -0
  1357. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.3.inc +7 -0
  1358. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.4.inc +8 -0
  1359. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.4.inc.fixed +8 -0
  1360. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.php +262 -0
  1361. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionClosingBraceSpaceUnitTest.css +81 -0
  1362. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionClosingBraceSpaceUnitTest.css.fixed +85 -0
  1363. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionClosingBraceSpaceUnitTest.php +65 -0
  1364. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionNameSpacingUnitTest.css +66 -0
  1365. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionNameSpacingUnitTest.php +56 -0
  1366. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionOpeningBraceSpaceUnitTest.css +108 -0
  1367. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionOpeningBraceSpaceUnitTest.css.fixed +106 -0
  1368. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionOpeningBraceSpaceUnitTest.php +69 -0
  1369. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColonSpacingUnitTest.css +42 -0
  1370. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColonSpacingUnitTest.css.fixed +40 -0
  1371. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColonSpacingUnitTest.php +65 -0
  1372. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColourDefinitionUnitTest.css +16 -0
  1373. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColourDefinitionUnitTest.css.fixed +16 -0
  1374. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColourDefinitionUnitTest.php +57 -0
  1375. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DisallowMultipleStyleDefinitionsUnitTest.css +17 -0
  1376. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DisallowMultipleStyleDefinitionsUnitTest.css.fixed +27 -0
  1377. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DisallowMultipleStyleDefinitionsUnitTest.php +59 -0
  1378. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateClassDefinitionUnitTest.css +103 -0
  1379. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateClassDefinitionUnitTest.php +59 -0
  1380. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateStyleDefinitionUnitTest.css +27 -0
  1381. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateStyleDefinitionUnitTest.php +53 -0
  1382. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyClassDefinitionUnitTest.css +15 -0
  1383. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyClassDefinitionUnitTest.php +59 -0
  1384. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyStyleDefinitionUnitTest.css +11 -0
  1385. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyStyleDefinitionUnitTest.php +58 -0
  1386. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ForbiddenStylesUnitTest.css +18 -0
  1387. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ForbiddenStylesUnitTest.css.fixed +18 -0
  1388. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ForbiddenStylesUnitTest.php +62 -0
  1389. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.1.css +79 -0
  1390. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.1.css.fixed +73 -0
  1391. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.2.css +3 -0
  1392. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.php +80 -0
  1393. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/LowercaseStyleDefinitionUnitTest.css +14 -0
  1394. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/LowercaseStyleDefinitionUnitTest.php +58 -0
  1395. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/MissingColonUnitTest.css +21 -0
  1396. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/MissingColonUnitTest.php +58 -0
  1397. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/NamedColoursUnitTest.css +25 -0
  1398. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/NamedColoursUnitTest.php +59 -0
  1399. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/OpacityUnitTest.css +35 -0
  1400. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/OpacityUnitTest.css.fixed +35 -0
  1401. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/OpacityUnitTest.php +65 -0
  1402. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/SemicolonSpacingUnitTest.css +61 -0
  1403. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/SemicolonSpacingUnitTest.css.fixed +58 -0
  1404. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/SemicolonSpacingUnitTest.php +63 -0
  1405. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.1.css +41 -0
  1406. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.1.css.fixed +37 -0
  1407. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.2.css +3 -0
  1408. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.php +72 -0
  1409. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassDeclarationUnitTest.inc +130 -0
  1410. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassDeclarationUnitTest.inc.fixed +140 -0
  1411. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassDeclarationUnitTest.php +91 -0
  1412. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassFileNameUnitTest.inc +45 -0
  1413. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassFileNameUnitTest.php +82 -0
  1414. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/DuplicatePropertyUnitTest.js +45 -0
  1415. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/DuplicatePropertyUnitTest.php +57 -0
  1416. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.inc +16 -0
  1417. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.inc.fixed +16 -0
  1418. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.php +66 -0
  1419. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/SelfMemberReferenceUnitTest.inc +199 -0
  1420. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/SelfMemberReferenceUnitTest.inc.fixed +187 -0
  1421. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/SelfMemberReferenceUnitTest.php +71 -0
  1422. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ValidClassNameUnitTest.inc +191 -0
  1423. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ValidClassNameUnitTest.php +80 -0
  1424. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.inc +309 -0
  1425. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.inc.fixed +311 -0
  1426. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.php +109 -0
  1427. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClassCommentUnitTest.inc +145 -0
  1428. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClassCommentUnitTest.php +66 -0
  1429. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.1.inc +124 -0
  1430. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.1.inc.fixed +117 -0
  1431. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.2.inc +7 -0
  1432. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.3.inc +7 -0
  1433. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.4.inc +8 -0
  1434. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.4.inc.fixed +8 -0
  1435. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.5.inc +11 -0
  1436. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.5.inc.fixed +11 -0
  1437. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.php +96 -0
  1438. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.inc +103 -0
  1439. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.inc.fixed +103 -0
  1440. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.js +76 -0
  1441. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.js.fixed +76 -0
  1442. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.php +81 -0
  1443. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/EmptyCatchCommentUnitTest.inc +55 -0
  1444. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/EmptyCatchCommentUnitTest.php +60 -0
  1445. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.inc +43 -0
  1446. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.inc.fixed +43 -0
  1447. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.js +40 -0
  1448. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.js.fixed +40 -0
  1449. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.10.inc +12 -0
  1450. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.inc +11 -0
  1451. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.js +10 -0
  1452. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.3.inc +9 -0
  1453. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.4.inc +3 -0
  1454. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.5.inc +4 -0
  1455. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.6.inc +12 -0
  1456. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.7.inc +12 -0
  1457. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.8.inc +9 -0
  1458. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.9.inc +12 -0
  1459. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.php +82 -0
  1460. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentThrowTagUnitTest.inc +511 -0
  1461. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentThrowTagUnitTest.php +65 -0
  1462. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentUnitTest.inc +1160 -0
  1463. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentUnitTest.inc.fixed +1160 -0
  1464. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentUnitTest.php +208 -0
  1465. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.inc +196 -0
  1466. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.inc.fixed +189 -0
  1467. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.js +129 -0
  1468. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.js.fixed +125 -0
  1469. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.php +96 -0
  1470. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.inc +1033 -0
  1471. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.inc.fixed +1033 -0
  1472. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.js +444 -0
  1473. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.js.fixed +444 -0
  1474. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.php +107 -0
  1475. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.1.js +36 -0
  1476. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.1.js.fixed +39 -0
  1477. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.2.js +2 -0
  1478. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.inc +64 -0
  1479. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.inc.fixed +71 -0
  1480. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.php +80 -0
  1481. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/VariableCommentUnitTest.inc +456 -0
  1482. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/VariableCommentUnitTest.inc.fixed +456 -0
  1483. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/VariableCommentUnitTest.php +88 -0
  1484. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.1.inc +320 -0
  1485. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.1.inc.fixed +324 -0
  1486. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.2.inc +5 -0
  1487. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.js +135 -0
  1488. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.js.fixed +141 -0
  1489. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.php +115 -0
  1490. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc +14 -0
  1491. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc.fixed +14 -0
  1492. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ElseIfDeclarationUnitTest.php +56 -0
  1493. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForEachLoopDeclarationUnitTest.inc +36 -0
  1494. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForEachLoopDeclarationUnitTest.inc.fixed +36 -0
  1495. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForEachLoopDeclarationUnitTest.php +61 -0
  1496. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.1.inc +126 -0
  1497. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.1.inc.fixed +92 -0
  1498. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.1.js +122 -0
  1499. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.1.js.fixed +88 -0
  1500. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.2.inc +6 -0
  1501. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.2.js +2 -0
  1502. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.3.inc +6 -0
  1503. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.php +138 -0
  1504. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/InlineIfDeclarationUnitTest.inc +48 -0
  1505. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/InlineIfDeclarationUnitTest.inc.fixed +48 -0
  1506. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/InlineIfDeclarationUnitTest.php +80 -0
  1507. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/LowercaseDeclarationUnitTest.inc +24 -0
  1508. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/LowercaseDeclarationUnitTest.inc.fixed +24 -0
  1509. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/LowercaseDeclarationUnitTest.php +66 -0
  1510. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.inc +333 -0
  1511. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.inc.fixed +342 -0
  1512. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.js +287 -0
  1513. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.php +157 -0
  1514. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JSLintUnitTest.js +2 -0
  1515. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JSLintUnitTest.php +74 -0
  1516. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JavaScriptLintUnitTest.js +2 -0
  1517. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JavaScriptLintUnitTest.php +71 -0
  1518. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.1.inc +3 -0
  1519. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.2.inc +3 -0
  1520. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.3.inc +3 -0
  1521. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.4.inc +3 -0
  1522. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.5.inc +3 -0
  1523. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.php +60 -0
  1524. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.1.inc +203 -0
  1525. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.1.inc.fixed +203 -0
  1526. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.2.inc +7 -0
  1527. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.3.inc +5 -0
  1528. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.js +118 -0
  1529. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.js.fixed +118 -0
  1530. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.php +121 -0
  1531. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.1.inc +197 -0
  1532. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.1.inc.fixed +173 -0
  1533. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.2.inc +6 -0
  1534. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.3.inc +6 -0
  1535. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.4.inc +6 -0
  1536. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.5.inc +6 -0
  1537. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.6.inc +6 -0
  1538. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.php +116 -0
  1539. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationUnitTest.1.inc +75 -0
  1540. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationUnitTest.2.inc +5 -0
  1541. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationUnitTest.3.inc +5 -0
  1542. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationUnitTest.php +64 -0
  1543. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDuplicateArgumentUnitTest.inc +6 -0
  1544. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDuplicateArgumentUnitTest.php +57 -0
  1545. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/GlobalFunctionUnitTest.inc +17 -0
  1546. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/GlobalFunctionUnitTest.php +53 -0
  1547. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/LowercaseFunctionKeywordsUnitTest.inc +28 -0
  1548. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/LowercaseFunctionKeywordsUnitTest.inc.fixed +28 -0
  1549. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/LowercaseFunctionKeywordsUnitTest.php +63 -0
  1550. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.inc +356 -0
  1551. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.inc.fixed +370 -0
  1552. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.js +73 -0
  1553. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.js.fixed +81 -0
  1554. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.php +120 -0
  1555. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidFunctionNameUnitTest.inc +27 -0
  1556. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidFunctionNameUnitTest.php +64 -0
  1557. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidVariableNameUnitTest.inc +157 -0
  1558. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidVariableNameUnitTest.php +93 -0
  1559. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/DisallowObjectStringIndexUnitTest.js +37 -0
  1560. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/DisallowObjectStringIndexUnitTest.php +64 -0
  1561. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectInstantiationUnitTest.inc +49 -0
  1562. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectInstantiationUnitTest.php +58 -0
  1563. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectMemberCommaUnitTest.js +47 -0
  1564. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectMemberCommaUnitTest.js.fixed +47 -0
  1565. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectMemberCommaUnitTest.php +58 -0
  1566. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.inc +138 -0
  1567. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.js +71 -0
  1568. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.php +105 -0
  1569. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/IncrementDecrementUsageUnitTest.inc +56 -0
  1570. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/IncrementDecrementUsageUnitTest.php +73 -0
  1571. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ValidLogicalOperatorsUnitTest.inc +28 -0
  1572. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ValidLogicalOperatorsUnitTest.php +57 -0
  1573. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/CommentedOutCodeUnitTest.css +23 -0
  1574. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/CommentedOutCodeUnitTest.inc +158 -0
  1575. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/CommentedOutCodeUnitTest.php +80 -0
  1576. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowBooleanStatementUnitTest.inc +27 -0
  1577. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowBooleanStatementUnitTest.php +58 -0
  1578. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowComparisonAssignmentUnitTest.inc +83 -0
  1579. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowComparisonAssignmentUnitTest.php +64 -0
  1580. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.inc +18 -0
  1581. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.js +2 -0
  1582. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.php +67 -0
  1583. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowMultipleAssignmentsUnitTest.1.inc +150 -0
  1584. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowMultipleAssignmentsUnitTest.2.inc +7 -0
  1585. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowMultipleAssignmentsUnitTest.php +71 -0
  1586. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.inc +58 -0
  1587. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.js +13 -0
  1588. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.php +77 -0
  1589. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DiscouragedFunctionsUnitTest.inc +7 -0
  1590. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DiscouragedFunctionsUnitTest.php +57 -0
  1591. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.1.inc +275 -0
  1592. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.1.inc.fixed +287 -0
  1593. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.10.inc +16 -0
  1594. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.11.inc +14 -0
  1595. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.12.inc +12 -0
  1596. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.12.inc.fixed +10 -0
  1597. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.13.inc +12 -0
  1598. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.13.inc.fixed +10 -0
  1599. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.14.inc +8 -0
  1600. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.15.inc +9 -0
  1601. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.16.inc +8 -0
  1602. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.17.inc +8 -0
  1603. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.18.inc +15 -0
  1604. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.18.inc.fixed +13 -0
  1605. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.19.inc +17 -0
  1606. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.19.inc.fixed +15 -0
  1607. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.2.inc +7 -0
  1608. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.2.inc.fixed +7 -0
  1609. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.20.inc +15 -0
  1610. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.20.inc.fixed +16 -0
  1611. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.21.inc +15 -0
  1612. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.21.inc.fixed +16 -0
  1613. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.22.inc +30 -0
  1614. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.22.inc.fixed +31 -0
  1615. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.23.inc +23 -0
  1616. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.24.inc +25 -0
  1617. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.24.inc.fixed +25 -0
  1618. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.3.inc +123 -0
  1619. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.3.inc.fixed +132 -0
  1620. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.4.inc +7 -0
  1621. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.4.inc.fixed +7 -0
  1622. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.5.inc +48 -0
  1623. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.5.inc.fixed +39 -0
  1624. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.6.inc +8 -0
  1625. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.7.inc +8 -0
  1626. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.8.inc +10 -0
  1627. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.9.inc +10 -0
  1628. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.php +226 -0
  1629. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EvalUnitTest.inc +5 -0
  1630. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EvalUnitTest.php +56 -0
  1631. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/GlobalKeywordUnitTest.inc +13 -0
  1632. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/GlobalKeywordUnitTest.php +56 -0
  1633. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/HeredocUnitTest.1.inc +12 -0
  1634. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/HeredocUnitTest.2.inc +17 -0
  1635. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/HeredocUnitTest.php +64 -0
  1636. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/InnerFunctionsUnitTest.inc +87 -0
  1637. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/InnerFunctionsUnitTest.php +58 -0
  1638. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/LowercasePHPFunctionsUnitTest.inc +50 -0
  1639. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/LowercasePHPFunctionsUnitTest.inc.fixed +50 -0
  1640. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/LowercasePHPFunctionsUnitTest.php +60 -0
  1641. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.1.inc +420 -0
  1642. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.2.inc +73 -0
  1643. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.3.inc +64 -0
  1644. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.4.inc +6 -0
  1645. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.php +124 -0
  1646. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MemberVarScopeUnitTest.inc +72 -0
  1647. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MemberVarScopeUnitTest.php +63 -0
  1648. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MethodScopeUnitTest.inc +57 -0
  1649. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MethodScopeUnitTest.php +58 -0
  1650. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/StaticThisUsageUnitTest.inc +127 -0
  1651. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/StaticThisUsageUnitTest.php +67 -0
  1652. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/ConcatenationSpacingUnitTest.inc +49 -0
  1653. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/ConcatenationSpacingUnitTest.inc.fixed +47 -0
  1654. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/ConcatenationSpacingUnitTest.php +71 -0
  1655. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/DoubleQuoteUsageUnitTest.inc +37 -0
  1656. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/DoubleQuoteUsageUnitTest.inc.fixed +37 -0
  1657. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/DoubleQuoteUsageUnitTest.php +67 -0
  1658. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.inc +13 -0
  1659. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.inc.fixed +13 -0
  1660. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.php +60 -0
  1661. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc +9 -0
  1662. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc.fixed +9 -0
  1663. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.php +59 -0
  1664. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.inc +269 -0
  1665. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.inc.fixed +261 -0
  1666. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.js +93 -0
  1667. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.js.fixed +93 -0
  1668. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.php +107 -0
  1669. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.inc +39 -0
  1670. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.inc.fixed +45 -0
  1671. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.js +132 -0
  1672. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.js.fixed +133 -0
  1673. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.php +80 -0
  1674. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.inc +54 -0
  1675. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.inc.fixed +49 -0
  1676. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.js +115 -0
  1677. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.js.fixed +109 -0
  1678. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.php +73 -0
  1679. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.1.inc +595 -0
  1680. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.1.inc.fixed +687 -0
  1681. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.2.inc +5 -0
  1682. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.2.inc.fixed +7 -0
  1683. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.3.inc +10 -0
  1684. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.3.inc.fixed +7 -0
  1685. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.4.inc +7 -0
  1686. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.5.inc +8 -0
  1687. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.5.inc.fixed +10 -0
  1688. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.6.inc +13 -0
  1689. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.6.inc.fixed +10 -0
  1690. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.7.inc +10 -0
  1691. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.php +142 -0
  1692. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.inc +43 -0
  1693. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.inc.fixed +41 -0
  1694. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.php +65 -0
  1695. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.inc +19 -0
  1696. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.inc.fixed +19 -0
  1697. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.js +19 -0
  1698. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.js.fixed +19 -0
  1699. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.php +59 -0
  1700. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/MemberVarSpacingUnitTest.inc +374 -0
  1701. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/MemberVarSpacingUnitTest.inc.fixed +359 -0
  1702. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/MemberVarSpacingUnitTest.php +90 -0
  1703. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ObjectOperatorSpacingUnitTest.inc +52 -0
  1704. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ObjectOperatorSpacingUnitTest.inc.fixed +48 -0
  1705. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ObjectOperatorSpacingUnitTest.php +73 -0
  1706. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.1.inc +510 -0
  1707. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.1.inc.fixed +502 -0
  1708. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.2.inc +3 -0
  1709. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.3.inc +6 -0
  1710. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.js +104 -0
  1711. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.js.fixed +98 -0
  1712. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.php +180 -0
  1713. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/PropertyLabelSpacingUnitTest.js +40 -0
  1714. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/PropertyLabelSpacingUnitTest.js.fixed +39 -0
  1715. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/PropertyLabelSpacingUnitTest.php +60 -0
  1716. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc +134 -0
  1717. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc.fixed +138 -0
  1718. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeClosingBraceUnitTest.php +64 -0
  1719. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.1.inc +149 -0
  1720. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.1.inc.fixed +143 -0
  1721. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.2.inc +6 -0
  1722. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.3.inc +6 -0
  1723. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.3.inc.fixed +6 -0
  1724. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.php +88 -0
  1725. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.inc +42 -0
  1726. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.inc.fixed +41 -0
  1727. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.js +25 -0
  1728. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.js.fixed +25 -0
  1729. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.php +87 -0
  1730. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.css +32 -0
  1731. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.css.fixed +30 -0
  1732. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.inc +74 -0
  1733. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.inc.fixed +68 -0
  1734. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.js +56 -0
  1735. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.js.fixed +50 -0
  1736. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.css +3 -0
  1737. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.css.fixed +3 -0
  1738. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.inc +9 -0
  1739. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.inc.fixed +7 -0
  1740. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.js +1 -0
  1741. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.js.fixed +1 -0
  1742. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css +3 -0
  1743. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css.fixed +3 -0
  1744. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.inc +14 -0
  1745. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.inc.fixed +5 -0
  1746. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.js +1 -0
  1747. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.js.fixed +1 -0
  1748. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.4.inc +4 -0
  1749. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.4.inc.fixed +4 -0
  1750. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc +5 -0
  1751. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc.fixed +4 -0
  1752. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.php +117 -0
  1753. package/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/ruleset.xml +138 -0
  1754. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/Debug/CodeAnalyzerStandard.xml +25 -0
  1755. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/Files/ClosingTagStandard.xml +22 -0
  1756. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/NamingConventions/ValidVariableNameStandard.xml +37 -0
  1757. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php +100 -0
  1758. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Sniffs/Files/ClosingTagSniff.php +79 -0
  1759. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php +196 -0
  1760. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Debug/CodeAnalyzerUnitTest.inc +6 -0
  1761. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Debug/CodeAnalyzerUnitTest.php +71 -0
  1762. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc +12 -0
  1763. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc.fixed +12 -0
  1764. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.2.inc +3 -0
  1765. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc +1 -0
  1766. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc.fixed +1 -0
  1767. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc +1 -0
  1768. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc.fixed +1 -0
  1769. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc +1 -0
  1770. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc.fixed +1 -0
  1771. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc +3 -0
  1772. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc.fixed +3 -0
  1773. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc +1 -0
  1774. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc.fixed +1 -0
  1775. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.php +70 -0
  1776. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/NamingConventions/ValidVariableNameUnitTest.inc +131 -0
  1777. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/NamingConventions/ValidVariableNameUnitTest.php +102 -0
  1778. package/vendor/squizlabs/php_codesniffer/src/Standards/Zend/ruleset.xml +32 -0
  1779. package/vendor/squizlabs/php_codesniffer/src/Tokenizers/CSS.php +541 -0
  1780. package/vendor/squizlabs/php_codesniffer/src/Tokenizers/Comment.php +283 -0
  1781. package/vendor/squizlabs/php_codesniffer/src/Tokenizers/JS.php +1256 -0
  1782. package/vendor/squizlabs/php_codesniffer/src/Tokenizers/PHP.php +4005 -0
  1783. package/vendor/squizlabs/php_codesniffer/src/Tokenizers/Tokenizer.php +1738 -0
  1784. package/vendor/squizlabs/php_codesniffer/src/Util/Cache.php +355 -0
  1785. package/vendor/squizlabs/php_codesniffer/src/Util/Common.php +605 -0
  1786. package/vendor/squizlabs/php_codesniffer/src/Util/Help.php +625 -0
  1787. package/vendor/squizlabs/php_codesniffer/src/Util/Standards.php +340 -0
  1788. package/vendor/squizlabs/php_codesniffer/src/Util/Timing.php +133 -0
  1789. package/vendor/squizlabs/php_codesniffer/src/Util/Tokens.php +814 -0
  1790. package/vendor/squizlabs/php_codesniffer/tests/AllTests.php +58 -0
  1791. package/vendor/squizlabs/php_codesniffer/tests/ConfigDouble.php +212 -0
  1792. package/vendor/squizlabs/php_codesniffer/tests/Core/AbstractMethodUnitTest.php +223 -0
  1793. package/vendor/squizlabs/php_codesniffer/tests/Core/AllTests.php +63 -0
  1794. package/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/DetermineLoadedClassTest.php +126 -0
  1795. package/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/A.inc +3 -0
  1796. package/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/B.inc +4 -0
  1797. package/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/C.inc +4 -0
  1798. package/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/Sub/C.inc +5 -0
  1799. package/vendor/squizlabs/php_codesniffer/tests/Core/Config/GeneratorArgTest.php +79 -0
  1800. package/vendor/squizlabs/php_codesniffer/tests/Core/Config/ReportWidthTest.php +332 -0
  1801. package/vendor/squizlabs/php_codesniffer/tests/Core/Config/SniffsExcludeArgsTest.php +200 -0
  1802. package/vendor/squizlabs/php_codesniffer/tests/Core/ErrorSuppressionTest.php +1278 -0
  1803. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindEndOfStatementTest.inc +105 -0
  1804. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindEndOfStatementTest.php +457 -0
  1805. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindExtendedClassNameTest.inc +52 -0
  1806. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindExtendedClassNameTest.php +145 -0
  1807. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindImplementedInterfaceNamesTest.inc +47 -0
  1808. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindImplementedInterfaceNamesTest.php +162 -0
  1809. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindStartOfStatementTest.inc +200 -0
  1810. package/vendor/squizlabs/php_codesniffer/tests/Core/File/FindStartOfStatementTest.php +973 -0
  1811. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetClassPropertiesTest.inc +58 -0
  1812. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetClassPropertiesTest.php +192 -0
  1813. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetConditionTest.inc +91 -0
  1814. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetConditionTest.php +494 -0
  1815. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetDeclarationNameJSTest.js +23 -0
  1816. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetDeclarationNameJSTest.php +158 -0
  1817. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetDeclarationNameTest.inc +102 -0
  1818. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetDeclarationNameTest.php +225 -0
  1819. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMemberPropertiesTest.inc +356 -0
  1820. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMemberPropertiesTest.php +1191 -0
  1821. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersParseError1Test.inc +4 -0
  1822. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersParseError1Test.php +38 -0
  1823. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersParseError2Test.inc +4 -0
  1824. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersParseError2Test.php +38 -0
  1825. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersTest.inc +338 -0
  1826. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersTest.php +3182 -0
  1827. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodPropertiesTest.inc +226 -0
  1828. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodPropertiesTest.php +1562 -0
  1829. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetTokensAsStringTest.inc +25 -0
  1830. package/vendor/squizlabs/php_codesniffer/tests/Core/File/GetTokensAsStringTest.php +334 -0
  1831. package/vendor/squizlabs/php_codesniffer/tests/Core/File/IsReferenceTest.inc +216 -0
  1832. package/vendor/squizlabs/php_codesniffer/tests/Core/File/IsReferenceTest.php +396 -0
  1833. package/vendor/squizlabs/php_codesniffer/tests/Core/Filters/AbstractFilterTestCase.php +250 -0
  1834. package/vendor/squizlabs/php_codesniffer/tests/Core/Filters/Filter/AcceptTest.php +110 -0
  1835. package/vendor/squizlabs/php_codesniffer/tests/Core/Filters/Filter/AcceptTest.xml +16 -0
  1836. package/vendor/squizlabs/php_codesniffer/tests/Core/Filters/GitModifiedTest.php +268 -0
  1837. package/vendor/squizlabs/php_codesniffer/tests/Core/Filters/GitStagedTest.php +268 -0
  1838. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-BlankLinesAtEnd.diff +10 -0
  1839. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-BlankLinesAtEnd.inc +11 -0
  1840. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-BlankLinesAtStart.diff +9 -0
  1841. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-BlankLinesAtStart.inc +10 -0
  1842. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-LineAdded.diff +8 -0
  1843. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-LineAdded.inc +6 -0
  1844. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-LineRemoved.diff +8 -0
  1845. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-LineRemoved.inc +8 -0
  1846. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-NoDiff.diff +0 -0
  1847. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-NoDiff.inc +7 -0
  1848. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-NoTrailingWhitespace.diff +9 -0
  1849. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-NoTrailingWhitespace.inc +7 -0
  1850. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-TabsToSpaces.diff +9 -0
  1851. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-TabsToSpaces.inc +7 -0
  1852. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-VarNameChanged.diff +12 -0
  1853. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-VarNameChanged.inc +7 -0
  1854. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-WhiteSpaceAtEnd.diff +8 -0
  1855. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-WhiteSpaceAtEnd.inc +7 -0
  1856. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-WhiteSpaceAtStart.diff +8 -0
  1857. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-WhiteSpaceAtStart.inc +7 -0
  1858. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest-WindowsLineEndings.inc +7 -0
  1859. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/GenerateDiffTest.inc +7 -0
  1860. package/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/GenerateDiffTest.php +227 -0
  1861. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/AllValidDocsTest.xml +10 -0
  1862. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.html +88 -0
  1863. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.md +35 -0
  1864. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.txt +18 -0
  1865. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.html +98 -0
  1866. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.md +47 -0
  1867. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.txt +23 -0
  1868. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.html +88 -0
  1869. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.md +48 -0
  1870. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.txt +26 -0
  1871. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.html +89 -0
  1872. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.md +31 -0
  1873. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.txt +18 -0
  1874. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.html +118 -0
  1875. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.md +79 -0
  1876. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.txt +33 -0
  1877. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.html +98 -0
  1878. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.md +44 -0
  1879. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.txt +20 -0
  1880. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.html +78 -0
  1881. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.md +7 -0
  1882. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.txt +7 -0
  1883. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.html +78 -0
  1884. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.md +7 -0
  1885. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.txt +7 -0
  1886. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputEmpty.txt +0 -0
  1887. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.html +78 -0
  1888. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.md +7 -0
  1889. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.txt +7 -0
  1890. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.html +80 -0
  1891. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.md +11 -0
  1892. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.txt +11 -0
  1893. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.html +79 -0
  1894. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.md +8 -0
  1895. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.txt +9 -0
  1896. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.html +81 -0
  1897. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.md +10 -0
  1898. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.txt +10 -0
  1899. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.html +80 -0
  1900. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.md +9 -0
  1901. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.txt +11 -0
  1902. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.html +191 -0
  1903. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.md +180 -0
  1904. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.txt +111 -0
  1905. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedElementAtWrongLevel.html +77 -0
  1906. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedElementAtWrongLevel.md +6 -0
  1907. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedElementAtWrongLevel.txt +5 -0
  1908. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.html +78 -0
  1909. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.md +7 -0
  1910. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.txt +7 -0
  1911. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.html +88 -0
  1912. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.md +25 -0
  1913. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.txt +13 -0
  1914. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedUnknownElement.html +77 -0
  1915. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedUnknownElement.md +6 -0
  1916. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedUnknownElement.txt +5 -0
  1917. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/HTMLDouble.php +40 -0
  1918. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/MarkdownDouble.php +36 -0
  1919. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/MockGenerator.php +28 -0
  1920. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/CodeComparisonBlankLinesStandard.xml +33 -0
  1921. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/CodeComparisonBlockLengthStandard.xml +35 -0
  1922. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/CodeComparisonEncodingStandard.xml +42 -0
  1923. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/CodeComparisonLineLengthStandard.xml +25 -0
  1924. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/CodeTitleLineWrappingStandard.xml +55 -0
  1925. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/CodeTitleWhitespaceStandard.xml +32 -0
  1926. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitleCaseStandard.xml +7 -0
  1927. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/DocumentationTitleLengthStandard.xml +7 -0
  1928. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/StandardBlankLinesStandard.xml +13 -0
  1929. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/StandardEncodingStandard.xml +8 -0
  1930. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/StandardIndentStandard.xml +10 -0
  1931. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Content/StandardLineWrappingStandard.xml +9 -0
  1932. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/NoContentStandard.xml +2 -0
  1933. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/NoDocumentationElementStandard.xml +2 -0
  1934. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/OneCodeComparisonNoStandardStandard.xml +14 -0
  1935. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/OneStandardBlockCodeComparisonStandard.xml +19 -0
  1936. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/OneStandardBlockNoCodeStandard.xml +7 -0
  1937. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/OneStandardBlockTwoCodeComparisonsStandard.xml +31 -0
  1938. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/TwoStandardBlocksNoCodeStandard.xml +12 -0
  1939. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/TwoStandardBlocksOneCodeComparisonStandard.xml +24 -0
  1940. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Structure/TwoStandardBlocksThreeCodeComparisonsStandard.xml +48 -0
  1941. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Unsupported/ElementAtWrongLevelStandard.xml +8 -0
  1942. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Unsupported/OneElmAtWrongLevelStandard.xml +13 -0
  1943. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Unsupported/SuperfluousCodeElementStandard.xml +24 -0
  1944. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Docs/Unsupported/UnknownElementStandard.xml +7 -0
  1945. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeComparisonBlankLinesSniff.php +12 -0
  1946. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeComparisonBlockLengthSniff.php +12 -0
  1947. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeComparisonEncodingSniff.php +12 -0
  1948. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeComparisonLineLengthSniff.php +12 -0
  1949. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeTitleLineWrappingSniff.php +12 -0
  1950. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/CodeTitleWhitespaceSniff.php +12 -0
  1951. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/DocumentationTitleCaseSniff.php +12 -0
  1952. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/DocumentationTitleLengthSniff.php +12 -0
  1953. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/StandardBlankLinesSniff.php +12 -0
  1954. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/StandardEncodingSniff.php +12 -0
  1955. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/StandardIndentSniff.php +12 -0
  1956. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Content/StandardLineWrappingSniff.php +12 -0
  1957. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/DummySniff.php +25 -0
  1958. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/DocumentationMissingSniff.php +12 -0
  1959. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/NoContentSniff.php +12 -0
  1960. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/NoDocumentationElementSniff.php +12 -0
  1961. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/OneCodeComparisonNoStandardSniff.php +12 -0
  1962. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/OneStandardBlockCodeComparisonSniff.php +12 -0
  1963. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/OneStandardBlockNoCodeSniff.php +12 -0
  1964. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/OneStandardBlockTwoCodeComparisonsSniff.php +12 -0
  1965. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/TwoStandardBlocksNoCodeSniff.php +12 -0
  1966. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/TwoStandardBlocksOneCodeComparisonSniff.php +12 -0
  1967. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Structure/TwoStandardBlocksThreeCodeComparisonsSniff.php +12 -0
  1968. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Unsupported/ElementAtWrongLevelSniff.php +12 -0
  1969. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Unsupported/OneElmAtWrongLevelSniff.php +12 -0
  1970. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Unsupported/SuperfluousCodeElementSniff.php +12 -0
  1971. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/Sniffs/Unsupported/UnknownElementSniff.php +12 -0
  1972. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/StandardWithDocs/ruleset.xml +4 -0
  1973. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/GeneratorTest.php +245 -0
  1974. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/HTMLTest.php +292 -0
  1975. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/MarkdownTest.php +290 -0
  1976. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/NoDocsTest.xml +8 -0
  1977. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/NoValidDocsTest.xml +8 -0
  1978. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/OneDocTest.xml +8 -0
  1979. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/StructureDocsTest.xml +10 -0
  1980. package/vendor/squizlabs/php_codesniffer/tests/Core/Generators/TextTest.php +197 -0
  1981. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/AbstractRulesetTestCase.php +115 -0
  1982. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ConstructorNoSniffsTest.xml +6 -0
  1983. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ConstructorTest.php +293 -0
  1984. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ExpandSniffDirectoryTest.php +78 -0
  1985. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ExpandSniffDirectoryTest.xml +8 -0
  1986. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ExplainCustomRulesetTest.xml +10 -0
  1987. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ExplainSingleSniffTest.xml +6 -0
  1988. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ExplainTest.php +264 -0
  1989. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/.hidden/HiddenDirShouldBeIgnoredSniff.php +15 -0
  1990. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/AbstractSniff.php +12 -0
  1991. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/DummySniff.php +25 -0
  1992. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/.hidden/HiddenDirShouldBeIgnoredSniff.php +15 -0
  1993. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/AbstractSniff.php +12 -0
  1994. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/.HiddenFileSniff.php +12 -0
  1995. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/.hidden/DoNotFindMeSniff.txt +0 -0
  1996. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/.hidden/HiddenDirShouldBeIgnoredSniff.php +15 -0
  1997. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/DoNotFindMeSniff.txt +12 -0
  1998. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/FindMeSniff.php +12 -0
  1999. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/IncorrectFileExtensionSniff.inc +12 -0
  2000. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/MissingSniffSuffix.php +12 -0
  2001. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryA/Subdir/IncorrectLevelShouldStillBeFoundSniff.php +12 -0
  2002. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryB/AnotherAbstractSniff.php +12 -0
  2003. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryB/FindMeSniff.php +12 -0
  2004. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/CategoryB/IncorrectFileExtensionSniff.php3 +12 -0
  2005. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Sniffs/IncorrectLevelShouldStillBeFoundSniff.php +12 -0
  2006. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Utils/NotInSniffsDirSniff.php +12 -0
  2007. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/Utils/SubDir/NotInSniffsDirSniff.php +12 -0
  2008. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/DirectoryExpansion/.hiddenAbove/src/MyStandard/ruleset.xml +4 -0
  2009. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/InvalidNoSniffsDir/Sniffs +0 -0
  2010. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/InvalidNoSniffsDir/ruleset.xml +4 -0
  2011. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadAlways.1.php +8 -0
  2012. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadAlways.2.php +8 -0
  2013. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadAlways.3.php +8 -0
  2014. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadAlways.4.php +8 -0
  2015. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadPhpcbfOnly.php +8 -0
  2016. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/ProcessRulesetAutoloadLoadPhpcsOnly.php +8 -0
  2017. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/PropertyTypeHandlingInline.inc +26 -0
  2018. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/Deprecated/WithLongReplacementSniff.php +41 -0
  2019. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/Deprecated/WithReplacementContainingLinuxNewlinesSniff.php +45 -0
  2020. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/Deprecated/WithReplacementContainingNewlinesSniff.php +45 -0
  2021. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/Deprecated/WithReplacementSniff.php +41 -0
  2022. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/Deprecated/WithoutReplacementSniff.php +41 -0
  2023. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/DeprecatedInvalid/EmptyDeprecationVersionSniff.php +41 -0
  2024. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/DeprecatedInvalid/EmptyRemovalVersionSniff.php +41 -0
  2025. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/DeprecatedInvalid/InvalidDeprecationMessageSniff.php +42 -0
  2026. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/DeprecatedInvalid/InvalidDeprecationVersionSniff.php +41 -0
  2027. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/DeprecatedInvalid/InvalidRemovalVersionSniff.php +41 -0
  2028. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/InvalidSniffs/RegisterNoArraySniff.php +25 -0
  2029. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/SetProperty/AllowedAsDeclaredSniff.php +28 -0
  2030. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/SetProperty/AllowedViaMagicMethodSniff.php +40 -0
  2031. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/SetProperty/AllowedViaStdClassSniff.php +26 -0
  2032. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/SetProperty/NotAllowedViaAttributeSniff.php +27 -0
  2033. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/SetProperty/PropertyTypeHandlingSniff.php +125 -0
  2034. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/Sniffs/ValidSniffs/RegisterEmptyArraySniff.php +25 -0
  2035. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/Fixtures/TestStandard/ruleset.xml +4 -0
  2036. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/GetIgnorePatternsTest.php +111 -0
  2037. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/GetIgnorePatternsTest.xml +19 -0
  2038. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/GetIncludePatternsTest.php +108 -0
  2039. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/GetIncludePatternsTest.xml +15 -0
  2040. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/PopulateTokenListenersRegisterNoArrayTest.xml +8 -0
  2041. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/PopulateTokenListenersTest.php +548 -0
  2042. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/PopulateTokenListenersTest.xml +45 -0
  2043. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRuleInvalidTypeTest.php +43 -0
  2044. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRuleInvalidTypeTest.xml +9 -0
  2045. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRuleShouldProcessElementTest.php +660 -0
  2046. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRuleShouldProcessElementTest.xml +100 -0
  2047. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetAutoExpandSniffsDirectoryTest.xml +10 -0
  2048. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetAutoloadFileNotFoundTest.xml +8 -0
  2049. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetAutoloadTest.php +164 -0
  2050. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetAutoloadTest.xml +37 -0
  2051. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetBrokenRulesetEmptyFileTest.xml +0 -0
  2052. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetBrokenRulesetMultiErrorTest.xml +10 -0
  2053. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetBrokenRulesetSingleErrorTest.xml +2 -0
  2054. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetBrokenRulesetTest.php +92 -0
  2055. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetExcludeSniffGroupTest.xml +11 -0
  2056. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetInvalidNoSniffsDirTest.xml +10 -0
  2057. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetMiscTest.xml +25 -0
  2058. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetShouldProcessElementTest.php +388 -0
  2059. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetShouldProcessElementTest.xml +54 -0
  2060. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ProcessRulesetTest.php +264 -0
  2061. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/PropertyTypeHandlingInlineTest.xml +6 -0
  2062. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/PropertyTypeHandlingTest.php +234 -0
  2063. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/PropertyTypeHandlingTest.xml +44 -0
  2064. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RegisterSniffsTest.php +293 -0
  2065. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteLinuxTest.php +119 -0
  2066. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteLinuxTest.xml +11 -0
  2067. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteWindowsTest.php +116 -0
  2068. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteWindowsTest.xml +11 -0
  2069. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionTest-include.xml +10 -0
  2070. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionTest.php +479 -0
  2071. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionTest.xml +58 -0
  2072. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyAllowedAsDeclaredTest.xml +16 -0
  2073. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyAllowedViaMagicMethodTest.xml +16 -0
  2074. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyAllowedViaStdClassTest.xml +16 -0
  2075. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyAppliesPropertyToMultipleSniffsInCategoryTest.xml +9 -0
  2076. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForCategoryTest.xml +9 -0
  2077. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForStandardTest.xml +9 -0
  2078. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyNotAllowedViaAttributeTest.xml +10 -0
  2079. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetPropertyThrowsErrorOnInvalidPropertyTest.xml +9 -0
  2080. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/SetSniffPropertyTest.php +421 -0
  2081. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsEmptyDeprecationVersionTest.xml +8 -0
  2082. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsEmptyRemovalVersionTest.xml +8 -0
  2083. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsInvalidDeprecationMessageTest.xml +8 -0
  2084. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsInvalidDeprecationVersionTest.xml +8 -0
  2085. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsInvalidRemovalVersionTest.xml +8 -0
  2086. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsOrderTest.xml +10 -0
  2087. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsReportWidthTest.xml +8 -0
  2088. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsTest.php +540 -0
  2089. package/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/ShowSniffDeprecationsTest.xml +11 -0
  2090. package/vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.inc +51 -0
  2091. package/vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.php +297 -0
  2092. package/vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTestable.php +65 -0
  2093. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/AbstractTokenizerTestCase.php +126 -0
  2094. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/CommentTestCase.php +117 -0
  2095. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding1Test.inc +6 -0
  2096. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding1Test.php +69 -0
  2097. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding2Test.inc +5 -0
  2098. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding2Test.php +68 -0
  2099. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding3Test.inc +4 -0
  2100. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding3Test.php +62 -0
  2101. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding4Test.inc +7 -0
  2102. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/LiveCoding4Test.php +76 -0
  2103. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/MultiLineDocBlockTest.inc +81 -0
  2104. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/MultiLineDocBlockTest.php +439 -0
  2105. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/PhpcsAnnotationsInDocBlockTest.inc +116 -0
  2106. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/PhpcsAnnotationsInDocBlockTest.php +637 -0
  2107. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/SingleLineDocBlockTest.inc +26 -0
  2108. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Comment/SingleLineDocBlockTest.php +217 -0
  2109. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/AnonClassParenthesisOwnerTest.inc +29 -0
  2110. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/AnonClassParenthesisOwnerTest.php +158 -0
  2111. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ArrayKeywordTest.inc +58 -0
  2112. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ArrayKeywordTest.php +200 -0
  2113. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/AttributesTest.inc +90 -0
  2114. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/AttributesTest.php +704 -0
  2115. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillEnumTest.inc +91 -0
  2116. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillEnumTest.php +226 -0
  2117. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillExplicitOctalNotationTest.inc +31 -0
  2118. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillExplicitOctalNotationTest.php +120 -0
  2119. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillFnTokenParseErrorTest.inc +5 -0
  2120. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillFnTokenParseErrorTest.php +44 -0
  2121. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillFnTokenTest.inc +228 -0
  2122. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillFnTokenTest.php +967 -0
  2123. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillMatchTokenTest.inc +319 -0
  2124. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillMatchTokenTest.php +555 -0
  2125. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillNumericSeparatorTest.inc +94 -0
  2126. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillNumericSeparatorTest.php +402 -0
  2127. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillReadonlyTest.inc +156 -0
  2128. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillReadonlyTest.php +271 -0
  2129. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BitwiseOrTest.inc +183 -0
  2130. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BitwiseOrTest.php +160 -0
  2131. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ContextSensitiveKeywordsTest.inc +244 -0
  2132. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ContextSensitiveKeywordsTest.php +548 -0
  2133. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DNFTypesParseError1Test.inc +17 -0
  2134. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DNFTypesParseError1Test.php +69 -0
  2135. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DNFTypesParseError2Test.inc +48 -0
  2136. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DNFTypesParseError2Test.php +218 -0
  2137. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DNFTypesTest.inc +264 -0
  2138. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DNFTypesTest.php +533 -0
  2139. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DefaultKeywordTest.inc +203 -0
  2140. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DefaultKeywordTest.php +255 -0
  2141. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DoubleArrowTest.inc +281 -0
  2142. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DoubleArrowTest.php +237 -0
  2143. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DoubleQuotedStringTest.inc +52 -0
  2144. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/DoubleQuotedStringTest.php +144 -0
  2145. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/EnumCaseTest.inc +95 -0
  2146. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/EnumCaseTest.php +150 -0
  2147. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/FinallyTest.inc +40 -0
  2148. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/FinallyTest.php +98 -0
  2149. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/GotoLabelTest.inc +56 -0
  2150. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/GotoLabelTest.php +176 -0
  2151. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/HeredocNowdocTest.inc +39 -0
  2152. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/HeredocNowdocTest.php +213 -0
  2153. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/HeredocParseErrorTest.inc +11 -0
  2154. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/HeredocParseErrorTest.php +41 -0
  2155. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/HeredocStringTest.inc +193 -0
  2156. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/HeredocStringTest.php +161 -0
  2157. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/NamedFunctionCallArgumentsTest.inc +407 -0
  2158. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/NamedFunctionCallArgumentsTest.php +974 -0
  2159. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/NullsafeObjectOperatorTest.inc +29 -0
  2160. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/NullsafeObjectOperatorTest.php +144 -0
  2161. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc +247 -0
  2162. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.php +721 -0
  2163. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ResolveSimpleTokenTest.inc +51 -0
  2164. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ResolveSimpleTokenTest.php +433 -0
  2165. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ShortArrayTest.inc +111 -0
  2166. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/ShortArrayTest.php +141 -0
  2167. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/StableCommentWhitespaceTest.inc +139 -0
  2168. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/StableCommentWhitespaceTest.php +1064 -0
  2169. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/StableCommentWhitespaceWinTest.inc +63 -0
  2170. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/StableCommentWhitespaceWinTest.php +375 -0
  2171. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/TypeIntersectionTest.inc +161 -0
  2172. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/TypeIntersectionTest.php +157 -0
  2173. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/TypedConstantsTest.inc +156 -0
  2174. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/TypedConstantsTest.php +668 -0
  2175. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/UndoNamespacedNameSingleTokenTest.inc +147 -0
  2176. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/UndoNamespacedNameSingleTokenTest.php +1304 -0
  2177. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/YieldTest.inc +77 -0
  2178. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/YieldTest.php +448 -0
  2179. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreateParenthesisNestingMapDNFTypesTest.inc +185 -0
  2180. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreateParenthesisNestingMapDNFTypesTest.php +374 -0
  2181. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapHeredocNowdocCloserTest.inc +43 -0
  2182. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapHeredocNowdocCloserTest.php +117 -0
  2183. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapHeredocNowdocOpenerTest.inc +31 -0
  2184. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapHeredocNowdocOpenerTest.php +122 -0
  2185. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapTabWidth0Test.php +107 -0
  2186. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapYieldFromTest.inc +15 -0
  2187. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreatePositionMapYieldFromTest.php +100 -0
  2188. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreateTokenMapArrayParenthesesTest.inc +58 -0
  2189. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/CreateTokenMapArrayParenthesesTest.php +212 -0
  2190. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapCaseKeywordConditionsTest.inc +132 -0
  2191. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapCaseKeywordConditionsTest.php +271 -0
  2192. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapDefaultKeywordConditionsTest.inc +203 -0
  2193. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapDefaultKeywordConditionsTest.php +347 -0
  2194. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapIfKeywordConditionsTest.inc +13 -0
  2195. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapIfKeywordConditionsTest.php +76 -0
  2196. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapSwitchTokenScopeTest.inc +33 -0
  2197. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapSwitchTokenScopeTest.php +130 -0
  2198. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapWithNamespaceOperatorTest.inc +19 -0
  2199. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/RecurseScopeMapWithNamespaceOperatorTest.php +98 -0
  2200. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenMiscTest.php +124 -0
  2201. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenTabWidth1Test.php +111 -0
  2202. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenTabWidth2Test.php +111 -0
  2203. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenTabWidth4Test.php +111 -0
  2204. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenTabWidth5Test.php +111 -0
  2205. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenTest.inc +46 -0
  2206. package/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/Tokenizer/ReplaceTabsInTokenTestCase.php +274 -0
  2207. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Common/EscapeshellcmdTest.php +91 -0
  2208. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Common/GetSniffCodeTest.php +200 -0
  2209. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Common/IsCamelCapsTest.php +140 -0
  2210. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Common/PrepareForOutputTest.php +113 -0
  2211. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Common/StripColorsTest.php +96 -0
  2212. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Common/SuggestTypeTest.php +224 -0
  2213. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Help/HelpTest.php +769 -0
  2214. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Timing/GetHumanReadableDurationTest.php +114 -0
  2215. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Timing/TimingTest.php +123 -0
  2216. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Tokens/GetHighestWeightedTokenTest.php +162 -0
  2217. package/vendor/squizlabs/php_codesniffer/tests/Core/Util/Tokens/TokenNameTest.php +81 -0
  2218. package/vendor/squizlabs/php_codesniffer/tests/FileList.php +98 -0
  2219. package/vendor/squizlabs/php_codesniffer/tests/Standards/AbstractSniffUnitTest.php +468 -0
  2220. package/vendor/squizlabs/php_codesniffer/tests/Standards/AllSniffs.php +114 -0
  2221. package/vendor/squizlabs/php_codesniffer/tests/TestSuite.php +35 -0
  2222. package/vendor/squizlabs/php_codesniffer/tests/TestSuite7.php +35 -0
  2223. package/vendor/squizlabs/php_codesniffer/tests/bootstrap.php +99 -0
  2224. package/vendor/wp-coding-standards/wpcs/CHANGELOG.md +1654 -0
  2225. package/vendor/wp-coding-standards/wpcs/LICENSE +21 -0
  2226. package/vendor/wp-coding-standards/wpcs/README.md +261 -0
  2227. package/vendor/wp-coding-standards/wpcs/WordPress/AbstractArrayAssignmentRestrictionsSniff.php +261 -0
  2228. package/vendor/wp-coding-standards/wpcs/WordPress/AbstractClassRestrictionsSniff.php +257 -0
  2229. package/vendor/wp-coding-standards/wpcs/WordPress/AbstractFunctionParameterSniff.php +111 -0
  2230. package/vendor/wp-coding-standards/wpcs/WordPress/AbstractFunctionRestrictionsSniff.php +358 -0
  2231. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/Arrays/ArrayIndentationStandard.xml +116 -0
  2232. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/Arrays/ArrayKeySpacingRestrictionsStandard.xml +31 -0
  2233. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/Arrays/MultipleStatementAlignmentStandard.xml +50 -0
  2234. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/CodeAnalysis/EscapedNotTranslatedStandard.xml +24 -0
  2235. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/DateTime/CurrentTimeTimestampStandard.xml +35 -0
  2236. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/DateTime/RestrictedFunctionsStandard.xml +54 -0
  2237. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/NamingConventions/PrefixAllGlobalsStandard.xml +119 -0
  2238. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/NamingConventions/ValidHookNameStandard.xml +35 -0
  2239. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/NamingConventions/ValidPostTypeSlugStandard.xml +121 -0
  2240. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/PHP/IniSetStandard.xml +40 -0
  2241. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/PHP/StrictInArrayStandard.xml +53 -0
  2242. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/PHP/YodaConditionsStandard.xml +27 -0
  2243. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/Security/SafeRedirectStandard.xml +23 -0
  2244. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/CapabilitiesStandard.xml +69 -0
  2245. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/CapitalPDangitStandard.xml +43 -0
  2246. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/ClassNameCaseStandard.xml +23 -0
  2247. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/CronIntervalStandard.xml +45 -0
  2248. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedClassesStandard.xml +23 -0
  2249. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedFunctionsStandard.xml +23 -0
  2250. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParameterValuesStandard.xml +23 -0
  2251. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParametersStandard.xml +40 -0
  2252. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/EnqueuedResourceParametersStandard.xml +92 -0
  2253. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/EnqueuedResourcesStandard.xml +57 -0
  2254. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/PostsPerPageStandard.xml +73 -0
  2255. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/CastStructureSpacingStandard.xml +27 -0
  2256. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/ControlStructureSpacingStandard.xml +150 -0
  2257. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/ObjectOperatorSpacingStandard.xml +19 -0
  2258. package/vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/OperatorSpacingStandard.xml +61 -0
  2259. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/ArrayWalkingFunctionsHelper.php +108 -0
  2260. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/ConstantsHelper.php +135 -0
  2261. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/ContextHelper.php +394 -0
  2262. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/DeprecationHelper.php +84 -0
  2263. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/EscapingFunctionsTrait.php +256 -0
  2264. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/FormattingFunctionsHelper.php +60 -0
  2265. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/IsUnitTestTrait.php +238 -0
  2266. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/ListHelper.php +101 -0
  2267. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/MinimumWPVersionTrait.php +159 -0
  2268. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/PrintingFunctionsTrait.php +122 -0
  2269. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/RulesetPropertyHelper.php +73 -0
  2270. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/SanitizationHelperTrait.php +418 -0
  2271. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/SnakeCaseHelper.php +60 -0
  2272. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/UnslashingFunctionsHelper.php +59 -0
  2273. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/ValidationHelper.php +349 -0
  2274. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/VariableHelper.php +262 -0
  2275. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/WPDBTrait.php +115 -0
  2276. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/WPGlobalVariablesHelper.php +312 -0
  2277. package/vendor/wp-coding-standards/wpcs/WordPress/Helpers/WPHookHelper.php +113 -0
  2278. package/vendor/wp-coding-standards/wpcs/WordPress/Sniff.php +72 -0
  2279. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Arrays/ArrayDeclarationSpacingSniff.php +252 -0
  2280. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Arrays/ArrayIndentationSniff.php +550 -0
  2281. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Arrays/ArrayKeySpacingRestrictionsSniff.php +174 -0
  2282. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Arrays/MultipleStatementAlignmentSniff.php +583 -0
  2283. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/CodeAnalysis/AssignmentInTernaryConditionSniff.php +173 -0
  2284. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/CodeAnalysis/EscapedNotTranslatedSniff.php +89 -0
  2285. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DB/DirectDatabaseQuerySniff.php +301 -0
  2286. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DB/PreparedSQLPlaceholdersSniff.php +761 -0
  2287. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DB/PreparedSQLSniff.php +242 -0
  2288. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DB/RestrictedClassesSniff.php +57 -0
  2289. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DB/RestrictedFunctionsSniff.php +63 -0
  2290. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DB/SlowDBQuerySniff.php +58 -0
  2291. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DateTime/CurrentTimeTimestampSniff.php +168 -0
  2292. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/DateTime/RestrictedFunctionsSniff.php +59 -0
  2293. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Files/FileNameSniff.php +313 -0
  2294. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/NamingConventions/PrefixAllGlobalsSniff.php +1297 -0
  2295. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/NamingConventions/ValidFunctionNameSniff.php +188 -0
  2296. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/NamingConventions/ValidHookNameSniff.php +277 -0
  2297. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/NamingConventions/ValidPostTypeSlugSniff.php +230 -0
  2298. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/NamingConventions/ValidVariableNameSniff.php +289 -0
  2299. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/DevelopmentFunctionsSniff.php +63 -0
  2300. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/DiscouragedPHPFunctionsSniff.php +100 -0
  2301. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/DontExtractSniff.php +52 -0
  2302. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/IniSetSniff.php +193 -0
  2303. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/NoSilencedErrorsSniff.php +245 -0
  2304. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/POSIXFunctionsSniff.php +73 -0
  2305. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/PregQuoteDelimiterSniff.php +70 -0
  2306. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/RestrictedPHPFunctionsSniff.php +45 -0
  2307. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/StrictInArraySniff.php +122 -0
  2308. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/TypeCastsSniff.php +90 -0
  2309. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/PHP/YodaConditionsSniff.php +124 -0
  2310. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Security/EscapeOutputSniff.php +903 -0
  2311. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Security/NonceVerificationSniff.php +422 -0
  2312. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Security/PluginMenuSlugSniff.php +126 -0
  2313. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Security/SafeRedirectSniff.php +45 -0
  2314. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Security/ValidatedSanitizedInputSniff.php +244 -0
  2315. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Utils/I18nTextDomainFixerSniff.php +862 -0
  2316. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/AlternativeFunctionsSniff.php +371 -0
  2317. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/CapabilitiesSniff.php +478 -0
  2318. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/CapitalPDangitSniff.php +315 -0
  2319. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/ClassNameCaseSniff.php +897 -0
  2320. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/CronIntervalSniff.php +321 -0
  2321. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/DeprecatedClassesSniff.php +152 -0
  2322. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/DeprecatedFunctionsSniff.php +1708 -0
  2323. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/DeprecatedParameterValuesSniff.php +291 -0
  2324. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/DeprecatedParametersSniff.php +509 -0
  2325. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/DiscouragedConstantsSniff.php +160 -0
  2326. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/DiscouragedFunctionsSniff.php +54 -0
  2327. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/EnqueuedResourceParametersSniff.php +241 -0
  2328. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/EnqueuedResourcesSniff.php +108 -0
  2329. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/GlobalVariablesOverrideSniff.php +436 -0
  2330. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/I18nSniff.php +977 -0
  2331. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WP/PostsPerPageSniff.php +102 -0
  2332. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WhiteSpace/CastStructureSpacingSniff.php +59 -0
  2333. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php +486 -0
  2334. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php +63 -0
  2335. package/vendor/wp-coding-standards/wpcs/WordPress/Sniffs/WhiteSpace/OperatorSpacingSniff.php +60 -0
  2336. package/vendor/wp-coding-standards/wpcs/WordPress/ruleset.xml +13 -0
  2337. package/vendor/wp-coding-standards/wpcs/WordPress-Core/ruleset.xml +948 -0
  2338. package/vendor/wp-coding-standards/wpcs/WordPress-Docs/ruleset.xml +109 -0
  2339. package/vendor/wp-coding-standards/wpcs/WordPress-Extra/ruleset.xml +199 -0
  2340. package/vendor/wp-coding-standards/wpcs/composer.json +88 -0
  2341. package/vendor/wp-coding-standards/wpcs/phpcs.xml.dist.sample +153 -0
@@ -0,0 +1,1708 @@
1
+ <?php
2
+ /**
3
+ * WordPress Coding Standard.
4
+ *
5
+ * @package WPCS\WordPressCodingStandards
6
+ * @link https://github.com/WordPress/WordPress-Coding-Standards
7
+ * @license https://opensource.org/licenses/MIT MIT
8
+ */
9
+
10
+ namespace WordPressCS\WordPress\Sniffs\WP;
11
+
12
+ use PHPCSUtils\Utils\MessageHelper;
13
+ use WordPressCS\WordPress\AbstractFunctionRestrictionsSniff;
14
+ use WordPressCS\WordPress\Helpers\MinimumWPVersionTrait;
15
+
16
+ /**
17
+ * Restricts the use of various deprecated WordPress functions and suggests alternatives.
18
+ *
19
+ * This sniff will throw an error when usage of deprecated functions is detected
20
+ * if the function was deprecated before the minimum supported WP version;
21
+ * a warning otherwise.
22
+ * By default, it is set to presume that a project will support the current
23
+ * WP version and up to three releases before.
24
+ *
25
+ * @since 0.11.0
26
+ * @since 0.13.0 Class name changed: this class is now namespaced.
27
+ * @since 0.14.0 Now has the ability to handle minimum supported WP version
28
+ * being provided via the command-line or as as <config> value
29
+ * in a custom ruleset.
30
+ *
31
+ * @uses \WordPressCS\WordPress\Helpers\MinimumWPVersionTrait::$minimum_wp_version
32
+ */
33
+ final class DeprecatedFunctionsSniff extends AbstractFunctionRestrictionsSniff {
34
+
35
+ use MinimumWPVersionTrait;
36
+
37
+ /**
38
+ * List of deprecated functions with alternative when available.
39
+ *
40
+ * Version numbers should be fully qualified.
41
+ * Replacement functions should have parentheses.
42
+ *
43
+ * To retrieve a function list for comparison, the following tool is available:
44
+ * https://github.com/JDGrimes/wp-deprecated-code-scanner
45
+ *
46
+ * {@internal To be updated after every major release. Last updated for WordPress 6.5-RC3.}
47
+ *
48
+ * @var array
49
+ */
50
+ private $deprecated_functions = array(
51
+ // WP 0.71.
52
+ 'the_category_head' => array(
53
+ 'alt' => 'get_the_category_by_ID()',
54
+ 'version' => '0.71',
55
+ ),
56
+ 'the_category_ID' => array(
57
+ 'alt' => 'get_the_category()',
58
+ 'version' => '0.71',
59
+ ),
60
+
61
+ // WP 1.2.0.
62
+ 'permalink_link' => array(
63
+ 'alt' => 'the_permalink()',
64
+ 'version' => '1.2.0',
65
+ ),
66
+
67
+ // WP 1.5.0.
68
+ 'start_wp' => array(
69
+ // Verified correct alternative.
70
+ 'alt' => 'the Loop',
71
+ 'version' => '1.5.0',
72
+ ),
73
+
74
+ // WP 1.5.1.
75
+ 'get_postdata' => array(
76
+ 'alt' => 'get_post()',
77
+ 'version' => '1.5.1',
78
+ ),
79
+
80
+ // WP 2.0.0.
81
+ 'create_user' => array(
82
+ 'alt' => 'wp_create_user()',
83
+ 'version' => '2.0.0',
84
+ ),
85
+ 'next_post' => array(
86
+ 'alt' => 'next_post_link()',
87
+ 'version' => '2.0.0',
88
+ ),
89
+ 'previous_post' => array(
90
+ 'alt' => 'previous_post_link()',
91
+ 'version' => '2.0.0',
92
+ ),
93
+ 'user_can_create_draft' => array(
94
+ 'alt' => 'current_user_can()',
95
+ 'version' => '2.0.0',
96
+ ),
97
+ 'user_can_create_post' => array(
98
+ 'alt' => 'current_user_can()',
99
+ 'version' => '2.0.0',
100
+ ),
101
+ 'user_can_delete_post' => array(
102
+ 'alt' => 'current_user_can()',
103
+ 'version' => '2.0.0',
104
+ ),
105
+ 'user_can_delete_post_comments' => array(
106
+ 'alt' => 'current_user_can()',
107
+ 'version' => '2.0.0',
108
+ ),
109
+ 'user_can_edit_post' => array(
110
+ 'alt' => 'current_user_can()',
111
+ 'version' => '2.0.0',
112
+ ),
113
+ 'user_can_edit_post_comments' => array(
114
+ 'alt' => 'current_user_can()',
115
+ 'version' => '2.0.0',
116
+ ),
117
+ 'user_can_edit_post_date' => array(
118
+ 'alt' => 'current_user_can()',
119
+ 'version' => '2.0.0',
120
+ ),
121
+ 'user_can_edit_user' => array(
122
+ 'alt' => 'current_user_can()',
123
+ 'version' => '2.0.0',
124
+ ),
125
+ 'user_can_set_post_date' => array(
126
+ 'alt' => 'current_user_can()',
127
+ 'version' => '2.0.0',
128
+ ),
129
+
130
+ // WP 2.1.0.
131
+ 'dropdown_cats' => array(
132
+ 'alt' => 'wp_dropdown_categories()',
133
+ 'version' => '2.1.0',
134
+ ),
135
+ 'get_archives' => array(
136
+ 'alt' => 'wp_get_archives()',
137
+ 'version' => '2.1.0',
138
+ ),
139
+ 'get_author_link' => array(
140
+ 'alt' => 'get_author_posts_url()',
141
+ 'version' => '2.1.0',
142
+ ),
143
+ 'get_autotoggle' => array(
144
+ 'alt' => '',
145
+ 'version' => '2.1.0',
146
+ ),
147
+ 'get_link' => array(
148
+ 'alt' => 'get_bookmark()',
149
+ 'version' => '2.1.0',
150
+ ),
151
+ 'get_linkcatname' => array(
152
+ 'alt' => 'get_category()',
153
+ 'version' => '2.1.0',
154
+ ),
155
+ 'get_linkobjects' => array(
156
+ 'alt' => 'get_bookmarks()',
157
+ 'version' => '2.1.0',
158
+ ),
159
+ 'get_linkobjectsbyname' => array(
160
+ 'alt' => 'get_bookmarks()',
161
+ 'version' => '2.1.0',
162
+ ),
163
+ 'get_linkrating' => array(
164
+ 'alt' => 'sanitize_bookmark_field()',
165
+ 'version' => '2.1.0',
166
+ ),
167
+ 'get_links' => array(
168
+ 'alt' => 'get_bookmarks()',
169
+ 'version' => '2.1.0',
170
+ ),
171
+ 'get_links_list' => array(
172
+ 'alt' => 'wp_list_bookmarks()',
173
+ 'version' => '2.1.0',
174
+ ),
175
+ 'get_links_withrating' => array(
176
+ 'alt' => 'get_bookmarks()',
177
+ 'version' => '2.1.0',
178
+ ),
179
+ 'get_linksbyname' => array(
180
+ 'alt' => 'get_bookmarks()',
181
+ 'version' => '2.1.0',
182
+ ),
183
+ 'get_linksbyname_withrating' => array(
184
+ 'alt' => 'get_bookmarks()',
185
+ 'version' => '2.1.0',
186
+ ),
187
+ 'get_settings' => array(
188
+ 'alt' => 'get_option()',
189
+ 'version' => '2.1.0',
190
+ ),
191
+ 'link_pages' => array(
192
+ 'alt' => 'wp_link_pages()',
193
+ 'version' => '2.1.0',
194
+ ),
195
+ 'links_popup_script' => array(
196
+ 'alt' => '',
197
+ 'version' => '2.1.0',
198
+ ),
199
+ 'list_authors' => array(
200
+ 'alt' => 'wp_list_authors()',
201
+ 'version' => '2.1.0',
202
+ ),
203
+ 'list_cats' => array(
204
+ 'alt' => 'wp_list_categories()',
205
+ 'version' => '2.1.0',
206
+ ),
207
+ 'tinymce_include' => array(
208
+ 'alt' => 'wp_editor()',
209
+ 'version' => '2.1.0',
210
+ ),
211
+ 'wp_get_links' => array(
212
+ 'alt' => 'wp_list_bookmarks()',
213
+ 'version' => '2.1.0',
214
+ ),
215
+ 'wp_get_linksbyname' => array(
216
+ 'alt' => 'wp_list_bookmarks()',
217
+ 'version' => '2.1.0',
218
+ ),
219
+ 'wp_get_post_cats' => array(
220
+ 'alt' => 'wp_get_post_categories()',
221
+ 'version' => '2.1.0',
222
+ ),
223
+ 'wp_list_cats' => array(
224
+ 'alt' => 'wp_list_categories()',
225
+ 'version' => '2.1.0',
226
+ ),
227
+ 'wp_set_post_cats' => array(
228
+ 'alt' => 'wp_set_post_categories()',
229
+ 'version' => '2.1.0',
230
+ ),
231
+
232
+ // WP 2.2.0.
233
+ 'comments_rss' => array(
234
+ 'alt' => 'get_post_comments_feed_link()',
235
+ 'version' => '2.2.0',
236
+ ),
237
+
238
+ // WP 2.3.0.
239
+ 'permalink_single_rss' => array(
240
+ 'alt' => 'the_permalink_rss()',
241
+ 'version' => '2.3.0',
242
+ ),
243
+
244
+ // WP 2.5.0.
245
+ 'comments_rss_link' => array(
246
+ 'alt' => 'post_comments_feed_link()',
247
+ 'version' => '2.5.0',
248
+ ),
249
+ 'documentation_link' => array(
250
+ 'alt' => '',
251
+ 'version' => '2.5.0',
252
+ ),
253
+ 'get_attachment_icon' => array(
254
+ 'alt' => 'wp_get_attachment_image()',
255
+ 'version' => '2.5.0',
256
+ ),
257
+ 'get_attachment_icon_src' => array(
258
+ 'alt' => 'wp_get_attachment_image_src()',
259
+ 'version' => '2.5.0',
260
+ ),
261
+ 'get_attachment_innerHTML' => array(
262
+ 'alt' => 'wp_get_attachment_image()',
263
+ 'version' => '2.5.0',
264
+ ),
265
+ 'get_author_rss_link' => array(
266
+ 'alt' => 'get_author_feed_link()',
267
+ 'version' => '2.5.0',
268
+ ),
269
+ 'get_category_rss_link' => array(
270
+ 'alt' => 'get_category_feed_link()',
271
+ 'version' => '2.5.0',
272
+ ),
273
+ 'get_the_attachment_link' => array(
274
+ 'alt' => 'wp_get_attachment_link()',
275
+ 'version' => '2.5.0',
276
+ ),
277
+ 'gzip_compression' => array(
278
+ 'alt' => '',
279
+ 'version' => '2.5.0',
280
+ ),
281
+ 'wp_clearcookie' => array(
282
+ 'alt' => 'wp_clear_auth_cookie()',
283
+ 'version' => '2.5.0',
284
+ ),
285
+ 'wp_get_cookie_login' => array(
286
+ 'alt' => '',
287
+ 'version' => '2.5.0',
288
+ ),
289
+ 'wp_login' => array(
290
+ 'alt' => 'wp_signon()',
291
+ 'version' => '2.5.0',
292
+ ),
293
+ 'wp_setcookie' => array(
294
+ 'alt' => 'wp_set_auth_cookie()',
295
+ 'version' => '2.5.0',
296
+ ),
297
+
298
+ // WP 2.6.0.
299
+ 'dropdown_categories' => array(
300
+ 'alt' => 'wp_category_checklist()',
301
+ 'version' => '2.6.0',
302
+ ),
303
+ 'dropdown_link_categories' => array(
304
+ 'alt' => 'wp_link_category_checklist()',
305
+ 'version' => '2.6.0',
306
+ ),
307
+
308
+ // WP 2.7.0.
309
+ 'get_commentdata' => array(
310
+ 'alt' => 'get_comment()',
311
+ 'version' => '2.7.0',
312
+ ),
313
+ // This is a method i.e. WP_Filesystem_Base::find_base_dir() See #731.
314
+ 'find_base_dir' => array(
315
+ 'alt' => 'WP_Filesystem::abspath()',
316
+ 'version' => '2.7.0',
317
+ ),
318
+ // This is a method i.e. WP_Filesystem_Base::get_base_dir() See #731.
319
+ 'get_base_dir' => array(
320
+ 'alt' => 'WP_Filesystem::abspath()',
321
+ 'version' => '2.7.0',
322
+ ),
323
+
324
+ // WP 2.8.0.
325
+ '__ngettext' => array(
326
+ 'alt' => '_n()',
327
+ 'version' => '2.8.0',
328
+ ),
329
+ '__ngettext_noop' => array(
330
+ 'alt' => '_n_noop()',
331
+ 'version' => '2.8.0',
332
+ ),
333
+ 'attribute_escape' => array(
334
+ 'alt' => 'esc_attr()',
335
+ 'version' => '2.8.0',
336
+ ),
337
+ 'get_author_name' => array(
338
+ 'alt' => 'get_the_author_meta(\'display_name\')',
339
+ 'version' => '2.8.0',
340
+ ),
341
+ 'get_category_children' => array(
342
+ 'alt' => 'get_term_children()',
343
+ 'version' => '2.8.0',
344
+ ),
345
+ 'get_catname' => array(
346
+ 'alt' => 'get_cat_name()',
347
+ 'version' => '2.8.0',
348
+ ),
349
+ 'get_the_author_aim' => array(
350
+ 'alt' => 'get_the_author_meta(\'aim\')',
351
+ 'version' => '2.8.0',
352
+ ),
353
+ 'get_the_author_description' => array(
354
+ 'alt' => 'get_the_author_meta(\'description\')',
355
+ 'version' => '2.8.0',
356
+ ),
357
+ 'get_the_author_email' => array(
358
+ 'alt' => 'get_the_author_meta(\'email\')',
359
+ 'version' => '2.8.0',
360
+ ),
361
+ 'get_the_author_firstname' => array(
362
+ 'alt' => 'get_the_author_meta(\'first_name\')',
363
+ 'version' => '2.8.0',
364
+ ),
365
+ 'get_the_author_icq' => array(
366
+ 'alt' => 'get_the_author_meta(\'icq\')',
367
+ 'version' => '2.8.0',
368
+ ),
369
+ 'get_the_author_ID' => array(
370
+ 'alt' => 'get_the_author_meta(\'ID\')',
371
+ 'version' => '2.8.0',
372
+ ),
373
+ 'get_the_author_lastname' => array(
374
+ 'alt' => 'get_the_author_meta(\'last_name\')',
375
+ 'version' => '2.8.0',
376
+ ),
377
+ 'get_the_author_login' => array(
378
+ 'alt' => 'get_the_author_meta(\'login\')',
379
+ 'version' => '2.8.0',
380
+ ),
381
+ 'get_the_author_msn' => array(
382
+ 'alt' => 'get_the_author_meta(\'msn\')',
383
+ 'version' => '2.8.0',
384
+ ),
385
+ 'get_the_author_nickname' => array(
386
+ 'alt' => 'get_the_author_meta(\'nickname\')',
387
+ 'version' => '2.8.0',
388
+ ),
389
+ 'get_the_author_url' => array(
390
+ 'alt' => 'get_the_author_meta(\'url\')',
391
+ 'version' => '2.8.0',
392
+ ),
393
+ 'get_the_author_yim' => array(
394
+ 'alt' => 'get_the_author_meta(\'yim\')',
395
+ 'version' => '2.8.0',
396
+ ),
397
+ 'js_escape' => array(
398
+ 'alt' => 'esc_js()',
399
+ 'version' => '2.8.0',
400
+ ),
401
+ 'register_sidebar_widget' => array(
402
+ 'alt' => 'wp_register_sidebar_widget()',
403
+ 'version' => '2.8.0',
404
+ ),
405
+ 'register_widget_control' => array(
406
+ 'alt' => 'wp_register_widget_control()',
407
+ 'version' => '2.8.0',
408
+ ),
409
+ 'the_author_aim' => array(
410
+ 'alt' => 'the_author_meta(\'aim\')',
411
+ 'version' => '2.8.0',
412
+ ),
413
+ 'the_author_description' => array(
414
+ 'alt' => 'the_author_meta(\'description\')',
415
+ 'version' => '2.8.0',
416
+ ),
417
+ 'the_author_email' => array(
418
+ 'alt' => 'the_author_meta(\'email\')',
419
+ 'version' => '2.8.0',
420
+ ),
421
+ 'the_author_firstname' => array(
422
+ 'alt' => 'the_author_meta(\'first_name\')',
423
+ 'version' => '2.8.0',
424
+ ),
425
+ 'the_author_icq' => array(
426
+ 'alt' => 'the_author_meta(\'icq\')',
427
+ 'version' => '2.8.0',
428
+ ),
429
+ 'the_author_ID' => array(
430
+ 'alt' => 'the_author_meta(\'ID\')',
431
+ 'version' => '2.8.0',
432
+ ),
433
+ 'the_author_lastname' => array(
434
+ 'alt' => 'the_author_meta(\'last_name\')',
435
+ 'version' => '2.8.0',
436
+ ),
437
+ 'the_author_login' => array(
438
+ 'alt' => 'the_author_meta(\'login\')',
439
+ 'version' => '2.8.0',
440
+ ),
441
+ 'the_author_msn' => array(
442
+ 'alt' => 'the_author_meta(\'msn\')',
443
+ 'version' => '2.8.0',
444
+ ),
445
+ 'the_author_nickname' => array(
446
+ 'alt' => 'the_author_meta(\'nickname\')',
447
+ 'version' => '2.8.0',
448
+ ),
449
+ 'the_author_url' => array(
450
+ 'alt' => 'the_author_meta(\'url\')',
451
+ 'version' => '2.8.0',
452
+ ),
453
+ 'the_author_yim' => array(
454
+ 'alt' => 'the_author_meta(\'yim\')',
455
+ 'version' => '2.8.0',
456
+ ),
457
+ 'unregister_sidebar_widget' => array(
458
+ 'alt' => 'wp_unregister_sidebar_widget()',
459
+ 'version' => '2.8.0',
460
+ ),
461
+ 'unregister_widget_control' => array(
462
+ 'alt' => 'wp_unregister_widget_control()',
463
+ 'version' => '2.8.0',
464
+ ),
465
+ 'wp_specialchars' => array(
466
+ 'alt' => 'esc_html()',
467
+ 'version' => '2.8.0',
468
+ ),
469
+
470
+ // WP 2.9.0.
471
+ '_c' => array(
472
+ 'alt' => '_x()',
473
+ 'version' => '2.9.0',
474
+ ),
475
+ '_nc' => array(
476
+ 'alt' => '_nx()',
477
+ 'version' => '2.9.0',
478
+ ),
479
+ 'get_real_file_to_edit' => array(
480
+ 'alt' => '',
481
+ 'version' => '2.9.0',
482
+ ),
483
+ 'make_url_footnote' => array(
484
+ 'alt' => '',
485
+ 'version' => '2.9.0',
486
+ ),
487
+ 'the_content_rss' => array(
488
+ 'alt' => 'the_content_feed()',
489
+ 'version' => '2.9.0',
490
+ ),
491
+ 'translate_with_context' => array(
492
+ 'alt' => '_x()',
493
+ 'version' => '2.9.0',
494
+ ),
495
+
496
+ // WP 3.0.0.
497
+ 'activate_sitewide_plugin' => array(
498
+ 'alt' => 'activate_plugin()',
499
+ 'version' => '3.0.0',
500
+ ),
501
+ 'add_option_update_handler' => array(
502
+ 'alt' => 'register_setting()',
503
+ 'version' => '3.0.0',
504
+ ),
505
+ 'automatic_feed_links' => array(
506
+ 'alt' => 'add_theme_support( \'automatic-feed-links\' )',
507
+ 'version' => '3.0.0',
508
+ ),
509
+ 'clean_url' => array(
510
+ 'alt' => 'esc_url()',
511
+ 'version' => '3.0.0',
512
+ ),
513
+ 'clear_global_post_cache' => array(
514
+ 'alt' => 'clean_post_cache()',
515
+ 'version' => '3.0.0',
516
+ ),
517
+ 'codepress_footer_js' => array(
518
+ 'alt' => '',
519
+ 'version' => '3.0.0',
520
+ ),
521
+ 'codepress_get_lang' => array(
522
+ 'alt' => '',
523
+ 'version' => '3.0.0',
524
+ ),
525
+ 'deactivate_sitewide_plugin' => array(
526
+ 'alt' => 'deactivate_plugin()',
527
+ 'version' => '3.0.0',
528
+ ),
529
+ 'delete_usermeta' => array(
530
+ 'alt' => 'delete_user_meta()',
531
+ 'version' => '3.0.0',
532
+ ),
533
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
534
+ 'funky_javascript_callback' => array(
535
+ 'alt' => '',
536
+ 'version' => '3.0.0',
537
+ ),
538
+ 'funky_javascript_fix' => array(
539
+ 'alt' => '',
540
+ 'version' => '3.0.0',
541
+ ),
542
+ 'generate_random_password' => array(
543
+ 'alt' => 'wp_generate_password()',
544
+ 'version' => '3.0.0',
545
+ ),
546
+ 'get_alloptions' => array(
547
+ 'alt' => 'wp_load_alloptions()',
548
+ 'version' => '3.0.0',
549
+ ),
550
+ 'get_blog_list' => array(
551
+ 'alt' => 'wp_get_sites()',
552
+ 'version' => '3.0.0',
553
+ ),
554
+ 'get_most_active_blogs' => array(
555
+ 'alt' => '',
556
+ 'version' => '3.0.0',
557
+ ),
558
+ 'get_profile' => array(
559
+ 'alt' => 'get_the_author_meta()',
560
+ 'version' => '3.0.0',
561
+ ),
562
+ 'get_user_details' => array(
563
+ 'alt' => 'get_user_by()',
564
+ 'version' => '3.0.0',
565
+ ),
566
+ 'get_usermeta' => array(
567
+ 'alt' => 'get_user_meta()',
568
+ 'version' => '3.0.0',
569
+ ),
570
+ 'get_usernumposts' => array(
571
+ 'alt' => 'count_user_posts()',
572
+ 'version' => '3.0.0',
573
+ ),
574
+ 'graceful_fail' => array(
575
+ 'alt' => 'wp_die()',
576
+ 'version' => '3.0.0',
577
+ ),
578
+ // Verified version & alternative.
579
+ 'install_blog_defaults' => array(
580
+ 'alt' => 'wp_install_defaults',
581
+ 'version' => '3.0.0',
582
+ ),
583
+ 'is_main_blog' => array(
584
+ 'alt' => 'is_main_site()',
585
+ 'version' => '3.0.0',
586
+ ),
587
+ 'is_site_admin' => array(
588
+ 'alt' => 'is_super_admin()',
589
+ 'version' => '3.0.0',
590
+ ),
591
+ 'is_taxonomy' => array(
592
+ 'alt' => 'taxonomy_exists()',
593
+ 'version' => '3.0.0',
594
+ ),
595
+ 'is_term' => array(
596
+ 'alt' => 'term_exists()',
597
+ 'version' => '3.0.0',
598
+ ),
599
+ 'is_wpmu_sitewide_plugin' => array(
600
+ 'alt' => 'is_network_only_plugin()',
601
+ 'version' => '3.0.0',
602
+ ),
603
+ 'mu_options' => array(
604
+ 'alt' => '',
605
+ 'version' => '3.0.0',
606
+ ),
607
+ 'remove_option_update_handler' => array(
608
+ 'alt' => 'unregister_setting()',
609
+ 'version' => '3.0.0',
610
+ ),
611
+ 'set_current_user' => array(
612
+ 'alt' => 'wp_set_current_user()',
613
+ 'version' => '3.0.0',
614
+ ),
615
+ 'update_usermeta' => array(
616
+ 'alt' => 'update_user_meta()',
617
+ 'version' => '3.0.0',
618
+ ),
619
+ 'use_codepress' => array(
620
+ 'alt' => '',
621
+ 'version' => '3.0.0',
622
+ ),
623
+ 'validate_email' => array(
624
+ 'alt' => 'is_email()',
625
+ 'version' => '3.0.0',
626
+ ),
627
+ 'wp_dropdown_cats' => array(
628
+ 'alt' => 'wp_dropdown_categories()',
629
+ 'version' => '3.0.0',
630
+ ),
631
+ 'wp_shrink_dimensions' => array(
632
+ 'alt' => 'wp_constrain_dimensions()',
633
+ 'version' => '3.0.0',
634
+ ),
635
+ 'wpmu_checkAvailableSpace' => array(
636
+ 'alt' => 'is_upload_space_available()',
637
+ 'version' => '3.0.0',
638
+ ),
639
+ 'wpmu_menu' => array(
640
+ 'alt' => '',
641
+ 'version' => '3.0.0',
642
+ ),
643
+
644
+ // WP 3.1.0.
645
+ 'get_author_user_ids' => array(
646
+ 'alt' => 'get_users()',
647
+ 'version' => '3.1.0',
648
+ ),
649
+ 'get_dashboard_blog' => array(
650
+ 'alt' => 'get_site()',
651
+ 'version' => '3.1.0',
652
+ ),
653
+ 'get_editable_authors' => array(
654
+ 'alt' => 'get_users()',
655
+ 'version' => '3.1.0',
656
+ ),
657
+ 'get_editable_user_ids' => array(
658
+ 'alt' => 'get_users()',
659
+ 'version' => '3.1.0',
660
+ ),
661
+ 'get_nonauthor_user_ids' => array(
662
+ 'alt' => 'get_users()',
663
+ 'version' => '3.1.0',
664
+ ),
665
+ 'get_others_drafts' => array(
666
+ 'alt' => '',
667
+ 'version' => '3.1.0',
668
+ ),
669
+ 'get_others_pending' => array(
670
+ 'alt' => '',
671
+ 'version' => '3.1.0',
672
+ ),
673
+ 'get_others_unpublished_posts' => array(
674
+ 'alt' => '',
675
+ 'version' => '3.1.0',
676
+ ),
677
+ 'get_users_of_blog' => array(
678
+ 'alt' => 'get_users()',
679
+ 'version' => '3.1.0',
680
+ ),
681
+ 'install_themes_feature_list' => array(
682
+ 'alt' => 'get_theme_feature_list()',
683
+ 'version' => '3.1.0',
684
+ ),
685
+ 'is_plugin_page' => array(
686
+ // Verified correct alternative.
687
+ 'alt' => 'global $plugin_page and/or get_plugin_page_hookname() hooks',
688
+ 'version' => '3.1.0',
689
+ ),
690
+ 'update_category_cache' => array(
691
+ 'alt' => '',
692
+ 'version' => '3.1.0',
693
+ ),
694
+
695
+ // WP 3.2.0.
696
+ 'favorite_actions' => array(
697
+ 'alt' => 'WP_Admin_Bar',
698
+ 'version' => '3.2.0',
699
+ ),
700
+ 'wp_dashboard_quick_press_output' => array(
701
+ 'alt' => 'wp_dashboard_quick_press()',
702
+ 'version' => '3.2.0',
703
+ ),
704
+ 'wp_timezone_supported' => array(
705
+ 'alt' => '',
706
+ 'version' => '3.2.0',
707
+ ),
708
+
709
+ // WP 3.3.0.
710
+ 'add_contextual_help' => array(
711
+ 'alt' => 'get_current_screen()->add_help_tab()',
712
+ 'version' => '3.3.0',
713
+ ),
714
+ 'get_boundary_post_rel_link' => array(
715
+ 'alt' => '',
716
+ 'version' => '3.3.0',
717
+ ),
718
+ 'get_index_rel_link' => array(
719
+ 'alt' => '',
720
+ 'version' => '3.3.0',
721
+ ),
722
+ 'get_parent_post_rel_link' => array(
723
+ 'alt' => '',
724
+ 'version' => '3.3.0',
725
+ ),
726
+ 'get_user_by_email' => array(
727
+ 'alt' => 'get_user_by(\'email\')',
728
+ 'version' => '3.3.0',
729
+ ),
730
+ 'get_user_metavalues' => array(
731
+ 'alt' => '',
732
+ 'version' => '3.3.0',
733
+ ),
734
+ 'get_userdatabylogin' => array(
735
+ 'alt' => 'get_user_by(\'login\')',
736
+ 'version' => '3.3.0',
737
+ ),
738
+ 'index_rel_link' => array(
739
+ 'alt' => '',
740
+ 'version' => '3.3.0',
741
+ ),
742
+ 'is_blog_user' => array(
743
+ 'alt' => 'is_user_member_of_blog()',
744
+ 'version' => '3.3.0',
745
+ ),
746
+ 'media_upload_audio' => array(
747
+ 'alt' => 'wp_media_upload_handler()',
748
+ 'version' => '3.3.0',
749
+ ),
750
+ 'media_upload_file' => array(
751
+ 'alt' => 'wp_media_upload_handler()',
752
+ 'version' => '3.3.0',
753
+ ),
754
+ 'media_upload_image' => array(
755
+ 'alt' => 'wp_media_upload_handler()',
756
+ 'version' => '3.3.0',
757
+ ),
758
+ 'media_upload_video' => array(
759
+ 'alt' => 'wp_media_upload_handler()',
760
+ 'version' => '3.3.0',
761
+ ),
762
+ 'parent_post_rel_link' => array(
763
+ 'alt' => '',
764
+ 'version' => '3.3.0',
765
+ ),
766
+ 'sanitize_user_object' => array(
767
+ 'alt' => '',
768
+ 'version' => '3.3.0',
769
+ ),
770
+ 'screen_layout' => array(
771
+ 'alt' => '$current_screen->render_screen_layout()',
772
+ 'version' => '3.3.0',
773
+ ),
774
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
775
+ 'screen_meta' => array(
776
+ 'alt' => '$current_screen->render_screen_meta()',
777
+ 'version' => '3.3.0',
778
+ ),
779
+ 'screen_options' => array(
780
+ 'alt' => '$current_screen->render_per_page_options()',
781
+ 'version' => '3.3.0',
782
+ ),
783
+ 'start_post_rel_link' => array(
784
+ 'alt' => '',
785
+ 'version' => '3.3.0',
786
+ ),
787
+ 'the_editor' => array(
788
+ 'alt' => 'wp_editor()',
789
+ 'version' => '3.3.0',
790
+ ),
791
+ 'type_url_form_audio' => array(
792
+ 'alt' => 'wp_media_insert_url_form(\'audio\')',
793
+ 'version' => '3.3.0',
794
+ ),
795
+ 'type_url_form_file' => array(
796
+ 'alt' => 'wp_media_insert_url_form(\'file\')',
797
+ 'version' => '3.3.0',
798
+ ),
799
+ 'type_url_form_image' => array(
800
+ 'alt' => 'wp_media_insert_url_form(\'image\')',
801
+ 'version' => '3.3.0',
802
+ ),
803
+ 'type_url_form_video' => array(
804
+ 'alt' => 'wp_media_insert_url_form(\'video\')',
805
+ 'version' => '3.3.0',
806
+ ),
807
+ 'wp_admin_bar_dashboard_view_site_menu' => array(
808
+ 'alt' => '',
809
+ 'version' => '3.3.0',
810
+ ),
811
+ 'wp_preload_dialogs' => array(
812
+ 'alt' => 'wp_editor()',
813
+ 'version' => '3.3.0',
814
+ ),
815
+ 'wp_print_editor_js' => array(
816
+ 'alt' => 'wp_editor()',
817
+ 'version' => '3.3.0',
818
+ ),
819
+ 'wp_quicktags' => array(
820
+ 'alt' => 'wp_editor()',
821
+ 'version' => '3.3.0',
822
+ ),
823
+ 'wp_tiny_mce' => array(
824
+ 'alt' => 'wp_editor()',
825
+ 'version' => '3.3.0',
826
+ ),
827
+ 'wpmu_admin_do_redirect' => array(
828
+ 'alt' => 'wp_redirect()',
829
+ 'version' => '3.3.0',
830
+ ),
831
+ 'wpmu_admin_redirect_add_updated_param' => array(
832
+ 'alt' => 'add_query_arg()',
833
+ 'version' => '3.3.0',
834
+ ),
835
+
836
+ // WP 3.4.0.
837
+ 'add_custom_background' => array(
838
+ 'alt' => 'add_theme_support( \'custom-background\', $args )',
839
+ 'version' => '3.4.0',
840
+ ),
841
+ 'add_custom_image_header' => array(
842
+ 'alt' => 'add_theme_support( \'custom-header\', $args )',
843
+ 'version' => '3.4.0',
844
+ ),
845
+ 'clean_page_cache' => array(
846
+ 'alt' => 'clean_post_cache()',
847
+ 'version' => '3.4.0',
848
+ ),
849
+ 'clean_pre' => array(
850
+ 'alt' => '',
851
+ 'version' => '3.4.0',
852
+ ),
853
+ 'current_theme_info' => array(
854
+ 'alt' => 'wp_get_theme()',
855
+ 'version' => '3.4.0',
856
+ ),
857
+ 'debug_fclose' => array(
858
+ 'alt' => 'error_log()',
859
+ 'version' => '3.4.0',
860
+ ),
861
+ 'debug_fopen' => array(
862
+ 'alt' => 'error_log()',
863
+ 'version' => '3.4.0',
864
+ ),
865
+ 'debug_fwrite' => array(
866
+ 'alt' => 'error_log()',
867
+ 'version' => '3.4.0',
868
+ ),
869
+ 'display_theme' => array(
870
+ 'alt' => '',
871
+ 'version' => '3.4.0',
872
+ ),
873
+ 'get_allowed_themes' => array(
874
+ 'alt' => 'wp_get_themes( array( \'allowed\' => true ) )',
875
+ 'version' => '3.4.0',
876
+ ),
877
+ 'get_broken_themes' => array(
878
+ 'alt' => 'wp_get_themes( array( \'errors\' => true )',
879
+ 'version' => '3.4.0',
880
+ ),
881
+ 'get_current_theme' => array(
882
+ 'alt' => 'wp_get_theme()',
883
+ 'version' => '3.4.0',
884
+ ),
885
+ 'get_site_allowed_themes' => array(
886
+ 'alt' => 'WP_Theme::get_allowed_on_network()',
887
+ 'version' => '3.4.0',
888
+ ),
889
+ 'get_theme' => array(
890
+ 'alt' => 'wp_get_theme( $stylesheet )',
891
+ 'version' => '3.4.0',
892
+ ),
893
+ 'get_theme_data' => array(
894
+ 'alt' => 'wp_get_theme()',
895
+ 'version' => '3.4.0',
896
+ ),
897
+ 'get_themes' => array(
898
+ 'alt' => 'wp_get_themes()',
899
+ 'version' => '3.4.0',
900
+ ),
901
+ 'logIO' => array(
902
+ 'alt' => 'error_log()',
903
+ 'version' => '3.4.0',
904
+ ),
905
+ 'remove_custom_background' => array(
906
+ 'alt' => 'remove_theme_support( \'custom-background\' )',
907
+ 'version' => '3.4.0',
908
+ ),
909
+ 'remove_custom_image_header' => array(
910
+ 'alt' => 'remove_theme_support( \'custom-header\' )',
911
+ 'version' => '3.4.0',
912
+ ),
913
+ 'update_page_cache' => array(
914
+ 'alt' => 'update_post_cache()',
915
+ 'version' => '3.4.0',
916
+ ),
917
+ 'wpmu_get_blog_allowedthemes' => array(
918
+ 'alt' => 'WP_Theme::get_allowed_on_site()',
919
+ 'version' => '3.4.0',
920
+ ),
921
+
922
+ // WP 3.4.1.
923
+ 'wp_explain_nonce' => array(
924
+ 'alt' => 'wp_nonce_ays()',
925
+ 'version' => '3.4.1',
926
+ ),
927
+
928
+ // WP 3.5.0.
929
+ '_flip_image_resource' => array(
930
+ 'alt' => 'WP_Image_Editor::flip()',
931
+ 'version' => '3.5.0',
932
+ ),
933
+ '_get_post_ancestors' => array(
934
+ 'alt' => '',
935
+ 'version' => '3.5.0',
936
+ ),
937
+ '_insert_into_post_button' => array(
938
+ 'alt' => '',
939
+ 'version' => '3.5.0',
940
+ ),
941
+ '_media_button' => array(
942
+ 'alt' => '',
943
+ 'version' => '3.5.0',
944
+ ),
945
+ '_rotate_image_resource' => array(
946
+ 'alt' => 'WP_Image_Editor::rotate()',
947
+ 'version' => '3.5.0',
948
+ ),
949
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
950
+ '_save_post_hook' => array(
951
+ 'alt' => '',
952
+ 'version' => '3.5.0',
953
+ ),
954
+ 'gd_edit_image_support' => array(
955
+ 'alt' => 'wp_image_editor_supports()',
956
+ 'version' => '3.5.0',
957
+ ),
958
+ 'get_default_page_to_edit' => array(
959
+ 'alt' => 'get_default_post_to_edit( \'page\' )',
960
+ 'version' => '3.5.0',
961
+ ),
962
+ 'get_post_to_edit' => array(
963
+ 'alt' => 'get_post()',
964
+ 'version' => '3.5.0',
965
+ ),
966
+ 'get_udims' => array(
967
+ 'alt' => 'wp_constrain_dimensions()',
968
+ 'version' => '3.5.0',
969
+ ),
970
+ 'image_resize' => array(
971
+ 'alt' => 'wp_get_image_editor()',
972
+ 'version' => '3.5.0',
973
+ ),
974
+ 'sticky_class' => array(
975
+ 'alt' => 'post_class()',
976
+ 'version' => '3.5.0',
977
+ ),
978
+ 'user_pass_ok' => array(
979
+ 'alt' => 'wp_authenticate()',
980
+ 'version' => '3.5.0',
981
+ ),
982
+ 'wp_cache_reset' => array(
983
+ 'alt' => 'wp_cache_switch_to_blog()',
984
+ 'version' => '3.5.0',
985
+ ),
986
+ 'wp_create_thumbnail' => array(
987
+ 'alt' => 'image_resize()',
988
+ 'version' => '3.5.0',
989
+ ),
990
+ 'wp_get_single_post' => array(
991
+ 'alt' => 'get_post()',
992
+ 'version' => '3.5.0',
993
+ ),
994
+ 'wp_load_image' => array(
995
+ 'alt' => 'wp_get_image_editor()',
996
+ 'version' => '3.5.0',
997
+ ),
998
+
999
+ // WP 3.6.0.
1000
+ 'get_user_id_from_string' => array(
1001
+ 'alt' => 'get_user_by()',
1002
+ 'version' => '3.6.0',
1003
+ ),
1004
+ 'wp_convert_bytes_to_hr' => array(
1005
+ 'alt' => 'size_format()',
1006
+ 'version' => '3.6.0',
1007
+ ),
1008
+ 'wp_nav_menu_locations_meta_box' => array(
1009
+ 'alt' => '',
1010
+ 'version' => '3.6.0',
1011
+ ),
1012
+
1013
+ // WP 3.7.0.
1014
+ '_search_terms_tidy' => array(
1015
+ 'alt' => '',
1016
+ 'version' => '3.7.0',
1017
+ ),
1018
+ 'get_blogaddress_by_domain' => array(
1019
+ 'alt' => '',
1020
+ 'version' => '3.7.0',
1021
+ ),
1022
+ 'the_attachment_links' => array(
1023
+ 'alt' => '',
1024
+ 'version' => '3.7.0',
1025
+ ),
1026
+ 'wp_update_core' => array(
1027
+ 'alt' => 'new Core_Upgrader();',
1028
+ 'version' => '3.7.0',
1029
+ ),
1030
+ 'wp_update_plugin' => array(
1031
+ 'alt' => 'new Plugin_Upgrader();',
1032
+ 'version' => '3.7.0',
1033
+ ),
1034
+ 'wp_update_theme' => array(
1035
+ 'alt' => 'new Theme_Upgrader();',
1036
+ 'version' => '3.7.0',
1037
+ ),
1038
+
1039
+ // WP 3.8.0.
1040
+ 'get_screen_icon' => array(
1041
+ 'alt' => '',
1042
+ 'version' => '3.8.0',
1043
+ ),
1044
+ 'screen_icon' => array(
1045
+ 'alt' => '',
1046
+ 'version' => '3.8.0',
1047
+ ),
1048
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1049
+ 'wp_dashboard_incoming_links' => array(
1050
+ 'alt' => '',
1051
+ 'version' => '3.8.0',
1052
+ ),
1053
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1054
+ 'wp_dashboard_incoming_links_control' => array(
1055
+ 'alt' => '',
1056
+ 'version' => '3.8.0',
1057
+ ),
1058
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1059
+ 'wp_dashboard_incoming_links_output' => array(
1060
+ 'alt' => '',
1061
+ 'version' => '3.8.0',
1062
+ ),
1063
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1064
+ 'wp_dashboard_plugins' => array(
1065
+ 'alt' => '',
1066
+ 'version' => '3.8.0',
1067
+ ),
1068
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1069
+ 'wp_dashboard_primary_control' => array(
1070
+ 'alt' => '',
1071
+ 'version' => '3.8.0',
1072
+ ),
1073
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1074
+ 'wp_dashboard_recent_comments_control' => array(
1075
+ 'alt' => '',
1076
+ 'version' => '3.8.0',
1077
+ ),
1078
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1079
+ 'wp_dashboard_secondary' => array(
1080
+ 'alt' => '',
1081
+ 'version' => '3.8.0',
1082
+ ),
1083
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1084
+ 'wp_dashboard_secondary_control' => array(
1085
+ 'alt' => '',
1086
+ 'version' => '3.8.0',
1087
+ ),
1088
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1089
+ 'wp_dashboard_secondary_output' => array(
1090
+ 'alt' => '',
1091
+ 'version' => '3.8.0',
1092
+ ),
1093
+
1094
+ // WP 3.9.0.
1095
+ '_relocate_children' => array(
1096
+ 'alt' => '',
1097
+ 'version' => '3.9.0',
1098
+ ),
1099
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1100
+ 'default_topic_count_text' => array(
1101
+ 'alt' => '',
1102
+ 'version' => '3.9.0',
1103
+ ),
1104
+ 'format_to_post' => array(
1105
+ 'alt' => '',
1106
+ 'version' => '3.9.0',
1107
+ ),
1108
+ 'get_current_site_name' => array(
1109
+ 'alt' => 'get_current_site()',
1110
+ 'version' => '3.9.0',
1111
+ ),
1112
+ 'rich_edit_exists' => array(
1113
+ 'alt' => '',
1114
+ 'version' => '3.9.0',
1115
+ ),
1116
+ 'wpmu_current_site' => array(
1117
+ 'alt' => '',
1118
+ 'version' => '3.9.0',
1119
+ ),
1120
+
1121
+ // WP 4.0.0.
1122
+ 'get_all_category_ids' => array(
1123
+ 'alt' => 'get_terms()',
1124
+ 'version' => '4.0.0',
1125
+ ),
1126
+ 'like_escape' => array(
1127
+ 'alt' => 'wpdb::esc_like()',
1128
+ 'version' => '4.0.0',
1129
+ ),
1130
+ 'url_is_accessable_via_ssl' => array(
1131
+ 'alt' => '',
1132
+ 'version' => '4.0.0',
1133
+ ),
1134
+
1135
+ // WP 4.1.0.
1136
+ // This is a method from the WP_Customize_Image_Control class. See #731.
1137
+ 'add_tab' => array(
1138
+ 'alt' => '',
1139
+ 'version' => '4.1.0',
1140
+ ),
1141
+ // This is a method from the WP_Customize_Image_Control class. See #731.
1142
+ 'prepare_control' => array(
1143
+ 'alt' => '',
1144
+ 'version' => '4.1.0',
1145
+ ),
1146
+ // This is a method from the WP_Customize_Image_Control class. See #731.
1147
+ 'print_tab_image' => array(
1148
+ 'alt' => '',
1149
+ 'version' => '4.1.0',
1150
+ ),
1151
+ // This is a method from the WP_Customize_Image_Control class. See #731.
1152
+ 'remove_tab' => array(
1153
+ 'alt' => '',
1154
+ 'version' => '4.1.0',
1155
+ ),
1156
+
1157
+ // WP 4.2.0.
1158
+ // This is a method from the WP_Customize_Widgets class. See #731.
1159
+ 'prepreview_added_sidebars_widgets' => array(
1160
+ 'alt' => 'the \'customize_dynamic_setting_args\' filter',
1161
+ 'version' => '4.2.0',
1162
+ ),
1163
+ // This is a method from the WP_Customize_Widgets class. See #731.
1164
+ 'prepreview_added_widget_instance' => array(
1165
+ 'alt' => 'the \'customize_dynamic_setting_args\' filter',
1166
+ 'version' => '4.2.0',
1167
+ ),
1168
+ // This is a method from the WP_Customize_Widgets class. See #731.
1169
+ 'remove_prepreview_filters' => array(
1170
+ 'alt' => 'the \'customize_dynamic_setting_args\' filter',
1171
+ 'version' => '4.2.0',
1172
+ ),
1173
+ // This is a method from the WP_Customize_Widgets class. See #731.
1174
+ 'setup_widget_addition_previews' => array(
1175
+ 'alt' => 'the \'customize_dynamic_setting_args\' filter',
1176
+ 'version' => '4.2.0',
1177
+ ),
1178
+
1179
+ // WP 4.3.0.
1180
+ '_preview_theme_stylesheet_filter' => array(
1181
+ 'alt' => '',
1182
+ 'version' => '4.3.0',
1183
+ ),
1184
+ '_preview_theme_template_filter' => array(
1185
+ 'alt' => '',
1186
+ 'version' => '4.3.0',
1187
+ ),
1188
+ 'preview_theme' => array(
1189
+ 'alt' => '',
1190
+ 'version' => '4.3.0',
1191
+ ),
1192
+ 'preview_theme_ob_filter' => array(
1193
+ 'alt' => '',
1194
+ 'version' => '4.3.0',
1195
+ ),
1196
+ 'preview_theme_ob_filter_callback' => array(
1197
+ 'alt' => '',
1198
+ 'version' => '4.3.0',
1199
+ ),
1200
+ // Verified; see https://core.trac.wordpress.org/ticket/41121, patch 3.
1201
+ 'wp_ajax_wp_fullscreen_save_post' => array(
1202
+ 'alt' => '',
1203
+ 'version' => '4.3.0',
1204
+ ),
1205
+ 'wp_htmledit_pre' => array(
1206
+ 'alt' => 'format_for_editor()',
1207
+ 'version' => '4.3.0',
1208
+ ),
1209
+ 'wp_richedit_pre' => array(
1210
+ 'alt' => 'format_for_editor()',
1211
+ 'version' => '4.3.0',
1212
+ ),
1213
+
1214
+ // WP 4.4.0.
1215
+ 'create_empty_blog' => array(
1216
+ 'alt' => '',
1217
+ 'version' => '4.4.0',
1218
+ ),
1219
+ 'force_ssl_login' => array(
1220
+ 'alt' => 'force_ssl_admin()',
1221
+ 'version' => '4.4.0',
1222
+ ),
1223
+ 'get_admin_users_for_domain' => array(
1224
+ 'alt' => '',
1225
+ 'version' => '4.4.0',
1226
+ ),
1227
+ 'post_permalink' => array(
1228
+ 'alt' => 'get_permalink()',
1229
+ 'version' => '4.4.0',
1230
+ ),
1231
+ 'wp_get_http' => array(
1232
+ 'alt' => 'the WP_Http class',
1233
+ 'version' => '4.4.0',
1234
+ ),
1235
+ // This is a method i.e. WP_Widget_Recent_Comments::flush_widget_cache() See #731.
1236
+ 'flush_widget_cache' => array(
1237
+ 'alt' => '',
1238
+ 'version' => '4.4.0',
1239
+ ),
1240
+
1241
+ // WP 4.5.0.
1242
+ 'add_object_page' => array(
1243
+ 'alt' => 'add_menu_page()',
1244
+ 'version' => '4.5.0',
1245
+ ),
1246
+ 'add_utility_page' => array(
1247
+ 'alt' => 'add_menu_page()',
1248
+ 'version' => '4.5.0',
1249
+ ),
1250
+ 'comments_popup_script' => array(
1251
+ 'alt' => '',
1252
+ 'version' => '4.5.0',
1253
+ ),
1254
+ 'get_comments_popup_template' => array(
1255
+ 'alt' => '',
1256
+ 'version' => '4.5.0',
1257
+ ),
1258
+ 'get_currentuserinfo' => array(
1259
+ 'alt' => 'wp_get_current_user()',
1260
+ 'version' => '4.5.0',
1261
+ ),
1262
+ 'is_comments_popup' => array(
1263
+ 'alt' => '',
1264
+ 'version' => '4.5.0',
1265
+ ),
1266
+ 'popuplinks' => array(
1267
+ 'alt' => '',
1268
+ 'version' => '4.5.0',
1269
+ ),
1270
+
1271
+ // WP 4.6.0.
1272
+ 'post_form_autocomplete_off' => array(
1273
+ 'alt' => '',
1274
+ 'version' => '4.6.0',
1275
+ ),
1276
+ 'wp_embed_handler_googlevideo' => array(
1277
+ 'alt' => '',
1278
+ 'version' => '4.6.0',
1279
+ ),
1280
+ 'wp_get_sites' => array(
1281
+ 'alt' => 'get_sites()',
1282
+ 'version' => '4.6.0',
1283
+ ),
1284
+
1285
+ // WP 4.7.0.
1286
+ '_sort_nav_menu_items' => array(
1287
+ 'alt' => 'wp_list_sort()',
1288
+ 'version' => '4.7.0',
1289
+ ),
1290
+ '_usort_terms_by_ID' => array(
1291
+ 'alt' => 'wp_list_sort()',
1292
+ 'version' => '4.7.0',
1293
+ ),
1294
+ '_usort_terms_by_name' => array(
1295
+ 'alt' => 'wp_list_sort()',
1296
+ 'version' => '4.7.0',
1297
+ ),
1298
+ 'get_paged_template' => array(
1299
+ 'alt' => '',
1300
+ 'version' => '4.7.0',
1301
+ ),
1302
+ 'wp_get_network' => array(
1303
+ 'alt' => 'get_network()',
1304
+ 'version' => '4.7.0',
1305
+ ),
1306
+ 'wp_kses_js_entities' => array(
1307
+ 'alt' => '',
1308
+ 'version' => '4.7.0',
1309
+ ),
1310
+
1311
+ // WP 4.8.0.
1312
+ 'wp_dashboard_plugins_output' => array(
1313
+ 'alt' => '',
1314
+ 'version' => '4.8.0',
1315
+ ),
1316
+
1317
+ // WP 4.9.0.
1318
+ 'get_shortcut_link' => array(
1319
+ 'alt' => '',
1320
+ 'version' => '4.9.0',
1321
+ ),
1322
+ 'is_user_option_local' => array(
1323
+ 'alt' => '',
1324
+ 'version' => '4.9.0',
1325
+ ),
1326
+ 'wp_ajax_press_this_add_category' => array(
1327
+ 'alt' => '',
1328
+ 'version' => '4.9.0',
1329
+ ),
1330
+ 'wp_ajax_press_this_save_post' => array(
1331
+ 'alt' => '',
1332
+ 'version' => '4.9.0',
1333
+ ),
1334
+
1335
+ // WP 5.1.0.
1336
+ 'insert_blog' => array(
1337
+ 'alt' => 'wp_insert_site()',
1338
+ 'version' => '5.1.0',
1339
+ ),
1340
+ 'install_blog' => array(
1341
+ 'alt' => '',
1342
+ 'version' => '5.1.0',
1343
+ ),
1344
+
1345
+ // WP 5.3.0.
1346
+ '_wp_json_prepare_data' => array(
1347
+ 'alt' => '',
1348
+ 'version' => '5.3.0',
1349
+ ),
1350
+ '_wp_privacy_requests_screen_options' => array(
1351
+ 'alt' => '',
1352
+ 'version' => '5.3.0',
1353
+ ),
1354
+ 'update_user_status' => array(
1355
+ 'alt' => 'wp_update_user()',
1356
+ 'version' => '5.3.0',
1357
+ ),
1358
+
1359
+ // WP 5.4.0.
1360
+ 'wp_get_user_request_data' => array(
1361
+ 'alt' => 'wp_get_user_request()',
1362
+ 'version' => '5.4.0',
1363
+ ),
1364
+
1365
+ // WP 5.5.0.
1366
+ '_wp_register_meta_args_whitelist' => array(
1367
+ 'alt' => '_wp_register_meta_args_allowed_list()',
1368
+ 'version' => '5.5.0',
1369
+ ),
1370
+ 'add_option_whitelist' => array(
1371
+ 'alt' => 'add_allowed_options()',
1372
+ 'version' => '5.5.0',
1373
+ ),
1374
+ 'remove_option_whitelist' => array(
1375
+ 'alt' => 'remove_allowed_options()',
1376
+ 'version' => '5.5.0',
1377
+ ),
1378
+ 'wp_blacklist_check' => array(
1379
+ 'alt' => 'wp_check_comment_disallowed_list()',
1380
+ 'version' => '5.5.0',
1381
+ ),
1382
+ 'wp_make_content_images_responsive' => array(
1383
+ 'alt' => 'wp_filter_content_tags()',
1384
+ 'version' => '5.5.0',
1385
+ ),
1386
+ 'wp_unregister_GLOBALS' => array(
1387
+ 'alt' => '',
1388
+ 'version' => '5.5.0',
1389
+ ),
1390
+
1391
+ // WP 5.7.0.
1392
+ 'noindex' => array(
1393
+ 'alt' => 'wp_robots_noindex()',
1394
+ 'version' => '5.7.0',
1395
+ ),
1396
+ 'wp_no_robots' => array(
1397
+ 'alt' => 'wp_robots_no_robots()',
1398
+ 'version' => '5.7.0',
1399
+ ),
1400
+ 'wp_sensitive_page_meta' => array(
1401
+ 'alt' => 'wp_robots_sensitive_page()',
1402
+ 'version' => '5.7.0',
1403
+ ),
1404
+
1405
+ // WP 5.8.0.
1406
+ '_excerpt_render_inner_columns_blocks' => array(
1407
+ 'alt' => '_excerpt_render_inner_blocks()',
1408
+ 'version' => '5.8.0',
1409
+ ),
1410
+
1411
+ // WP 5.9.0.
1412
+ 'readonly' => array(
1413
+ 'alt' => 'wp_readonly()',
1414
+ 'version' => '5.9.0',
1415
+ ),
1416
+
1417
+ // WP 5.9.1.
1418
+ 'wp_render_duotone_filter_preset' => array(
1419
+ 'alt' => 'wp_get_duotone_filter_property()',
1420
+ 'version' => '5.9.1',
1421
+ ),
1422
+
1423
+ // WP 6.0.0.
1424
+ 'image_attachment_fields_to_save' => array(
1425
+ 'alt' => '',
1426
+ 'version' => '6.0.0',
1427
+ ),
1428
+ 'wp_add_iframed_editor_assets_html' => array(
1429
+ 'alt' => '',
1430
+ 'version' => '6.0.0',
1431
+ ),
1432
+ 'wp_skip_border_serialization' => array(
1433
+ 'alt' => 'wp_should_skip_block_supports_serialization()',
1434
+ 'version' => '6.0.0',
1435
+ ),
1436
+ 'wp_skip_dimensions_serialization' => array(
1437
+ 'alt' => 'wp_should_skip_block_supports_serialization()',
1438
+ 'version' => '6.0.0',
1439
+ ),
1440
+ 'wp_skip_spacing_serialization' => array(
1441
+ 'alt' => 'wp_should_skip_block_supports_serialization()',
1442
+ 'version' => '6.0.0',
1443
+ ),
1444
+
1445
+ // WP 6.0.2.
1446
+ 'the_meta' => array(
1447
+ 'alt' => 'get_post_meta()',
1448
+ 'version' => '6.0.2',
1449
+ ),
1450
+
1451
+ // WP 6.0.3.
1452
+ // Verified; see https://core.trac.wordpress.org/ticket/56791#comment:10.
1453
+ '_filter_query_attachment_filenames' => array(
1454
+ 'alt' => 'add_filter( "wp_allow_query_attachment_by_filename", "__return_true" )',
1455
+ 'version' => '6.0.3',
1456
+ ),
1457
+
1458
+ // WP 6.1.0.
1459
+ '_get_path_to_translation' => array(
1460
+ 'alt' => 'WP_Textdomain_Registry',
1461
+ 'version' => '6.1.0',
1462
+ ),
1463
+ '_get_path_to_translation_from_lang_dir' => array(
1464
+ 'alt' => 'WP_Textdomain_Registry',
1465
+ 'version' => '6.1.0',
1466
+ ),
1467
+ '_wp_multiple_block_styles' => array(
1468
+ 'alt' => '',
1469
+ 'version' => '6.1.0',
1470
+ ),
1471
+ 'global_terms' => array(
1472
+ 'alt' => '',
1473
+ 'version' => '6.1.0',
1474
+ ),
1475
+ 'global_terms_enabled' => array(
1476
+ 'alt' => '',
1477
+ 'version' => '6.1.0',
1478
+ ),
1479
+ 'install_global_terms' => array(
1480
+ 'alt' => '',
1481
+ 'version' => '6.1.0',
1482
+ ),
1483
+ 'sync_category_tag_slugs' => array(
1484
+ 'alt' => '',
1485
+ 'version' => '6.1.0',
1486
+ ),
1487
+ 'wp_get_attachment_thumb_file' => array(
1488
+ 'alt' => '',
1489
+ 'version' => '6.1.0',
1490
+ ),
1491
+ 'wp_typography_get_css_variable_inline_style' => array(
1492
+ 'alt' => 'wp_style_engine_get_styles()',
1493
+ 'version' => '6.1.0',
1494
+ ),
1495
+
1496
+ // WP 6.2.0.
1497
+ '_resolve_home_block_template' => array(
1498
+ 'alt' => '',
1499
+ 'version' => '6.2.0',
1500
+ ),
1501
+ 'get_page_by_title' => array(
1502
+ 'alt' => 'WP_Query',
1503
+ 'version' => '6.2.0',
1504
+ ),
1505
+
1506
+ // WP 6.3.0.
1507
+ '_wp_tinycolor_bound_alpha' => array(
1508
+ 'alt' => '',
1509
+ 'version' => '6.3.0',
1510
+ ),
1511
+ 'block_core_navigation_get_classic_menu_fallback' => array(
1512
+ 'alt' => 'WP_Navigation_Fallback::get_classic_menu_fallback',
1513
+ 'version' => '6.3.0',
1514
+ ),
1515
+ 'block_core_navigation_get_classic_menu_fallback_blocks' => array(
1516
+ 'alt' => 'WP_Navigation_Fallback::get_classic_menu_fallback_blocks',
1517
+ 'version' => '6.3.0',
1518
+ ),
1519
+ 'block_core_navigation_get_most_recently_published_navigation' => array(
1520
+ 'alt' => 'WP_Navigation_Fallback::get_most_recently_published_navigation',
1521
+ 'version' => '6.3.0',
1522
+ ),
1523
+ 'block_core_navigation_maybe_use_classic_menu_fallback' => array(
1524
+ 'alt' => 'WP_Navigation_Fallback::create_classic_menu_fallback',
1525
+ 'version' => '6.3.0',
1526
+ ),
1527
+ 'block_core_navigation_parse_blocks_from_menu_items' => array(
1528
+ 'alt' => 'WP_Navigation_Fallback::parse_blocks_from_menu_items',
1529
+ 'version' => '6.3.0',
1530
+ ),
1531
+ 'block_core_navigation_submenu_build_css_colors' => array(
1532
+ 'alt' => 'wp_apply_colors_support()',
1533
+ 'version' => '6.3.0',
1534
+ ),
1535
+ 'wlwmanifest_link' => array(
1536
+ 'alt' => '',
1537
+ 'version' => '6.3.0',
1538
+ ),
1539
+ 'wp_get_duotone_filter_id' => array(
1540
+ 'alt' => '',
1541
+ 'version' => '6.3.0',
1542
+ ),
1543
+ 'wp_get_duotone_filter_property' => array(
1544
+ 'alt' => '',
1545
+ 'version' => '6.3.0',
1546
+ ),
1547
+ 'wp_get_duotone_filter_svg' => array(
1548
+ 'alt' => '',
1549
+ 'version' => '6.3.0',
1550
+ ),
1551
+ 'wp_get_global_styles_svg_filters' => array(
1552
+ 'alt' => '',
1553
+ 'version' => '6.3.0',
1554
+ ),
1555
+ 'wp_get_loading_attr_default' => array(
1556
+ 'alt' => 'wp_get_loading_optimization_attributes()',
1557
+ 'version' => '6.3.0',
1558
+ ),
1559
+ 'wp_global_styles_render_svg_filters' => array(
1560
+ 'alt' => '',
1561
+ 'version' => '6.3.0',
1562
+ ),
1563
+ 'wp_img_tag_add_loading_attr' => array(
1564
+ 'alt' => 'wp_img_tag_add_loading_optimization_attrs()',
1565
+ 'version' => '6.3.0',
1566
+ ),
1567
+ 'wp_queue_comments_for_comment_meta_lazyload' => array(
1568
+ 'alt' => 'wp_lazyload_comment_meta()',
1569
+ 'version' => '6.3.0',
1570
+ ),
1571
+ 'wp_register_duotone_support' => array(
1572
+ 'alt' => 'WP_Duotone::register_duotone_support()',
1573
+ 'version' => '6.3.0',
1574
+ ),
1575
+ 'wp_render_duotone_support' => array(
1576
+ 'alt' => 'WP_Duotone::render_duotone_support()',
1577
+ 'version' => '6.3.0',
1578
+ ),
1579
+ 'wp_tinycolor_bound01' => array(
1580
+ 'alt' => '',
1581
+ 'version' => '6.3.0',
1582
+ ),
1583
+ 'wp_tinycolor_hsl_to_rgb' => array(
1584
+ 'alt' => '',
1585
+ 'version' => '6.3.0',
1586
+ ),
1587
+ 'wp_tinycolor_hue_to_rgb' => array(
1588
+ 'alt' => '',
1589
+ 'version' => '6.3.0',
1590
+ ),
1591
+ 'wp_tinycolor_rgb_to_rgb' => array(
1592
+ 'alt' => '',
1593
+ 'version' => '6.3.0',
1594
+ ),
1595
+ 'wp_tinycolor_string_to_rgb' => array(
1596
+ 'alt' => '',
1597
+ 'version' => '6.3.0',
1598
+ ),
1599
+
1600
+ // WP 6.4.0.
1601
+ '_admin_bar_bump_cb' => array(
1602
+ 'alt' => 'wp_enqueue_admin_bar_bump_styles()',
1603
+ 'version' => '6.4.0',
1604
+ ),
1605
+ '_inject_theme_attribute_in_block_template_content' => array(
1606
+ 'alt' => 'traverse_and_serialize_blocks( parse_blocks( $template_content ), \'_inject_theme_attribute_in_template_part_block\' )',
1607
+ 'version' => '6.4.0',
1608
+ ),
1609
+ '_remove_theme_attribute_in_block_template_content' => array(
1610
+ 'alt' => 'traverse_and_serialize_blocks( parse_blocks( $template_content ), \'_remove_theme_attribute_from_template_part_block\' )',
1611
+ 'version' => '6.4.0',
1612
+ ),
1613
+ '_wp_theme_json_webfonts_handler' => array(
1614
+ 'alt' => 'wp_print_font_faces()',
1615
+ 'version' => '6.4.0',
1616
+ ),
1617
+ 'print_embed_styles' => array(
1618
+ 'alt' => 'wp_enqueue_embed_styles()',
1619
+ 'version' => '6.4.0',
1620
+ ),
1621
+ 'print_emoji_styles' => array(
1622
+ 'alt' => 'wp_enqueue_emoji_styles()',
1623
+ 'version' => '6.4.0',
1624
+ ),
1625
+ 'the_block_template_skip_link' => array(
1626
+ 'alt' => 'wp_enqueue_block_template_skip_link()',
1627
+ 'version' => '6.4.0',
1628
+ ),
1629
+ 'wp_admin_bar_header' => array(
1630
+ 'alt' => 'wp_enqueue_admin_bar_header_styles()',
1631
+ 'version' => '6.4.0',
1632
+ ),
1633
+ 'wp_img_tag_add_decoding_attr' => array(
1634
+ 'alt' => 'wp_img_tag_add_loading_optimization_attrs()',
1635
+ 'version' => '6.4.0',
1636
+ ),
1637
+ 'wp_update_https_detection_errors' => array(
1638
+ 'alt' => 'wp_get_https_detection_errors()',
1639
+ 'version' => '6.4.0',
1640
+ ),
1641
+
1642
+ // WP 6.5.0.
1643
+ 'block_core_file_ensure_interactivity_dependency' => array(
1644
+ 'alt' => 'wp_register_script_module()',
1645
+ 'version' => '6.5.0',
1646
+ ),
1647
+ 'block_core_image_ensure_interactivity_dependency' => array(
1648
+ 'alt' => 'wp_register_script_module()',
1649
+ 'version' => '6.5.0',
1650
+ ),
1651
+ 'block_core_query_ensure_interactivity_dependency' => array(
1652
+ 'alt' => 'wp_register_script_module()',
1653
+ 'version' => '6.5.0',
1654
+ ),
1655
+ );
1656
+
1657
+ /**
1658
+ * Groups of functions to restrict.
1659
+ *
1660
+ * @return array
1661
+ */
1662
+ public function getGroups() {
1663
+ // Make sure all array keys are lowercase.
1664
+ $this->deprecated_functions = array_change_key_case( $this->deprecated_functions, \CASE_LOWER );
1665
+
1666
+ return array(
1667
+ 'deprecated_functions' => array(
1668
+ 'functions' => array_keys( $this->deprecated_functions ),
1669
+ ),
1670
+ );
1671
+ }
1672
+
1673
+ /**
1674
+ * Process a matched token.
1675
+ *
1676
+ * @param int $stackPtr The position of the current token in the stack.
1677
+ * @param string $group_name The name of the group which was matched. Will
1678
+ * always be 'deprecated_functions'.
1679
+ * @param string $matched_content The token content (function name) which was matched
1680
+ * in lowercase.
1681
+ *
1682
+ * @return void
1683
+ */
1684
+ public function process_matched_token( $stackPtr, $group_name, $matched_content ) {
1685
+
1686
+ $this->set_minimum_wp_version();
1687
+
1688
+ $message = '%s() has been deprecated since WordPress version %s.';
1689
+ $data = array(
1690
+ $this->tokens[ $stackPtr ]['content'],
1691
+ $this->deprecated_functions[ $matched_content ]['version'],
1692
+ );
1693
+
1694
+ if ( ! empty( $this->deprecated_functions[ $matched_content ]['alt'] ) ) {
1695
+ $message .= ' Use %s instead.';
1696
+ $data[] = $this->deprecated_functions[ $matched_content ]['alt'];
1697
+ }
1698
+
1699
+ MessageHelper::addMessage(
1700
+ $this->phpcsFile,
1701
+ $message,
1702
+ $stackPtr,
1703
+ ( $this->wp_version_compare( $this->deprecated_functions[ $matched_content ]['version'], $this->minimum_wp_version, '<' ) ),
1704
+ MessageHelper::stringToErrorcode( $matched_content . 'Found' ),
1705
+ $data
1706
+ );
1707
+ }
1708
+ }