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,2954 @@
1
+ <?php
2
+ /**
3
+ * Represents a piece of content being checked during the run.
4
+ *
5
+ * @author Greg Sherwood <gsherwood@squiz.net>
6
+ * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
7
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
8
+ */
9
+
10
+ namespace PHP_CodeSniffer\Files;
11
+
12
+ use PHP_CodeSniffer\Config;
13
+ use PHP_CodeSniffer\Exceptions\RuntimeException;
14
+ use PHP_CodeSniffer\Exceptions\TokenizerException;
15
+ use PHP_CodeSniffer\Fixer;
16
+ use PHP_CodeSniffer\Ruleset;
17
+ use PHP_CodeSniffer\Util\Common;
18
+ use PHP_CodeSniffer\Util\Tokens;
19
+
20
+ class File
21
+ {
22
+
23
+ /**
24
+ * The absolute path to the file associated with this object.
25
+ *
26
+ * @var string
27
+ */
28
+ public $path = '';
29
+
30
+ /**
31
+ * The content of the file.
32
+ *
33
+ * @var string
34
+ */
35
+ protected $content = '';
36
+
37
+ /**
38
+ * The config data for the run.
39
+ *
40
+ * @var \PHP_CodeSniffer\Config
41
+ */
42
+ public $config = null;
43
+
44
+ /**
45
+ * The ruleset used for the run.
46
+ *
47
+ * @var \PHP_CodeSniffer\Ruleset
48
+ */
49
+ public $ruleset = null;
50
+
51
+ /**
52
+ * If TRUE, the entire file is being ignored.
53
+ *
54
+ * @var boolean
55
+ */
56
+ public $ignored = false;
57
+
58
+ /**
59
+ * The EOL character this file uses.
60
+ *
61
+ * @var string
62
+ */
63
+ public $eolChar = '';
64
+
65
+ /**
66
+ * The Fixer object to control fixing errors.
67
+ *
68
+ * @var \PHP_CodeSniffer\Fixer
69
+ */
70
+ public $fixer = null;
71
+
72
+ /**
73
+ * The tokenizer being used for this file.
74
+ *
75
+ * @var \PHP_CodeSniffer\Tokenizers\Tokenizer
76
+ */
77
+ public $tokenizer = null;
78
+
79
+ /**
80
+ * The name of the tokenizer being used for this file.
81
+ *
82
+ * @var string
83
+ */
84
+ public $tokenizerType = 'PHP';
85
+
86
+ /**
87
+ * Was the file loaded from cache?
88
+ *
89
+ * If TRUE, the file was loaded from a local cache.
90
+ * If FALSE, the file was tokenized and processed fully.
91
+ *
92
+ * @var boolean
93
+ */
94
+ public $fromCache = false;
95
+
96
+ /**
97
+ * The number of tokens in this file.
98
+ *
99
+ * Stored here to save calling count() everywhere.
100
+ *
101
+ * @var integer
102
+ */
103
+ public $numTokens = 0;
104
+
105
+ /**
106
+ * The tokens stack map.
107
+ *
108
+ * @var array
109
+ */
110
+ protected $tokens = [];
111
+
112
+ /**
113
+ * The errors raised from sniffs.
114
+ *
115
+ * @var array
116
+ * @see getErrors()
117
+ */
118
+ protected $errors = [];
119
+
120
+ /**
121
+ * The warnings raised from sniffs.
122
+ *
123
+ * @var array
124
+ * @see getWarnings()
125
+ */
126
+ protected $warnings = [];
127
+
128
+ /**
129
+ * The metrics recorded by sniffs.
130
+ *
131
+ * @var array
132
+ * @see getMetrics()
133
+ */
134
+ protected $metrics = [];
135
+
136
+ /**
137
+ * The metrics recorded for each token.
138
+ *
139
+ * Stops the same metric being recorded for the same token twice.
140
+ *
141
+ * @var array
142
+ * @see getMetrics()
143
+ */
144
+ private $metricTokens = [];
145
+
146
+ /**
147
+ * The total number of errors raised.
148
+ *
149
+ * @var integer
150
+ */
151
+ protected $errorCount = 0;
152
+
153
+ /**
154
+ * The total number of warnings raised.
155
+ *
156
+ * @var integer
157
+ */
158
+ protected $warningCount = 0;
159
+
160
+ /**
161
+ * The total number of errors and warnings that can be fixed.
162
+ *
163
+ * @var integer
164
+ */
165
+ protected $fixableCount = 0;
166
+
167
+ /**
168
+ * The total number of errors and warnings that were fixed.
169
+ *
170
+ * @var integer
171
+ */
172
+ protected $fixedCount = 0;
173
+
174
+ /**
175
+ * TRUE if errors are being replayed from the cache.
176
+ *
177
+ * @var boolean
178
+ */
179
+ protected $replayingErrors = false;
180
+
181
+ /**
182
+ * An array of sniffs that are being ignored.
183
+ *
184
+ * @var array
185
+ */
186
+ protected $ignoredListeners = [];
187
+
188
+ /**
189
+ * An array of message codes that are being ignored.
190
+ *
191
+ * @var array
192
+ */
193
+ protected $ignoredCodes = [];
194
+
195
+ /**
196
+ * An array of sniffs listening to this file's processing.
197
+ *
198
+ * @var \PHP_CodeSniffer\Sniffs\Sniff[]
199
+ */
200
+ protected $listeners = [];
201
+
202
+ /**
203
+ * The class name of the sniff currently processing the file.
204
+ *
205
+ * @var string
206
+ */
207
+ protected $activeListener = '';
208
+
209
+ /**
210
+ * An array of sniffs being processed and how long they took.
211
+ *
212
+ * @var array
213
+ * @see getListenerTimes()
214
+ */
215
+ protected $listenerTimes = [];
216
+
217
+ /**
218
+ * A cache of often used config settings to improve performance.
219
+ *
220
+ * Storing them here saves 10k+ calls to __get() in the Config class.
221
+ *
222
+ * @var array
223
+ */
224
+ protected $configCache = [];
225
+
226
+
227
+ /**
228
+ * Constructs a file.
229
+ *
230
+ * @param string $path The absolute path to the file to process.
231
+ * @param \PHP_CodeSniffer\Ruleset $ruleset The ruleset used for the run.
232
+ * @param \PHP_CodeSniffer\Config $config The config data for the run.
233
+ *
234
+ * @return void
235
+ */
236
+ public function __construct($path, Ruleset $ruleset, Config $config)
237
+ {
238
+ $this->path = $path;
239
+ $this->ruleset = $ruleset;
240
+ $this->config = $config;
241
+ $this->fixer = new Fixer();
242
+
243
+ $parts = explode('.', $path);
244
+ $extension = array_pop($parts);
245
+ if (isset($config->extensions[$extension]) === true) {
246
+ $this->tokenizerType = $config->extensions[$extension];
247
+ } else {
248
+ // Revert to default.
249
+ $this->tokenizerType = 'PHP';
250
+ }
251
+
252
+ $this->configCache['cache'] = $this->config->cache;
253
+ $this->configCache['sniffs'] = array_map('strtolower', $this->config->sniffs);
254
+ $this->configCache['exclude'] = array_map('strtolower', $this->config->exclude);
255
+ $this->configCache['errorSeverity'] = $this->config->errorSeverity;
256
+ $this->configCache['warningSeverity'] = $this->config->warningSeverity;
257
+ $this->configCache['recordErrors'] = $this->config->recordErrors;
258
+ $this->configCache['trackTime'] = $this->config->trackTime;
259
+ $this->configCache['ignorePatterns'] = $this->ruleset->ignorePatterns;
260
+ $this->configCache['includePatterns'] = $this->ruleset->includePatterns;
261
+
262
+ }//end __construct()
263
+
264
+
265
+ /**
266
+ * Set the content of the file.
267
+ *
268
+ * Setting the content also calculates the EOL char being used.
269
+ *
270
+ * @param string $content The file content.
271
+ *
272
+ * @return void
273
+ */
274
+ public function setContent($content)
275
+ {
276
+ $this->content = $content;
277
+ $this->tokens = [];
278
+
279
+ try {
280
+ $this->eolChar = Common::detectLineEndings($content);
281
+ } catch (RuntimeException $e) {
282
+ $this->addWarningOnLine($e->getMessage(), 1, 'Internal.DetectLineEndings');
283
+ return;
284
+ }
285
+
286
+ }//end setContent()
287
+
288
+
289
+ /**
290
+ * Reloads the content of the file.
291
+ *
292
+ * By default, we have no idea where our content comes from,
293
+ * so we can't do anything.
294
+ *
295
+ * @return void
296
+ */
297
+ public function reloadContent()
298
+ {
299
+
300
+ }//end reloadContent()
301
+
302
+
303
+ /**
304
+ * Disables caching of this file.
305
+ *
306
+ * @return void
307
+ */
308
+ public function disableCaching()
309
+ {
310
+ $this->configCache['cache'] = false;
311
+
312
+ }//end disableCaching()
313
+
314
+
315
+ /**
316
+ * Starts the stack traversal and tells listeners when tokens are found.
317
+ *
318
+ * @return void
319
+ */
320
+ public function process()
321
+ {
322
+ if ($this->ignored === true) {
323
+ return;
324
+ }
325
+
326
+ $this->errors = [];
327
+ $this->warnings = [];
328
+ $this->errorCount = 0;
329
+ $this->warningCount = 0;
330
+ $this->fixableCount = 0;
331
+
332
+ $this->parse();
333
+
334
+ // Check if tokenizer errors cause this file to be ignored.
335
+ if ($this->ignored === true) {
336
+ return;
337
+ }
338
+
339
+ $this->fixer->startFile($this);
340
+
341
+ if (PHP_CODESNIFFER_VERBOSITY > 2) {
342
+ echo "\t*** START TOKEN PROCESSING ***".PHP_EOL;
343
+ }
344
+
345
+ $foundCode = false;
346
+ $listenerIgnoreTo = [];
347
+ $inTests = defined('PHP_CODESNIFFER_IN_TESTS');
348
+ $checkAnnotations = $this->config->annotations;
349
+ $annotationErrors = [];
350
+
351
+ // Foreach of the listeners that have registered to listen for this
352
+ // token, get them to process it.
353
+ foreach ($this->tokens as $stackPtr => $token) {
354
+ // Check for ignored lines.
355
+ if ($checkAnnotations === true
356
+ && ($token['code'] === T_COMMENT
357
+ || $token['code'] === T_PHPCS_IGNORE_FILE
358
+ || $token['code'] === T_PHPCS_SET
359
+ || $token['code'] === T_DOC_COMMENT_STRING
360
+ || $token['code'] === T_DOC_COMMENT_TAG
361
+ || ($inTests === true && $token['code'] === T_INLINE_HTML))
362
+ ) {
363
+ $commentText = ltrim($this->tokens[$stackPtr]['content'], " \t/*#");
364
+ $commentTextLower = strtolower($commentText);
365
+ if (strpos($commentText, '@codingStandards') !== false) {
366
+ if (strpos($commentText, '@codingStandardsIgnoreFile') !== false) {
367
+ // Ignoring the whole file, just a little late.
368
+ $this->errors = [];
369
+ $this->warnings = [];
370
+ $this->errorCount = 0;
371
+ $this->warningCount = 0;
372
+ $this->fixableCount = 0;
373
+ return;
374
+ } else if (strpos($commentText, '@codingStandardsChangeSetting') !== false) {
375
+ $start = strpos($commentText, '@codingStandardsChangeSetting');
376
+ $comment = substr($commentText, ($start + 30));
377
+ $parts = explode(' ', $comment);
378
+ if (count($parts) >= 2) {
379
+ $sniffParts = explode('.', $parts[0]);
380
+ if (count($sniffParts) >= 3) {
381
+ // If the sniff code is not known to us, it has not been registered in this run.
382
+ // But don't throw an error as it could be there for a different standard to use.
383
+ if (isset($this->ruleset->sniffCodes[$parts[0]]) === true) {
384
+ $listenerCode = array_shift($parts);
385
+ $propertyCode = array_shift($parts);
386
+ $settings = [
387
+ 'value' => rtrim(implode(' ', $parts), " */\r\n"),
388
+ 'scope' => 'sniff',
389
+ ];
390
+ $listenerClass = $this->ruleset->sniffCodes[$listenerCode];
391
+ $this->ruleset->setSniffProperty($listenerClass, $propertyCode, $settings);
392
+ }
393
+ }
394
+ }
395
+ }//end if
396
+ } else if (substr($commentTextLower, 0, 16) === 'phpcs:ignorefile'
397
+ || substr($commentTextLower, 0, 17) === '@phpcs:ignorefile'
398
+ ) {
399
+ // Ignoring the whole file, just a little late.
400
+ $this->errors = [];
401
+ $this->warnings = [];
402
+ $this->errorCount = 0;
403
+ $this->warningCount = 0;
404
+ $this->fixableCount = 0;
405
+ return;
406
+ } else if (substr($commentTextLower, 0, 9) === 'phpcs:set'
407
+ || substr($commentTextLower, 0, 10) === '@phpcs:set'
408
+ ) {
409
+ if (isset($token['sniffCode']) === true) {
410
+ $listenerCode = $token['sniffCode'];
411
+ if (isset($this->ruleset->sniffCodes[$listenerCode]) === true) {
412
+ $propertyCode = $token['sniffProperty'];
413
+ $settings = [
414
+ 'value' => $token['sniffPropertyValue'],
415
+ 'scope' => 'sniff',
416
+ ];
417
+ $listenerClass = $this->ruleset->sniffCodes[$listenerCode];
418
+ try {
419
+ $this->ruleset->setSniffProperty($listenerClass, $propertyCode, $settings);
420
+ } catch (RuntimeException $e) {
421
+ // Non-existant property being set via an inline annotation.
422
+ // This is typically a PHPCS test case file, but we can't throw an error on the annotation
423
+ // line as it would get ignored. We also don't want this error to block
424
+ // the scan of the current file, so collect these and throw later.
425
+ $annotationErrors[] = 'Line '.$token['line'].': '.str_replace('Ruleset invalid. ', '', $e->getMessage());
426
+ }
427
+ }
428
+ }
429
+ }//end if
430
+ }//end if
431
+
432
+ if (PHP_CODESNIFFER_VERBOSITY > 2) {
433
+ $type = $token['type'];
434
+ $content = Common::prepareForOutput($token['content']);
435
+ echo "\t\tProcess token $stackPtr: $type => $content".PHP_EOL;
436
+ }
437
+
438
+ if ($token['code'] !== T_INLINE_HTML) {
439
+ $foundCode = true;
440
+ }
441
+
442
+ if (isset($this->ruleset->tokenListeners[$token['code']]) === false) {
443
+ continue;
444
+ }
445
+
446
+ foreach ($this->ruleset->tokenListeners[$token['code']] as $listenerData) {
447
+ if (isset($this->ignoredListeners[$listenerData['class']]) === true
448
+ || (isset($listenerIgnoreTo[$listenerData['class']]) === true
449
+ && $listenerIgnoreTo[$listenerData['class']] > $stackPtr)
450
+ ) {
451
+ // This sniff is ignoring past this token, or the whole file.
452
+ continue;
453
+ }
454
+
455
+ // Make sure this sniff supports the tokenizer
456
+ // we are currently using.
457
+ $class = $listenerData['class'];
458
+
459
+ if (isset($listenerData['tokenizers'][$this->tokenizerType]) === false) {
460
+ continue;
461
+ }
462
+
463
+ if (trim($this->path, '\'"') !== 'STDIN') {
464
+ // If the file path matches one of our ignore patterns, skip it.
465
+ // While there is support for a type of each pattern
466
+ // (absolute or relative) we don't actually support it here.
467
+ foreach ($listenerData['ignore'] as $pattern) {
468
+ // We assume a / directory separator, as do the exclude rules
469
+ // most developers write, so we need a special case for any system
470
+ // that is different.
471
+ if (DIRECTORY_SEPARATOR === '\\') {
472
+ $pattern = str_replace('/', '\\\\', $pattern);
473
+ }
474
+
475
+ $pattern = '`'.$pattern.'`i';
476
+ if (preg_match($pattern, $this->path) === 1) {
477
+ $this->ignoredListeners[$class] = true;
478
+ continue(2);
479
+ }
480
+ }
481
+
482
+ // If the file path does not match one of our include patterns, skip it.
483
+ // While there is support for a type of each pattern
484
+ // (absolute or relative) we don't actually support it here.
485
+ if (empty($listenerData['include']) === false) {
486
+ $included = false;
487
+ foreach ($listenerData['include'] as $pattern) {
488
+ // We assume a / directory separator, as do the exclude rules
489
+ // most developers write, so we need a special case for any system
490
+ // that is different.
491
+ if (DIRECTORY_SEPARATOR === '\\') {
492
+ $pattern = str_replace('/', '\\\\', $pattern);
493
+ }
494
+
495
+ $pattern = '`'.$pattern.'`i';
496
+ if (preg_match($pattern, $this->path) === 1) {
497
+ $included = true;
498
+ break;
499
+ }
500
+ }
501
+
502
+ if ($included === false) {
503
+ $this->ignoredListeners[$class] = true;
504
+ continue;
505
+ }
506
+ }//end if
507
+ }//end if
508
+
509
+ $this->activeListener = $class;
510
+
511
+ if ($this->configCache['trackTime'] === true) {
512
+ $startTime = microtime(true);
513
+ }
514
+
515
+ if (PHP_CODESNIFFER_VERBOSITY > 2) {
516
+ echo "\t\t\tProcessing ".$this->activeListener.'... ';
517
+ }
518
+
519
+ $ignoreTo = $this->ruleset->sniffs[$class]->process($this, $stackPtr);
520
+ if ($ignoreTo !== null) {
521
+ $listenerIgnoreTo[$this->activeListener] = $ignoreTo;
522
+ }
523
+
524
+ if ($this->configCache['trackTime'] === true) {
525
+ $timeTaken = (microtime(true) - $startTime);
526
+ if (isset($this->listenerTimes[$this->activeListener]) === false) {
527
+ $this->listenerTimes[$this->activeListener] = 0;
528
+ }
529
+
530
+ $this->listenerTimes[$this->activeListener] += $timeTaken;
531
+ }
532
+
533
+ if (PHP_CODESNIFFER_VERBOSITY > 2) {
534
+ $timeTaken = round(($timeTaken), 4);
535
+ echo "DONE in $timeTaken seconds".PHP_EOL;
536
+ }
537
+
538
+ $this->activeListener = '';
539
+ }//end foreach
540
+ }//end foreach
541
+
542
+ // If short open tags are off but the file being checked uses
543
+ // short open tags, the whole content will be inline HTML
544
+ // and nothing will be checked. So try and handle this case.
545
+ // We don't show this error for STDIN because we can't be sure the content
546
+ // actually came directly from the user. It could be something like
547
+ // refs from a Git pre-push hook.
548
+ if ($foundCode === false && $this->tokenizerType === 'PHP' && $this->path !== 'STDIN') {
549
+ $shortTags = (bool) ini_get('short_open_tag');
550
+ if ($shortTags === false) {
551
+ $error = 'No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.';
552
+ $this->addWarning($error, null, 'Internal.NoCodeFound');
553
+ }
554
+ }
555
+
556
+ if ($annotationErrors !== []) {
557
+ $error = 'Encountered invalid inline phpcs:set annotations. Found:'.PHP_EOL;
558
+ $error .= implode(PHP_EOL, $annotationErrors);
559
+
560
+ $this->addWarning($error, null, 'Internal.PropertyDoesNotExist');
561
+ }
562
+
563
+ if (PHP_CODESNIFFER_VERBOSITY > 2) {
564
+ echo "\t*** END TOKEN PROCESSING ***".PHP_EOL;
565
+ echo "\t*** START SNIFF PROCESSING REPORT ***".PHP_EOL;
566
+
567
+ arsort($this->listenerTimes, SORT_NUMERIC);
568
+ foreach ($this->listenerTimes as $listener => $timeTaken) {
569
+ echo "\t$listener: ".round(($timeTaken), 4).' secs'.PHP_EOL;
570
+ }
571
+
572
+ echo "\t*** END SNIFF PROCESSING REPORT ***".PHP_EOL;
573
+ }
574
+
575
+ $this->fixedCount += $this->fixer->getFixCount();
576
+
577
+ }//end process()
578
+
579
+
580
+ /**
581
+ * Tokenizes the file and prepares it for the test run.
582
+ *
583
+ * @return void
584
+ */
585
+ public function parse()
586
+ {
587
+ if (empty($this->tokens) === false) {
588
+ // File has already been parsed.
589
+ return;
590
+ }
591
+
592
+ try {
593
+ $tokenizerClass = 'PHP_CodeSniffer\Tokenizers\\'.$this->tokenizerType;
594
+ $this->tokenizer = new $tokenizerClass($this->content, $this->config, $this->eolChar);
595
+ $this->tokens = $this->tokenizer->getTokens();
596
+ } catch (TokenizerException $e) {
597
+ $this->ignored = true;
598
+ $this->addWarning($e->getMessage(), null, 'Internal.Tokenizer.Exception');
599
+ if (PHP_CODESNIFFER_VERBOSITY > 0) {
600
+ echo "[$this->tokenizerType => tokenizer error]... ";
601
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
602
+ echo PHP_EOL;
603
+ }
604
+ }
605
+
606
+ return;
607
+ }
608
+
609
+ $this->numTokens = count($this->tokens);
610
+
611
+ // Check for mixed line endings as these can cause tokenizer errors and we
612
+ // should let the user know that the results they get may be incorrect.
613
+ // This is done by removing all backslashes, removing the newline char we
614
+ // detected, then converting newlines chars into text. If any backslashes
615
+ // are left at the end, we have additional newline chars in use.
616
+ $contents = str_replace('\\', '', $this->content);
617
+ $contents = str_replace($this->eolChar, '', $contents);
618
+ $contents = str_replace("\n", '\n', $contents);
619
+ $contents = str_replace("\r", '\r', $contents);
620
+ if (strpos($contents, '\\') !== false) {
621
+ $error = 'File has mixed line endings; this may cause incorrect results';
622
+ $this->addWarningOnLine($error, 1, 'Internal.LineEndings.Mixed');
623
+ }
624
+
625
+ if (PHP_CODESNIFFER_VERBOSITY > 0) {
626
+ if ($this->numTokens === 0) {
627
+ $numLines = 0;
628
+ } else {
629
+ $numLines = $this->tokens[($this->numTokens - 1)]['line'];
630
+ }
631
+
632
+ echo "[$this->tokenizerType => $this->numTokens tokens in $numLines lines]... ";
633
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
634
+ echo PHP_EOL;
635
+ }
636
+ }
637
+
638
+ }//end parse()
639
+
640
+
641
+ /**
642
+ * Returns the token stack for this file.
643
+ *
644
+ * @return array
645
+ */
646
+ public function getTokens()
647
+ {
648
+ return $this->tokens;
649
+
650
+ }//end getTokens()
651
+
652
+
653
+ /**
654
+ * Remove vars stored in this file that are no longer required.
655
+ *
656
+ * @return void
657
+ */
658
+ public function cleanUp()
659
+ {
660
+ $this->listenerTimes = null;
661
+ $this->content = null;
662
+ $this->tokens = null;
663
+ $this->metricTokens = null;
664
+ $this->tokenizer = null;
665
+ $this->fixer = null;
666
+ $this->config = null;
667
+ $this->ruleset = null;
668
+
669
+ }//end cleanUp()
670
+
671
+
672
+ /**
673
+ * Records an error against a specific token in the file.
674
+ *
675
+ * @param string $error The error message.
676
+ * @param int $stackPtr The stack position where the error occurred.
677
+ * @param string $code A violation code unique to the sniff message.
678
+ * @param array $data Replacements for the error message.
679
+ * @param int $severity The severity level for this error. A value of 0
680
+ * will be converted into the default severity level.
681
+ * @param boolean $fixable Can the error be fixed by the sniff?
682
+ *
683
+ * @return boolean
684
+ */
685
+ public function addError(
686
+ $error,
687
+ $stackPtr,
688
+ $code,
689
+ $data=[],
690
+ $severity=0,
691
+ $fixable=false
692
+ ) {
693
+ if ($stackPtr === null) {
694
+ $line = 1;
695
+ $column = 1;
696
+ } else {
697
+ $line = $this->tokens[$stackPtr]['line'];
698
+ $column = $this->tokens[$stackPtr]['column'];
699
+ }
700
+
701
+ return $this->addMessage(true, $error, $line, $column, $code, $data, $severity, $fixable);
702
+
703
+ }//end addError()
704
+
705
+
706
+ /**
707
+ * Records a warning against a specific token in the file.
708
+ *
709
+ * @param string $warning The error message.
710
+ * @param int $stackPtr The stack position where the error occurred.
711
+ * @param string $code A violation code unique to the sniff message.
712
+ * @param array $data Replacements for the warning message.
713
+ * @param int $severity The severity level for this warning. A value of 0
714
+ * will be converted into the default severity level.
715
+ * @param boolean $fixable Can the warning be fixed by the sniff?
716
+ *
717
+ * @return boolean
718
+ */
719
+ public function addWarning(
720
+ $warning,
721
+ $stackPtr,
722
+ $code,
723
+ $data=[],
724
+ $severity=0,
725
+ $fixable=false
726
+ ) {
727
+ if ($stackPtr === null) {
728
+ $line = 1;
729
+ $column = 1;
730
+ } else {
731
+ $line = $this->tokens[$stackPtr]['line'];
732
+ $column = $this->tokens[$stackPtr]['column'];
733
+ }
734
+
735
+ return $this->addMessage(false, $warning, $line, $column, $code, $data, $severity, $fixable);
736
+
737
+ }//end addWarning()
738
+
739
+
740
+ /**
741
+ * Records an error against a specific line in the file.
742
+ *
743
+ * @param string $error The error message.
744
+ * @param int $line The line on which the error occurred.
745
+ * @param string $code A violation code unique to the sniff message.
746
+ * @param array $data Replacements for the error message.
747
+ * @param int $severity The severity level for this error. A value of 0
748
+ * will be converted into the default severity level.
749
+ *
750
+ * @return boolean
751
+ */
752
+ public function addErrorOnLine(
753
+ $error,
754
+ $line,
755
+ $code,
756
+ $data=[],
757
+ $severity=0
758
+ ) {
759
+ return $this->addMessage(true, $error, $line, 1, $code, $data, $severity, false);
760
+
761
+ }//end addErrorOnLine()
762
+
763
+
764
+ /**
765
+ * Records a warning against a specific line in the file.
766
+ *
767
+ * @param string $warning The error message.
768
+ * @param int $line The line on which the warning occurred.
769
+ * @param string $code A violation code unique to the sniff message.
770
+ * @param array $data Replacements for the warning message.
771
+ * @param int $severity The severity level for this warning. A value of 0 will
772
+ * will be converted into the default severity level.
773
+ *
774
+ * @return boolean
775
+ */
776
+ public function addWarningOnLine(
777
+ $warning,
778
+ $line,
779
+ $code,
780
+ $data=[],
781
+ $severity=0
782
+ ) {
783
+ return $this->addMessage(false, $warning, $line, 1, $code, $data, $severity, false);
784
+
785
+ }//end addWarningOnLine()
786
+
787
+
788
+ /**
789
+ * Records a fixable error against a specific token in the file.
790
+ *
791
+ * Returns true if the error was recorded and should be fixed.
792
+ *
793
+ * @param string $error The error message.
794
+ * @param int $stackPtr The stack position where the error occurred.
795
+ * @param string $code A violation code unique to the sniff message.
796
+ * @param array $data Replacements for the error message.
797
+ * @param int $severity The severity level for this error. A value of 0
798
+ * will be converted into the default severity level.
799
+ *
800
+ * @return boolean
801
+ */
802
+ public function addFixableError(
803
+ $error,
804
+ $stackPtr,
805
+ $code,
806
+ $data=[],
807
+ $severity=0
808
+ ) {
809
+ $recorded = $this->addError($error, $stackPtr, $code, $data, $severity, true);
810
+ if ($recorded === true && $this->fixer->enabled === true) {
811
+ return true;
812
+ }
813
+
814
+ return false;
815
+
816
+ }//end addFixableError()
817
+
818
+
819
+ /**
820
+ * Records a fixable warning against a specific token in the file.
821
+ *
822
+ * Returns true if the warning was recorded and should be fixed.
823
+ *
824
+ * @param string $warning The error message.
825
+ * @param int $stackPtr The stack position where the error occurred.
826
+ * @param string $code A violation code unique to the sniff message.
827
+ * @param array $data Replacements for the warning message.
828
+ * @param int $severity The severity level for this warning. A value of 0
829
+ * will be converted into the default severity level.
830
+ *
831
+ * @return boolean
832
+ */
833
+ public function addFixableWarning(
834
+ $warning,
835
+ $stackPtr,
836
+ $code,
837
+ $data=[],
838
+ $severity=0
839
+ ) {
840
+ $recorded = $this->addWarning($warning, $stackPtr, $code, $data, $severity, true);
841
+ if ($recorded === true && $this->fixer->enabled === true) {
842
+ return true;
843
+ }
844
+
845
+ return false;
846
+
847
+ }//end addFixableWarning()
848
+
849
+
850
+ /**
851
+ * Adds an error to the error stack.
852
+ *
853
+ * @param boolean $error Is this an error message?
854
+ * @param string $message The text of the message.
855
+ * @param int $line The line on which the message occurred.
856
+ * @param int $column The column at which the message occurred.
857
+ * @param string $code A violation code unique to the sniff message.
858
+ * @param array $data Replacements for the message.
859
+ * @param int $severity The severity level for this message. A value of 0
860
+ * will be converted into the default severity level.
861
+ * @param boolean $fixable Can the problem be fixed by the sniff?
862
+ *
863
+ * @return boolean
864
+ */
865
+ protected function addMessage($error, $message, $line, $column, $code, $data, $severity, $fixable)
866
+ {
867
+ // Check if this line is ignoring all message codes.
868
+ if (isset($this->tokenizer->ignoredLines[$line]['.all']) === true) {
869
+ return false;
870
+ }
871
+
872
+ // Work out which sniff generated the message.
873
+ $parts = explode('.', $code);
874
+ if ($parts[0] === 'Internal') {
875
+ // An internal message.
876
+ $listenerCode = '';
877
+ if ($this->activeListener !== '') {
878
+ $listenerCode = Common::getSniffCode($this->activeListener);
879
+ }
880
+
881
+ $sniffCode = $code;
882
+ $checkCodes = [$sniffCode];
883
+ } else {
884
+ if ($parts[0] !== $code) {
885
+ // The full message code has been passed in.
886
+ $sniffCode = $code;
887
+ $listenerCode = substr($sniffCode, 0, strrpos($sniffCode, '.'));
888
+ } else {
889
+ $listenerCode = Common::getSniffCode($this->activeListener);
890
+ $sniffCode = $listenerCode.'.'.$code;
891
+ $parts = explode('.', $sniffCode);
892
+ }
893
+
894
+ $checkCodes = [
895
+ $sniffCode,
896
+ $parts[0].'.'.$parts[1].'.'.$parts[2],
897
+ $parts[0].'.'.$parts[1],
898
+ $parts[0],
899
+ ];
900
+ }//end if
901
+
902
+ if (isset($this->tokenizer->ignoredLines[$line]) === true) {
903
+ // Check if this line is ignoring this specific message.
904
+ $ignored = false;
905
+ foreach ($checkCodes as $checkCode) {
906
+ if (isset($this->tokenizer->ignoredLines[$line][$checkCode]) === true) {
907
+ $ignored = true;
908
+ break;
909
+ }
910
+ }
911
+
912
+ // If it is ignored, make sure there is no exception in place.
913
+ if ($ignored === true
914
+ && isset($this->tokenizer->ignoredLines[$line]['.except']) === true
915
+ ) {
916
+ foreach ($checkCodes as $checkCode) {
917
+ if (isset($this->tokenizer->ignoredLines[$line]['.except'][$checkCode]) === true) {
918
+ $ignored = false;
919
+ break;
920
+ }
921
+ }
922
+ }
923
+
924
+ if ($ignored === true) {
925
+ return false;
926
+ }
927
+ }//end if
928
+
929
+ $includeAll = true;
930
+ if ($this->configCache['cache'] === false
931
+ || $this->configCache['recordErrors'] === false
932
+ ) {
933
+ $includeAll = false;
934
+ }
935
+
936
+ // Filter out any messages for sniffs that shouldn't have run
937
+ // due to the use of the --sniffs command line argument.
938
+ if ($includeAll === false
939
+ && ((empty($this->configCache['sniffs']) === false
940
+ && in_array(strtolower($listenerCode), $this->configCache['sniffs'], true) === false)
941
+ || (empty($this->configCache['exclude']) === false
942
+ && in_array(strtolower($listenerCode), $this->configCache['exclude'], true) === true))
943
+ ) {
944
+ return false;
945
+ }
946
+
947
+ // If we know this sniff code is being ignored for this file, return early.
948
+ foreach ($checkCodes as $checkCode) {
949
+ if (isset($this->ignoredCodes[$checkCode]) === true) {
950
+ return false;
951
+ }
952
+ }
953
+
954
+ $oppositeType = 'warning';
955
+ if ($error === false) {
956
+ $oppositeType = 'error';
957
+ }
958
+
959
+ foreach ($checkCodes as $checkCode) {
960
+ // Make sure this message type has not been set to the opposite message type.
961
+ if (isset($this->ruleset->ruleset[$checkCode]['type']) === true
962
+ && $this->ruleset->ruleset[$checkCode]['type'] === $oppositeType
963
+ ) {
964
+ $error = !$error;
965
+ break;
966
+ }
967
+ }
968
+
969
+ if ($error === true) {
970
+ $configSeverity = $this->configCache['errorSeverity'];
971
+ $messageCount = &$this->errorCount;
972
+ $messages = &$this->errors;
973
+ } else {
974
+ $configSeverity = $this->configCache['warningSeverity'];
975
+ $messageCount = &$this->warningCount;
976
+ $messages = &$this->warnings;
977
+ }
978
+
979
+ if ($includeAll === false && $configSeverity === 0) {
980
+ // Don't bother doing any processing as these messages are just going to
981
+ // be hidden in the reports anyway.
982
+ return false;
983
+ }
984
+
985
+ if ($severity === 0) {
986
+ $severity = 5;
987
+ }
988
+
989
+ foreach ($checkCodes as $checkCode) {
990
+ // Make sure we are interested in this severity level.
991
+ if (isset($this->ruleset->ruleset[$checkCode]['severity']) === true) {
992
+ $severity = $this->ruleset->ruleset[$checkCode]['severity'];
993
+ break;
994
+ }
995
+ }
996
+
997
+ if ($includeAll === false && $configSeverity > $severity) {
998
+ return false;
999
+ }
1000
+
1001
+ // Make sure we are not ignoring this file.
1002
+ $included = null;
1003
+ if (trim($this->path, '\'"') === 'STDIN') {
1004
+ $included = true;
1005
+ } else {
1006
+ foreach ($checkCodes as $checkCode) {
1007
+ $patterns = null;
1008
+
1009
+ if (isset($this->configCache['includePatterns'][$checkCode]) === true) {
1010
+ $patterns = $this->configCache['includePatterns'][$checkCode];
1011
+ $excluding = false;
1012
+ } else if (isset($this->configCache['ignorePatterns'][$checkCode]) === true) {
1013
+ $patterns = $this->configCache['ignorePatterns'][$checkCode];
1014
+ $excluding = true;
1015
+ }
1016
+
1017
+ if ($patterns === null) {
1018
+ continue;
1019
+ }
1020
+
1021
+ foreach ($patterns as $pattern => $type) {
1022
+ // While there is support for a type of each pattern
1023
+ // (absolute or relative) we don't actually support it here.
1024
+ $replacements = [
1025
+ '\\,' => ',',
1026
+ '*' => '.*',
1027
+ ];
1028
+
1029
+ // We assume a / directory separator, as do the exclude rules
1030
+ // most developers write, so we need a special case for any system
1031
+ // that is different.
1032
+ if (DIRECTORY_SEPARATOR === '\\') {
1033
+ $replacements['/'] = '\\\\';
1034
+ }
1035
+
1036
+ $pattern = '`'.strtr($pattern, $replacements).'`i';
1037
+ $matched = preg_match($pattern, $this->path);
1038
+
1039
+ if ($matched === 0) {
1040
+ if ($excluding === false && $included === null) {
1041
+ // This file path is not being included.
1042
+ $included = false;
1043
+ }
1044
+
1045
+ continue;
1046
+ }
1047
+
1048
+ if ($excluding === true) {
1049
+ // This file path is being excluded.
1050
+ $this->ignoredCodes[$checkCode] = true;
1051
+ return false;
1052
+ }
1053
+
1054
+ // This file path is being included.
1055
+ $included = true;
1056
+ break;
1057
+ }//end foreach
1058
+ }//end foreach
1059
+ }//end if
1060
+
1061
+ if ($included === false) {
1062
+ // There were include rules set, but this file
1063
+ // path didn't match any of them.
1064
+ return false;
1065
+ }
1066
+
1067
+ $messageCount++;
1068
+ if ($fixable === true) {
1069
+ $this->fixableCount++;
1070
+ }
1071
+
1072
+ if ($this->configCache['recordErrors'] === false
1073
+ && $includeAll === false
1074
+ ) {
1075
+ return true;
1076
+ }
1077
+
1078
+ // See if there is a custom error message format to use.
1079
+ // But don't do this if we are replaying errors because replayed
1080
+ // errors have already used the custom format and have had their
1081
+ // data replaced.
1082
+ if ($this->replayingErrors === false
1083
+ && isset($this->ruleset->ruleset[$sniffCode]['message']) === true
1084
+ ) {
1085
+ $message = $this->ruleset->ruleset[$sniffCode]['message'];
1086
+ }
1087
+
1088
+ if (empty($data) === false) {
1089
+ $message = vsprintf($message, $data);
1090
+ }
1091
+
1092
+ if (isset($messages[$line]) === false) {
1093
+ $messages[$line] = [];
1094
+ }
1095
+
1096
+ if (isset($messages[$line][$column]) === false) {
1097
+ $messages[$line][$column] = [];
1098
+ }
1099
+
1100
+ $messages[$line][$column][] = [
1101
+ 'message' => $message,
1102
+ 'source' => $sniffCode,
1103
+ 'listener' => $this->activeListener,
1104
+ 'severity' => $severity,
1105
+ 'fixable' => $fixable,
1106
+ ];
1107
+
1108
+ if (PHP_CODESNIFFER_VERBOSITY > 1
1109
+ && $this->fixer->enabled === true
1110
+ && $fixable === true
1111
+ ) {
1112
+ @ob_end_clean();
1113
+ echo "\tE: [Line $line] $message ($sniffCode)".PHP_EOL;
1114
+ ob_start();
1115
+ }
1116
+
1117
+ return true;
1118
+
1119
+ }//end addMessage()
1120
+
1121
+
1122
+ /**
1123
+ * Record a metric about the file being examined.
1124
+ *
1125
+ * @param int $stackPtr The stack position where the metric was recorded.
1126
+ * @param string $metric The name of the metric being recorded.
1127
+ * @param string $value The value of the metric being recorded.
1128
+ *
1129
+ * @return boolean
1130
+ */
1131
+ public function recordMetric($stackPtr, $metric, $value)
1132
+ {
1133
+ if (isset($this->metrics[$metric]) === false) {
1134
+ $this->metrics[$metric] = ['values' => [$value => 1]];
1135
+ $this->metricTokens[$metric][$stackPtr] = true;
1136
+ } else if (isset($this->metricTokens[$metric][$stackPtr]) === false) {
1137
+ $this->metricTokens[$metric][$stackPtr] = true;
1138
+ if (isset($this->metrics[$metric]['values'][$value]) === false) {
1139
+ $this->metrics[$metric]['values'][$value] = 1;
1140
+ } else {
1141
+ $this->metrics[$metric]['values'][$value]++;
1142
+ }
1143
+ }
1144
+
1145
+ return true;
1146
+
1147
+ }//end recordMetric()
1148
+
1149
+
1150
+ /**
1151
+ * Returns the number of errors raised.
1152
+ *
1153
+ * @return int
1154
+ */
1155
+ public function getErrorCount()
1156
+ {
1157
+ return $this->errorCount;
1158
+
1159
+ }//end getErrorCount()
1160
+
1161
+
1162
+ /**
1163
+ * Returns the number of warnings raised.
1164
+ *
1165
+ * @return int
1166
+ */
1167
+ public function getWarningCount()
1168
+ {
1169
+ return $this->warningCount;
1170
+
1171
+ }//end getWarningCount()
1172
+
1173
+
1174
+ /**
1175
+ * Returns the number of fixable errors/warnings raised.
1176
+ *
1177
+ * @return int
1178
+ */
1179
+ public function getFixableCount()
1180
+ {
1181
+ return $this->fixableCount;
1182
+
1183
+ }//end getFixableCount()
1184
+
1185
+
1186
+ /**
1187
+ * Returns the number of fixed errors/warnings.
1188
+ *
1189
+ * @return int
1190
+ */
1191
+ public function getFixedCount()
1192
+ {
1193
+ return $this->fixedCount;
1194
+
1195
+ }//end getFixedCount()
1196
+
1197
+
1198
+ /**
1199
+ * Returns the list of ignored lines.
1200
+ *
1201
+ * @return array
1202
+ */
1203
+ public function getIgnoredLines()
1204
+ {
1205
+ return $this->tokenizer->ignoredLines;
1206
+
1207
+ }//end getIgnoredLines()
1208
+
1209
+
1210
+ /**
1211
+ * Returns the errors raised from processing this file.
1212
+ *
1213
+ * @return array
1214
+ */
1215
+ public function getErrors()
1216
+ {
1217
+ return $this->errors;
1218
+
1219
+ }//end getErrors()
1220
+
1221
+
1222
+ /**
1223
+ * Returns the warnings raised from processing this file.
1224
+ *
1225
+ * @return array
1226
+ */
1227
+ public function getWarnings()
1228
+ {
1229
+ return $this->warnings;
1230
+
1231
+ }//end getWarnings()
1232
+
1233
+
1234
+ /**
1235
+ * Returns the metrics found while processing this file.
1236
+ *
1237
+ * @return array
1238
+ */
1239
+ public function getMetrics()
1240
+ {
1241
+ return $this->metrics;
1242
+
1243
+ }//end getMetrics()
1244
+
1245
+
1246
+ /**
1247
+ * Returns the time taken processing this file for each invoked sniff.
1248
+ *
1249
+ * @return array
1250
+ */
1251
+ public function getListenerTimes()
1252
+ {
1253
+ return $this->listenerTimes;
1254
+
1255
+ }//end getListenerTimes()
1256
+
1257
+
1258
+ /**
1259
+ * Returns the absolute filename of this file.
1260
+ *
1261
+ * @return string
1262
+ */
1263
+ public function getFilename()
1264
+ {
1265
+ return $this->path;
1266
+
1267
+ }//end getFilename()
1268
+
1269
+
1270
+ /**
1271
+ * Returns the declaration name for classes, interfaces, traits, enums, and functions.
1272
+ *
1273
+ * @param int $stackPtr The position of the declaration token which
1274
+ * declared the class, interface, trait, or function.
1275
+ *
1276
+ * @return string|null The name of the class, interface, trait, or function;
1277
+ * or NULL if the function or class is anonymous.
1278
+ * @throws \PHP_CodeSniffer\Exceptions\RuntimeException If the specified token is not of type
1279
+ * T_FUNCTION, T_CLASS, T_ANON_CLASS,
1280
+ * T_CLOSURE, T_TRAIT, T_ENUM, or T_INTERFACE.
1281
+ */
1282
+ public function getDeclarationName($stackPtr)
1283
+ {
1284
+ $tokenCode = $this->tokens[$stackPtr]['code'];
1285
+
1286
+ if ($tokenCode === T_ANON_CLASS || $tokenCode === T_CLOSURE) {
1287
+ return null;
1288
+ }
1289
+
1290
+ if ($tokenCode !== T_FUNCTION
1291
+ && $tokenCode !== T_CLASS
1292
+ && $tokenCode !== T_INTERFACE
1293
+ && $tokenCode !== T_TRAIT
1294
+ && $tokenCode !== T_ENUM
1295
+ ) {
1296
+ throw new RuntimeException('Token type "'.$this->tokens[$stackPtr]['type'].'" is not T_FUNCTION, T_CLASS, T_INTERFACE, T_TRAIT or T_ENUM');
1297
+ }
1298
+
1299
+ if ($tokenCode === T_FUNCTION
1300
+ && strtolower($this->tokens[$stackPtr]['content']) !== 'function'
1301
+ ) {
1302
+ // This is a function declared without the "function" keyword.
1303
+ // So this token is the function name.
1304
+ return $this->tokens[$stackPtr]['content'];
1305
+ }
1306
+
1307
+ $content = null;
1308
+ for ($i = $stackPtr; $i < $this->numTokens; $i++) {
1309
+ if ($this->tokens[$i]['code'] === T_STRING) {
1310
+ $content = $this->tokens[$i]['content'];
1311
+ break;
1312
+ }
1313
+ }
1314
+
1315
+ return $content;
1316
+
1317
+ }//end getDeclarationName()
1318
+
1319
+
1320
+ /**
1321
+ * Returns the method parameters for the specified function token.
1322
+ *
1323
+ * Also supports passing in a USE token for a closure use group.
1324
+ *
1325
+ * Each parameter is in the following format:
1326
+ *
1327
+ * <code>
1328
+ * 0 => array(
1329
+ * 'name' => string, // The variable name.
1330
+ * 'token' => integer, // The stack pointer to the variable name.
1331
+ * 'content' => string, // The full content of the variable definition.
1332
+ * 'has_attributes' => boolean, // Does the parameter have one or more attributes attached ?
1333
+ * 'pass_by_reference' => boolean, // Is the variable passed by reference?
1334
+ * 'reference_token' => integer|false, // The stack pointer to the reference operator
1335
+ * // or FALSE if the param is not passed by reference.
1336
+ * 'variable_length' => boolean, // Is the param of variable length through use of `...` ?
1337
+ * 'variadic_token' => integer|false, // The stack pointer to the ... operator
1338
+ * // or FALSE if the param is not variable length.
1339
+ * 'type_hint' => string, // The type hint for the variable.
1340
+ * 'type_hint_token' => integer|false, // The stack pointer to the start of the type hint
1341
+ * // or FALSE if there is no type hint.
1342
+ * 'type_hint_end_token' => integer|false, // The stack pointer to the end of the type hint
1343
+ * // or FALSE if there is no type hint.
1344
+ * 'nullable_type' => boolean, // TRUE if the type is preceded by the nullability
1345
+ * // operator.
1346
+ * 'comma_token' => integer|false, // The stack pointer to the comma after the param
1347
+ * // or FALSE if this is the last param.
1348
+ * )
1349
+ * </code>
1350
+ *
1351
+ * Parameters with default values have additional array indexes of:
1352
+ * 'default' => string, // The full content of the default value.
1353
+ * 'default_token' => integer, // The stack pointer to the start of the default value.
1354
+ * 'default_equal_token' => integer, // The stack pointer to the equals sign.
1355
+ *
1356
+ * Parameters declared using PHP 8 constructor property promotion, have these additional array indexes:
1357
+ * 'property_visibility' => string, // The property visibility as declared.
1358
+ * 'visibility_token' => integer|false, // The stack pointer to the visibility modifier token
1359
+ * // or FALSE if the visibility is not explicitly declared.
1360
+ * 'property_readonly' => boolean, // TRUE if the readonly keyword was found.
1361
+ * 'readonly_token' => integer, // The stack pointer to the readonly modifier token.
1362
+ * // This index will only be set if the property is readonly.
1363
+ *
1364
+ * @param int $stackPtr The position in the stack of the function token
1365
+ * to acquire the parameters for.
1366
+ *
1367
+ * @return array
1368
+ * @throws \PHP_CodeSniffer\Exceptions\RuntimeException If the specified $stackPtr is not of
1369
+ * type T_FUNCTION, T_CLOSURE, T_USE,
1370
+ * or T_FN.
1371
+ */
1372
+ public function getMethodParameters($stackPtr)
1373
+ {
1374
+ if ($this->tokens[$stackPtr]['code'] !== T_FUNCTION
1375
+ && $this->tokens[$stackPtr]['code'] !== T_CLOSURE
1376
+ && $this->tokens[$stackPtr]['code'] !== T_USE
1377
+ && $this->tokens[$stackPtr]['code'] !== T_FN
1378
+ ) {
1379
+ throw new RuntimeException('$stackPtr must be of type T_FUNCTION or T_CLOSURE or T_USE or T_FN');
1380
+ }
1381
+
1382
+ if ($this->tokens[$stackPtr]['code'] === T_USE) {
1383
+ $opener = $this->findNext(T_OPEN_PARENTHESIS, ($stackPtr + 1));
1384
+ if ($opener === false || isset($this->tokens[$opener]['parenthesis_owner']) === true) {
1385
+ throw new RuntimeException('$stackPtr was not a valid T_USE');
1386
+ }
1387
+ } else {
1388
+ if (isset($this->tokens[$stackPtr]['parenthesis_opener']) === false) {
1389
+ // Live coding or syntax error, so no params to find.
1390
+ return [];
1391
+ }
1392
+
1393
+ $opener = $this->tokens[$stackPtr]['parenthesis_opener'];
1394
+ }
1395
+
1396
+ if (isset($this->tokens[$opener]['parenthesis_closer']) === false) {
1397
+ // Live coding or syntax error, so no params to find.
1398
+ return [];
1399
+ }
1400
+
1401
+ $closer = $this->tokens[$opener]['parenthesis_closer'];
1402
+
1403
+ $vars = [];
1404
+ $currVar = null;
1405
+ $paramStart = ($opener + 1);
1406
+ $defaultStart = null;
1407
+ $equalToken = null;
1408
+ $paramCount = 0;
1409
+ $hasAttributes = false;
1410
+ $passByReference = false;
1411
+ $referenceToken = false;
1412
+ $variableLength = false;
1413
+ $variadicToken = false;
1414
+ $typeHint = '';
1415
+ $typeHintToken = false;
1416
+ $typeHintEndToken = false;
1417
+ $nullableType = false;
1418
+ $visibilityToken = null;
1419
+ $readonlyToken = null;
1420
+
1421
+ for ($i = $paramStart; $i <= $closer; $i++) {
1422
+ // Check to see if this token has a parenthesis or bracket opener. If it does
1423
+ // it's likely to be an array which might have arguments in it. This
1424
+ // could cause problems in our parsing below, so lets just skip to the
1425
+ // end of it.
1426
+ if ($this->tokens[$i]['code'] !== T_TYPE_OPEN_PARENTHESIS
1427
+ && isset($this->tokens[$i]['parenthesis_opener']) === true
1428
+ ) {
1429
+ // Don't do this if it's the close parenthesis for the method.
1430
+ if ($i !== $this->tokens[$i]['parenthesis_closer']) {
1431
+ $i = $this->tokens[$i]['parenthesis_closer'];
1432
+ continue;
1433
+ }
1434
+ }
1435
+
1436
+ if (isset($this->tokens[$i]['bracket_opener']) === true) {
1437
+ if ($i !== $this->tokens[$i]['bracket_closer']) {
1438
+ $i = $this->tokens[$i]['bracket_closer'];
1439
+ continue;
1440
+ }
1441
+ }
1442
+
1443
+ switch ($this->tokens[$i]['code']) {
1444
+ case T_ATTRIBUTE:
1445
+ $hasAttributes = true;
1446
+
1447
+ // Skip to the end of the attribute.
1448
+ $i = $this->tokens[$i]['attribute_closer'];
1449
+ break;
1450
+ case T_BITWISE_AND:
1451
+ if ($defaultStart === null) {
1452
+ $passByReference = true;
1453
+ $referenceToken = $i;
1454
+ }
1455
+ break;
1456
+ case T_VARIABLE:
1457
+ $currVar = $i;
1458
+ break;
1459
+ case T_ELLIPSIS:
1460
+ $variableLength = true;
1461
+ $variadicToken = $i;
1462
+ break;
1463
+ case T_CALLABLE:
1464
+ if ($typeHintToken === false) {
1465
+ $typeHintToken = $i;
1466
+ }
1467
+
1468
+ $typeHint .= $this->tokens[$i]['content'];
1469
+ $typeHintEndToken = $i;
1470
+ break;
1471
+ case T_SELF:
1472
+ case T_PARENT:
1473
+ case T_STATIC:
1474
+ // Self and parent are valid, static invalid, but was probably intended as type hint.
1475
+ if (isset($defaultStart) === false) {
1476
+ if ($typeHintToken === false) {
1477
+ $typeHintToken = $i;
1478
+ }
1479
+
1480
+ $typeHint .= $this->tokens[$i]['content'];
1481
+ $typeHintEndToken = $i;
1482
+ }
1483
+ break;
1484
+ case T_STRING:
1485
+ // This is a string, so it may be a type hint, but it could
1486
+ // also be a constant used as a default value.
1487
+ $prevComma = false;
1488
+ for ($t = $i; $t >= $opener; $t--) {
1489
+ if ($this->tokens[$t]['code'] === T_COMMA) {
1490
+ $prevComma = $t;
1491
+ break;
1492
+ }
1493
+ }
1494
+
1495
+ if ($prevComma !== false) {
1496
+ $nextEquals = false;
1497
+ for ($t = $prevComma; $t < $i; $t++) {
1498
+ if ($this->tokens[$t]['code'] === T_EQUAL) {
1499
+ $nextEquals = $t;
1500
+ break;
1501
+ }
1502
+ }
1503
+
1504
+ if ($nextEquals !== false) {
1505
+ break;
1506
+ }
1507
+ }
1508
+
1509
+ if ($defaultStart === null) {
1510
+ if ($typeHintToken === false) {
1511
+ $typeHintToken = $i;
1512
+ }
1513
+
1514
+ $typeHint .= $this->tokens[$i]['content'];
1515
+ $typeHintEndToken = $i;
1516
+ }
1517
+ break;
1518
+ case T_NAMESPACE:
1519
+ case T_NS_SEPARATOR:
1520
+ case T_TYPE_UNION:
1521
+ case T_TYPE_INTERSECTION:
1522
+ case T_TYPE_OPEN_PARENTHESIS:
1523
+ case T_TYPE_CLOSE_PARENTHESIS:
1524
+ case T_FALSE:
1525
+ case T_TRUE:
1526
+ case T_NULL:
1527
+ // Part of a type hint or default value.
1528
+ if ($defaultStart === null) {
1529
+ if ($typeHintToken === false) {
1530
+ $typeHintToken = $i;
1531
+ }
1532
+
1533
+ $typeHint .= $this->tokens[$i]['content'];
1534
+ $typeHintEndToken = $i;
1535
+ }
1536
+ break;
1537
+ case T_NULLABLE:
1538
+ if ($defaultStart === null) {
1539
+ $nullableType = true;
1540
+ $typeHint .= $this->tokens[$i]['content'];
1541
+ $typeHintEndToken = $i;
1542
+ }
1543
+ break;
1544
+ case T_PUBLIC:
1545
+ case T_PROTECTED:
1546
+ case T_PRIVATE:
1547
+ if ($defaultStart === null) {
1548
+ $visibilityToken = $i;
1549
+ }
1550
+ break;
1551
+ case T_READONLY:
1552
+ if ($defaultStart === null) {
1553
+ $readonlyToken = $i;
1554
+ }
1555
+ break;
1556
+ case T_CLOSE_PARENTHESIS:
1557
+ case T_COMMA:
1558
+ // If it's null, then there must be no parameters for this
1559
+ // method.
1560
+ if ($currVar === null) {
1561
+ continue 2;
1562
+ }
1563
+
1564
+ $vars[$paramCount] = [];
1565
+ $vars[$paramCount]['token'] = $currVar;
1566
+ $vars[$paramCount]['name'] = $this->tokens[$currVar]['content'];
1567
+ $vars[$paramCount]['content'] = trim($this->getTokensAsString($paramStart, ($i - $paramStart)));
1568
+
1569
+ if ($defaultStart !== null) {
1570
+ $vars[$paramCount]['default'] = trim($this->getTokensAsString($defaultStart, ($i - $defaultStart)));
1571
+ $vars[$paramCount]['default_token'] = $defaultStart;
1572
+ $vars[$paramCount]['default_equal_token'] = $equalToken;
1573
+ }
1574
+
1575
+ $vars[$paramCount]['has_attributes'] = $hasAttributes;
1576
+ $vars[$paramCount]['pass_by_reference'] = $passByReference;
1577
+ $vars[$paramCount]['reference_token'] = $referenceToken;
1578
+ $vars[$paramCount]['variable_length'] = $variableLength;
1579
+ $vars[$paramCount]['variadic_token'] = $variadicToken;
1580
+ $vars[$paramCount]['type_hint'] = $typeHint;
1581
+ $vars[$paramCount]['type_hint_token'] = $typeHintToken;
1582
+ $vars[$paramCount]['type_hint_end_token'] = $typeHintEndToken;
1583
+ $vars[$paramCount]['nullable_type'] = $nullableType;
1584
+
1585
+ if ($visibilityToken !== null || $readonlyToken !== null) {
1586
+ $vars[$paramCount]['property_visibility'] = 'public';
1587
+ $vars[$paramCount]['visibility_token'] = false;
1588
+ $vars[$paramCount]['property_readonly'] = false;
1589
+
1590
+ if ($visibilityToken !== null) {
1591
+ $vars[$paramCount]['property_visibility'] = $this->tokens[$visibilityToken]['content'];
1592
+ $vars[$paramCount]['visibility_token'] = $visibilityToken;
1593
+ }
1594
+
1595
+ if ($readonlyToken !== null) {
1596
+ $vars[$paramCount]['property_readonly'] = true;
1597
+ $vars[$paramCount]['readonly_token'] = $readonlyToken;
1598
+ }
1599
+ }
1600
+
1601
+ if ($this->tokens[$i]['code'] === T_COMMA) {
1602
+ $vars[$paramCount]['comma_token'] = $i;
1603
+ } else {
1604
+ $vars[$paramCount]['comma_token'] = false;
1605
+ }
1606
+
1607
+ // Reset the vars, as we are about to process the next parameter.
1608
+ $currVar = null;
1609
+ $paramStart = ($i + 1);
1610
+ $defaultStart = null;
1611
+ $equalToken = null;
1612
+ $hasAttributes = false;
1613
+ $passByReference = false;
1614
+ $referenceToken = false;
1615
+ $variableLength = false;
1616
+ $variadicToken = false;
1617
+ $typeHint = '';
1618
+ $typeHintToken = false;
1619
+ $typeHintEndToken = false;
1620
+ $nullableType = false;
1621
+ $visibilityToken = null;
1622
+ $readonlyToken = null;
1623
+
1624
+ $paramCount++;
1625
+ break;
1626
+ case T_EQUAL:
1627
+ $defaultStart = $this->findNext(Tokens::$emptyTokens, ($i + 1), null, true);
1628
+ $equalToken = $i;
1629
+ break;
1630
+ }//end switch
1631
+ }//end for
1632
+
1633
+ return $vars;
1634
+
1635
+ }//end getMethodParameters()
1636
+
1637
+
1638
+ /**
1639
+ * Returns the visibility and implementation properties of a method.
1640
+ *
1641
+ * The format of the return value is:
1642
+ * <code>
1643
+ * array(
1644
+ * 'scope' => string, // Public, private, or protected
1645
+ * 'scope_specified' => boolean, // TRUE if the scope keyword was found.
1646
+ * 'return_type' => string, // The return type of the method.
1647
+ * 'return_type_token' => integer|false, // The stack pointer to the start of the return type
1648
+ * // or FALSE if there is no return type.
1649
+ * 'return_type_end_token' => integer|false, // The stack pointer to the end of the return type
1650
+ * // or FALSE if there is no return type.
1651
+ * 'nullable_return_type' => boolean, // TRUE if the return type is preceded by the
1652
+ * // nullability operator.
1653
+ * 'is_abstract' => boolean, // TRUE if the abstract keyword was found.
1654
+ * 'is_final' => boolean, // TRUE if the final keyword was found.
1655
+ * 'is_static' => boolean, // TRUE if the static keyword was found.
1656
+ * 'has_body' => boolean, // TRUE if the method has a body
1657
+ * );
1658
+ * </code>
1659
+ *
1660
+ * @param int $stackPtr The position in the stack of the function token to
1661
+ * acquire the properties for.
1662
+ *
1663
+ * @return array
1664
+ * @throws \PHP_CodeSniffer\Exceptions\RuntimeException If the specified position is not a
1665
+ * T_FUNCTION, T_CLOSURE, or T_FN token.
1666
+ */
1667
+ public function getMethodProperties($stackPtr)
1668
+ {
1669
+ if ($this->tokens[$stackPtr]['code'] !== T_FUNCTION
1670
+ && $this->tokens[$stackPtr]['code'] !== T_CLOSURE
1671
+ && $this->tokens[$stackPtr]['code'] !== T_FN
1672
+ ) {
1673
+ throw new RuntimeException('$stackPtr must be of type T_FUNCTION or T_CLOSURE or T_FN');
1674
+ }
1675
+
1676
+ if ($this->tokens[$stackPtr]['code'] === T_FUNCTION) {
1677
+ $valid = [
1678
+ T_PUBLIC => T_PUBLIC,
1679
+ T_PRIVATE => T_PRIVATE,
1680
+ T_PROTECTED => T_PROTECTED,
1681
+ T_STATIC => T_STATIC,
1682
+ T_FINAL => T_FINAL,
1683
+ T_ABSTRACT => T_ABSTRACT,
1684
+ T_WHITESPACE => T_WHITESPACE,
1685
+ T_COMMENT => T_COMMENT,
1686
+ T_DOC_COMMENT => T_DOC_COMMENT,
1687
+ ];
1688
+ } else {
1689
+ $valid = [
1690
+ T_STATIC => T_STATIC,
1691
+ T_WHITESPACE => T_WHITESPACE,
1692
+ T_COMMENT => T_COMMENT,
1693
+ T_DOC_COMMENT => T_DOC_COMMENT,
1694
+ ];
1695
+ }
1696
+
1697
+ $scope = 'public';
1698
+ $scopeSpecified = false;
1699
+ $isAbstract = false;
1700
+ $isFinal = false;
1701
+ $isStatic = false;
1702
+
1703
+ for ($i = ($stackPtr - 1); $i > 0; $i--) {
1704
+ if (isset($valid[$this->tokens[$i]['code']]) === false) {
1705
+ break;
1706
+ }
1707
+
1708
+ switch ($this->tokens[$i]['code']) {
1709
+ case T_PUBLIC:
1710
+ $scope = 'public';
1711
+ $scopeSpecified = true;
1712
+ break;
1713
+ case T_PRIVATE:
1714
+ $scope = 'private';
1715
+ $scopeSpecified = true;
1716
+ break;
1717
+ case T_PROTECTED:
1718
+ $scope = 'protected';
1719
+ $scopeSpecified = true;
1720
+ break;
1721
+ case T_ABSTRACT:
1722
+ $isAbstract = true;
1723
+ break;
1724
+ case T_FINAL:
1725
+ $isFinal = true;
1726
+ break;
1727
+ case T_STATIC:
1728
+ $isStatic = true;
1729
+ break;
1730
+ }//end switch
1731
+ }//end for
1732
+
1733
+ $returnType = '';
1734
+ $returnTypeToken = false;
1735
+ $returnTypeEndToken = false;
1736
+ $nullableReturnType = false;
1737
+ $hasBody = true;
1738
+
1739
+ if (isset($this->tokens[$stackPtr]['parenthesis_closer']) === true) {
1740
+ $scopeOpener = null;
1741
+ if (isset($this->tokens[$stackPtr]['scope_opener']) === true) {
1742
+ $scopeOpener = $this->tokens[$stackPtr]['scope_opener'];
1743
+ }
1744
+
1745
+ $valid = [
1746
+ T_STRING => T_STRING,
1747
+ T_CALLABLE => T_CALLABLE,
1748
+ T_SELF => T_SELF,
1749
+ T_PARENT => T_PARENT,
1750
+ T_STATIC => T_STATIC,
1751
+ T_FALSE => T_FALSE,
1752
+ T_TRUE => T_TRUE,
1753
+ T_NULL => T_NULL,
1754
+ T_NAMESPACE => T_NAMESPACE,
1755
+ T_NS_SEPARATOR => T_NS_SEPARATOR,
1756
+ T_TYPE_UNION => T_TYPE_UNION,
1757
+ T_TYPE_INTERSECTION => T_TYPE_INTERSECTION,
1758
+ T_TYPE_OPEN_PARENTHESIS => T_TYPE_OPEN_PARENTHESIS,
1759
+ T_TYPE_CLOSE_PARENTHESIS => T_TYPE_CLOSE_PARENTHESIS,
1760
+ ];
1761
+
1762
+ for ($i = $this->tokens[$stackPtr]['parenthesis_closer']; $i < $this->numTokens; $i++) {
1763
+ if (($scopeOpener === null && $this->tokens[$i]['code'] === T_SEMICOLON)
1764
+ || ($scopeOpener !== null && $i === $scopeOpener)
1765
+ ) {
1766
+ // End of function definition.
1767
+ break;
1768
+ }
1769
+
1770
+ if ($this->tokens[$i]['code'] === T_USE) {
1771
+ // Skip over closure use statements.
1772
+ for ($j = ($i + 1); $j < $this->numTokens && isset(Tokens::$emptyTokens[$this->tokens[$j]['code']]) === true; $j++);
1773
+ if ($this->tokens[$j]['code'] === T_OPEN_PARENTHESIS) {
1774
+ if (isset($this->tokens[$j]['parenthesis_closer']) === false) {
1775
+ // Live coding/parse error, stop parsing.
1776
+ break;
1777
+ }
1778
+
1779
+ $i = $this->tokens[$j]['parenthesis_closer'];
1780
+ continue;
1781
+ }
1782
+ }
1783
+
1784
+ if ($this->tokens[$i]['code'] === T_NULLABLE) {
1785
+ $nullableReturnType = true;
1786
+ }
1787
+
1788
+ if (isset($valid[$this->tokens[$i]['code']]) === true) {
1789
+ if ($returnTypeToken === false) {
1790
+ $returnTypeToken = $i;
1791
+ }
1792
+
1793
+ $returnType .= $this->tokens[$i]['content'];
1794
+ $returnTypeEndToken = $i;
1795
+ }
1796
+ }//end for
1797
+
1798
+ if ($this->tokens[$stackPtr]['code'] === T_FN) {
1799
+ $bodyToken = T_FN_ARROW;
1800
+ } else {
1801
+ $bodyToken = T_OPEN_CURLY_BRACKET;
1802
+ }
1803
+
1804
+ $end = $this->findNext([$bodyToken, T_SEMICOLON], $this->tokens[$stackPtr]['parenthesis_closer']);
1805
+ $hasBody = $this->tokens[$end]['code'] === $bodyToken;
1806
+ }//end if
1807
+
1808
+ if ($returnType !== '' && $nullableReturnType === true) {
1809
+ $returnType = '?'.$returnType;
1810
+ }
1811
+
1812
+ return [
1813
+ 'scope' => $scope,
1814
+ 'scope_specified' => $scopeSpecified,
1815
+ 'return_type' => $returnType,
1816
+ 'return_type_token' => $returnTypeToken,
1817
+ 'return_type_end_token' => $returnTypeEndToken,
1818
+ 'nullable_return_type' => $nullableReturnType,
1819
+ 'is_abstract' => $isAbstract,
1820
+ 'is_final' => $isFinal,
1821
+ 'is_static' => $isStatic,
1822
+ 'has_body' => $hasBody,
1823
+ ];
1824
+
1825
+ }//end getMethodProperties()
1826
+
1827
+
1828
+ /**
1829
+ * Returns the visibility and implementation properties of a class member var.
1830
+ *
1831
+ * The format of the return value is:
1832
+ *
1833
+ * <code>
1834
+ * array(
1835
+ * 'scope' => string, // Public, private, or protected.
1836
+ * 'scope_specified' => boolean, // TRUE if the scope was explicitly specified.
1837
+ * 'is_static' => boolean, // TRUE if the static keyword was found.
1838
+ * 'is_readonly' => boolean, // TRUE if the readonly keyword was found.
1839
+ * 'type' => string, // The type of the var (empty if no type specified).
1840
+ * 'type_token' => integer|false, // The stack pointer to the start of the type
1841
+ * // or FALSE if there is no type.
1842
+ * 'type_end_token' => integer|false, // The stack pointer to the end of the type
1843
+ * // or FALSE if there is no type.
1844
+ * 'nullable_type' => boolean, // TRUE if the type is preceded by the nullability
1845
+ * // operator.
1846
+ * );
1847
+ * </code>
1848
+ *
1849
+ * @param int $stackPtr The position in the stack of the T_VARIABLE token to
1850
+ * acquire the properties for.
1851
+ *
1852
+ * @return array
1853
+ * @throws \PHP_CodeSniffer\Exceptions\RuntimeException If the specified position is not a
1854
+ * T_VARIABLE token, or if the position is not
1855
+ * a class member variable.
1856
+ */
1857
+ public function getMemberProperties($stackPtr)
1858
+ {
1859
+ if ($this->tokens[$stackPtr]['code'] !== T_VARIABLE) {
1860
+ throw new RuntimeException('$stackPtr must be of type T_VARIABLE');
1861
+ }
1862
+
1863
+ $conditions = array_keys($this->tokens[$stackPtr]['conditions']);
1864
+ $ptr = array_pop($conditions);
1865
+ if (isset($this->tokens[$ptr]) === false
1866
+ || ($this->tokens[$ptr]['code'] !== T_CLASS
1867
+ && $this->tokens[$ptr]['code'] !== T_ANON_CLASS
1868
+ && $this->tokens[$ptr]['code'] !== T_TRAIT)
1869
+ ) {
1870
+ if (isset($this->tokens[$ptr]) === true
1871
+ && ($this->tokens[$ptr]['code'] === T_INTERFACE
1872
+ || $this->tokens[$ptr]['code'] === T_ENUM)
1873
+ ) {
1874
+ // T_VARIABLEs in interfaces/enums can actually be method arguments
1875
+ // but they won't be seen as being inside the method because there
1876
+ // are no scope openers and closers for abstract methods. If it is in
1877
+ // parentheses, we can be pretty sure it is a method argument.
1878
+ if (isset($this->tokens[$stackPtr]['nested_parenthesis']) === false
1879
+ || empty($this->tokens[$stackPtr]['nested_parenthesis']) === true
1880
+ ) {
1881
+ $error = 'Possible parse error: %ss may not include member vars';
1882
+ $code = sprintf('Internal.ParseError.%sHasMemberVar', ucfirst($this->tokens[$ptr]['content']));
1883
+ $data = [strtolower($this->tokens[$ptr]['content'])];
1884
+ $this->addWarning($error, $stackPtr, $code, $data);
1885
+ return [];
1886
+ }
1887
+ } else {
1888
+ throw new RuntimeException('$stackPtr is not a class member var');
1889
+ }
1890
+ }//end if
1891
+
1892
+ // Make sure it's not a method parameter.
1893
+ if (empty($this->tokens[$stackPtr]['nested_parenthesis']) === false) {
1894
+ $parenthesis = array_keys($this->tokens[$stackPtr]['nested_parenthesis']);
1895
+ $deepestOpen = array_pop($parenthesis);
1896
+ if ($deepestOpen > $ptr
1897
+ && isset($this->tokens[$deepestOpen]['parenthesis_owner']) === true
1898
+ && $this->tokens[$this->tokens[$deepestOpen]['parenthesis_owner']]['code'] === T_FUNCTION
1899
+ ) {
1900
+ throw new RuntimeException('$stackPtr is not a class member var');
1901
+ }
1902
+ }
1903
+
1904
+ $valid = [
1905
+ T_PUBLIC => T_PUBLIC,
1906
+ T_PRIVATE => T_PRIVATE,
1907
+ T_PROTECTED => T_PROTECTED,
1908
+ T_STATIC => T_STATIC,
1909
+ T_VAR => T_VAR,
1910
+ T_READONLY => T_READONLY,
1911
+ ];
1912
+
1913
+ $valid += Tokens::$emptyTokens;
1914
+
1915
+ $scope = 'public';
1916
+ $scopeSpecified = false;
1917
+ $isStatic = false;
1918
+ $isReadonly = false;
1919
+
1920
+ $startOfStatement = $this->findPrevious(
1921
+ [
1922
+ T_SEMICOLON,
1923
+ T_OPEN_CURLY_BRACKET,
1924
+ T_CLOSE_CURLY_BRACKET,
1925
+ T_ATTRIBUTE_END,
1926
+ ],
1927
+ ($stackPtr - 1)
1928
+ );
1929
+
1930
+ for ($i = ($startOfStatement + 1); $i < $stackPtr; $i++) {
1931
+ if (isset($valid[$this->tokens[$i]['code']]) === false) {
1932
+ break;
1933
+ }
1934
+
1935
+ switch ($this->tokens[$i]['code']) {
1936
+ case T_PUBLIC:
1937
+ $scope = 'public';
1938
+ $scopeSpecified = true;
1939
+ break;
1940
+ case T_PRIVATE:
1941
+ $scope = 'private';
1942
+ $scopeSpecified = true;
1943
+ break;
1944
+ case T_PROTECTED:
1945
+ $scope = 'protected';
1946
+ $scopeSpecified = true;
1947
+ break;
1948
+ case T_STATIC:
1949
+ $isStatic = true;
1950
+ break;
1951
+ case T_READONLY:
1952
+ $isReadonly = true;
1953
+ break;
1954
+ }
1955
+ }//end for
1956
+
1957
+ $type = '';
1958
+ $typeToken = false;
1959
+ $typeEndToken = false;
1960
+ $nullableType = false;
1961
+
1962
+ if ($i < $stackPtr) {
1963
+ // We've found a type.
1964
+ $valid = [
1965
+ T_STRING => T_STRING,
1966
+ T_CALLABLE => T_CALLABLE,
1967
+ T_SELF => T_SELF,
1968
+ T_PARENT => T_PARENT,
1969
+ T_FALSE => T_FALSE,
1970
+ T_TRUE => T_TRUE,
1971
+ T_NULL => T_NULL,
1972
+ T_NAMESPACE => T_NAMESPACE,
1973
+ T_NS_SEPARATOR => T_NS_SEPARATOR,
1974
+ T_TYPE_UNION => T_TYPE_UNION,
1975
+ T_TYPE_INTERSECTION => T_TYPE_INTERSECTION,
1976
+ T_TYPE_OPEN_PARENTHESIS => T_TYPE_OPEN_PARENTHESIS,
1977
+ T_TYPE_CLOSE_PARENTHESIS => T_TYPE_CLOSE_PARENTHESIS,
1978
+ ];
1979
+
1980
+ for ($i; $i < $stackPtr; $i++) {
1981
+ if ($this->tokens[$i]['code'] === T_VARIABLE) {
1982
+ // Hit another variable in a group definition.
1983
+ break;
1984
+ }
1985
+
1986
+ if ($this->tokens[$i]['code'] === T_NULLABLE) {
1987
+ $nullableType = true;
1988
+ }
1989
+
1990
+ if (isset($valid[$this->tokens[$i]['code']]) === true) {
1991
+ $typeEndToken = $i;
1992
+ if ($typeToken === false) {
1993
+ $typeToken = $i;
1994
+ }
1995
+
1996
+ $type .= $this->tokens[$i]['content'];
1997
+ }
1998
+ }
1999
+
2000
+ if ($type !== '' && $nullableType === true) {
2001
+ $type = '?'.$type;
2002
+ }
2003
+ }//end if
2004
+
2005
+ return [
2006
+ 'scope' => $scope,
2007
+ 'scope_specified' => $scopeSpecified,
2008
+ 'is_static' => $isStatic,
2009
+ 'is_readonly' => $isReadonly,
2010
+ 'type' => $type,
2011
+ 'type_token' => $typeToken,
2012
+ 'type_end_token' => $typeEndToken,
2013
+ 'nullable_type' => $nullableType,
2014
+ ];
2015
+
2016
+ }//end getMemberProperties()
2017
+
2018
+
2019
+ /**
2020
+ * Returns the visibility and implementation properties of a class.
2021
+ *
2022
+ * The format of the return value is:
2023
+ * <code>
2024
+ * array(
2025
+ * 'is_abstract' => boolean, // TRUE if the abstract keyword was found.
2026
+ * 'is_final' => boolean, // TRUE if the final keyword was found.
2027
+ * 'is_readonly' => boolean, // TRUE if the readonly keyword was found.
2028
+ * );
2029
+ * </code>
2030
+ *
2031
+ * @param int $stackPtr The position in the stack of the T_CLASS token to
2032
+ * acquire the properties for.
2033
+ *
2034
+ * @return array
2035
+ * @throws \PHP_CodeSniffer\Exceptions\RuntimeException If the specified position is not a
2036
+ * T_CLASS token.
2037
+ */
2038
+ public function getClassProperties($stackPtr)
2039
+ {
2040
+ if ($this->tokens[$stackPtr]['code'] !== T_CLASS) {
2041
+ throw new RuntimeException('$stackPtr must be of type T_CLASS');
2042
+ }
2043
+
2044
+ $valid = [
2045
+ T_FINAL => T_FINAL,
2046
+ T_ABSTRACT => T_ABSTRACT,
2047
+ T_READONLY => T_READONLY,
2048
+ T_WHITESPACE => T_WHITESPACE,
2049
+ T_COMMENT => T_COMMENT,
2050
+ T_DOC_COMMENT => T_DOC_COMMENT,
2051
+ ];
2052
+
2053
+ $isAbstract = false;
2054
+ $isFinal = false;
2055
+ $isReadonly = false;
2056
+
2057
+ for ($i = ($stackPtr - 1); $i > 0; $i--) {
2058
+ if (isset($valid[$this->tokens[$i]['code']]) === false) {
2059
+ break;
2060
+ }
2061
+
2062
+ switch ($this->tokens[$i]['code']) {
2063
+ case T_ABSTRACT:
2064
+ $isAbstract = true;
2065
+ break;
2066
+
2067
+ case T_FINAL:
2068
+ $isFinal = true;
2069
+ break;
2070
+
2071
+ case T_READONLY:
2072
+ $isReadonly = true;
2073
+ break;
2074
+ }
2075
+ }//end for
2076
+
2077
+ return [
2078
+ 'is_abstract' => $isAbstract,
2079
+ 'is_final' => $isFinal,
2080
+ 'is_readonly' => $isReadonly,
2081
+ ];
2082
+
2083
+ }//end getClassProperties()
2084
+
2085
+
2086
+ /**
2087
+ * Determine if the passed token is a reference operator.
2088
+ *
2089
+ * Returns true if the specified token position represents a reference.
2090
+ * Returns false if the token represents a bitwise operator.
2091
+ *
2092
+ * @param int $stackPtr The position of the T_BITWISE_AND token.
2093
+ *
2094
+ * @return boolean
2095
+ */
2096
+ public function isReference($stackPtr)
2097
+ {
2098
+ if ($this->tokens[$stackPtr]['code'] !== T_BITWISE_AND) {
2099
+ return false;
2100
+ }
2101
+
2102
+ $tokenBefore = $this->findPrevious(
2103
+ Tokens::$emptyTokens,
2104
+ ($stackPtr - 1),
2105
+ null,
2106
+ true
2107
+ );
2108
+
2109
+ if ($this->tokens[$tokenBefore]['code'] === T_FUNCTION
2110
+ || $this->tokens[$tokenBefore]['code'] === T_CLOSURE
2111
+ || $this->tokens[$tokenBefore]['code'] === T_FN
2112
+ ) {
2113
+ // Function returns a reference.
2114
+ return true;
2115
+ }
2116
+
2117
+ if ($this->tokens[$tokenBefore]['code'] === T_DOUBLE_ARROW) {
2118
+ // Inside a foreach loop or array assignment, this is a reference.
2119
+ return true;
2120
+ }
2121
+
2122
+ if ($this->tokens[$tokenBefore]['code'] === T_AS) {
2123
+ // Inside a foreach loop, this is a reference.
2124
+ return true;
2125
+ }
2126
+
2127
+ if (isset(Tokens::$assignmentTokens[$this->tokens[$tokenBefore]['code']]) === true) {
2128
+ // This is directly after an assignment. It's a reference. Even if
2129
+ // it is part of an operation, the other tests will handle it.
2130
+ return true;
2131
+ }
2132
+
2133
+ $tokenAfter = $this->findNext(
2134
+ Tokens::$emptyTokens,
2135
+ ($stackPtr + 1),
2136
+ null,
2137
+ true
2138
+ );
2139
+
2140
+ if ($this->tokens[$tokenAfter]['code'] === T_NEW) {
2141
+ return true;
2142
+ }
2143
+
2144
+ if (isset($this->tokens[$stackPtr]['nested_parenthesis']) === true) {
2145
+ $brackets = $this->tokens[$stackPtr]['nested_parenthesis'];
2146
+ $lastBracket = array_pop($brackets);
2147
+ if (isset($this->tokens[$lastBracket]['parenthesis_owner']) === true) {
2148
+ $owner = $this->tokens[$this->tokens[$lastBracket]['parenthesis_owner']];
2149
+ if ($owner['code'] === T_FUNCTION
2150
+ || $owner['code'] === T_CLOSURE
2151
+ || $owner['code'] === T_FN
2152
+ ) {
2153
+ $params = $this->getMethodParameters($this->tokens[$lastBracket]['parenthesis_owner']);
2154
+ foreach ($params as $param) {
2155
+ if ($param['reference_token'] === $stackPtr) {
2156
+ // Function parameter declared to be passed by reference.
2157
+ return true;
2158
+ }
2159
+ }
2160
+ }//end if
2161
+ } else {
2162
+ $prev = false;
2163
+ for ($t = ($this->tokens[$lastBracket]['parenthesis_opener'] - 1); $t >= 0; $t--) {
2164
+ if ($this->tokens[$t]['code'] !== T_WHITESPACE) {
2165
+ $prev = $t;
2166
+ break;
2167
+ }
2168
+ }
2169
+
2170
+ if ($prev !== false && $this->tokens[$prev]['code'] === T_USE) {
2171
+ // Closure use by reference.
2172
+ return true;
2173
+ }
2174
+ }//end if
2175
+ }//end if
2176
+
2177
+ // Pass by reference in function calls and assign by reference in arrays.
2178
+ if ($this->tokens[$tokenBefore]['code'] === T_OPEN_PARENTHESIS
2179
+ || $this->tokens[$tokenBefore]['code'] === T_COMMA
2180
+ || $this->tokens[$tokenBefore]['code'] === T_OPEN_SHORT_ARRAY
2181
+ ) {
2182
+ if ($this->tokens[$tokenAfter]['code'] === T_VARIABLE) {
2183
+ return true;
2184
+ } else {
2185
+ $skip = Tokens::$emptyTokens;
2186
+ $skip[] = T_NS_SEPARATOR;
2187
+ $skip[] = T_SELF;
2188
+ $skip[] = T_PARENT;
2189
+ $skip[] = T_STATIC;
2190
+ $skip[] = T_STRING;
2191
+ $skip[] = T_NAMESPACE;
2192
+ $skip[] = T_DOUBLE_COLON;
2193
+
2194
+ $nextSignificantAfter = $this->findNext(
2195
+ $skip,
2196
+ ($stackPtr + 1),
2197
+ null,
2198
+ true
2199
+ );
2200
+ if ($this->tokens[$nextSignificantAfter]['code'] === T_VARIABLE) {
2201
+ return true;
2202
+ }
2203
+ }//end if
2204
+ }//end if
2205
+
2206
+ return false;
2207
+
2208
+ }//end isReference()
2209
+
2210
+
2211
+ /**
2212
+ * Returns the content of the tokens from the specified start position in
2213
+ * the token stack for the specified length.
2214
+ *
2215
+ * @param int $start The position to start from in the token stack.
2216
+ * @param int $length The length of tokens to traverse from the start pos.
2217
+ * @param bool $origContent Whether the original content or the tab replaced
2218
+ * content should be used.
2219
+ *
2220
+ * @return string The token contents.
2221
+ * @throws \PHP_CodeSniffer\Exceptions\RuntimeException If the specified position does not exist.
2222
+ */
2223
+ public function getTokensAsString($start, $length, $origContent=false)
2224
+ {
2225
+ if (is_int($start) === false || isset($this->tokens[$start]) === false) {
2226
+ throw new RuntimeException('The $start position for getTokensAsString() must exist in the token stack');
2227
+ }
2228
+
2229
+ if (is_int($length) === false || $length <= 0) {
2230
+ return '';
2231
+ }
2232
+
2233
+ $str = '';
2234
+ $end = ($start + $length);
2235
+ if ($end > $this->numTokens) {
2236
+ $end = $this->numTokens;
2237
+ }
2238
+
2239
+ for ($i = $start; $i < $end; $i++) {
2240
+ // If tabs are being converted to spaces by the tokeniser, the
2241
+ // original content should be used instead of the converted content.
2242
+ if ($origContent === true && isset($this->tokens[$i]['orig_content']) === true) {
2243
+ $str .= $this->tokens[$i]['orig_content'];
2244
+ } else {
2245
+ $str .= $this->tokens[$i]['content'];
2246
+ }
2247
+ }
2248
+
2249
+ return $str;
2250
+
2251
+ }//end getTokensAsString()
2252
+
2253
+
2254
+ /**
2255
+ * Returns the position of the previous specified token(s).
2256
+ *
2257
+ * If a value is specified, the previous token of the specified type(s)
2258
+ * containing the specified value will be returned.
2259
+ *
2260
+ * Returns false if no token can be found.
2261
+ *
2262
+ * @param int|string|array $types The type(s) of tokens to search for.
2263
+ * @param int $start The position to start searching from in the
2264
+ * token stack.
2265
+ * @param int|null $end The end position to fail if no token is found.
2266
+ * if not specified or null, end will default to
2267
+ * the start of the token stack.
2268
+ * @param bool $exclude If true, find the previous token that is NOT of
2269
+ * the types specified in $types.
2270
+ * @param string|null $value The value that the token(s) must be equal to.
2271
+ * If value is omitted, tokens with any value will
2272
+ * be returned.
2273
+ * @param bool $local If true, tokens outside the current statement
2274
+ * will not be checked. IE. checking will stop
2275
+ * at the previous semicolon found.
2276
+ *
2277
+ * @return int|false
2278
+ * @see findNext()
2279
+ */
2280
+ public function findPrevious(
2281
+ $types,
2282
+ $start,
2283
+ $end=null,
2284
+ $exclude=false,
2285
+ $value=null,
2286
+ $local=false
2287
+ ) {
2288
+ $types = (array) $types;
2289
+
2290
+ if ($end === null) {
2291
+ $end = 0;
2292
+ }
2293
+
2294
+ for ($i = $start; $i >= $end; $i--) {
2295
+ $found = (bool) $exclude;
2296
+ foreach ($types as $type) {
2297
+ if ($this->tokens[$i]['code'] === $type) {
2298
+ $found = !$exclude;
2299
+ break;
2300
+ }
2301
+ }
2302
+
2303
+ if ($found === true) {
2304
+ if ($value === null) {
2305
+ return $i;
2306
+ } else if ($this->tokens[$i]['content'] === $value) {
2307
+ return $i;
2308
+ }
2309
+ }
2310
+
2311
+ if ($local === true) {
2312
+ if (isset($this->tokens[$i]['scope_opener']) === true
2313
+ && $i === $this->tokens[$i]['scope_closer']
2314
+ ) {
2315
+ $i = $this->tokens[$i]['scope_opener'];
2316
+ } else if (isset($this->tokens[$i]['bracket_opener']) === true
2317
+ && $i === $this->tokens[$i]['bracket_closer']
2318
+ ) {
2319
+ $i = $this->tokens[$i]['bracket_opener'];
2320
+ } else if (isset($this->tokens[$i]['parenthesis_opener']) === true
2321
+ && $i === $this->tokens[$i]['parenthesis_closer']
2322
+ ) {
2323
+ $i = $this->tokens[$i]['parenthesis_opener'];
2324
+ } else if ($this->tokens[$i]['code'] === T_SEMICOLON) {
2325
+ break;
2326
+ }
2327
+ }
2328
+ }//end for
2329
+
2330
+ return false;
2331
+
2332
+ }//end findPrevious()
2333
+
2334
+
2335
+ /**
2336
+ * Returns the position of the next specified token(s).
2337
+ *
2338
+ * If a value is specified, the next token of the specified type(s)
2339
+ * containing the specified value will be returned.
2340
+ *
2341
+ * Returns false if no token can be found.
2342
+ *
2343
+ * @param int|string|array $types The type(s) of tokens to search for.
2344
+ * @param int $start The position to start searching from in the
2345
+ * token stack.
2346
+ * @param int|null $end The end position to fail if no token is found.
2347
+ * if not specified or null, end will default to
2348
+ * the end of the token stack.
2349
+ * @param bool $exclude If true, find the next token that is NOT of
2350
+ * a type specified in $types.
2351
+ * @param string|null $value The value that the token(s) must be equal to.
2352
+ * If value is omitted, tokens with any value will
2353
+ * be returned.
2354
+ * @param bool $local If true, tokens outside the current statement
2355
+ * will not be checked. i.e., checking will stop
2356
+ * at the next semicolon found.
2357
+ *
2358
+ * @return int|false
2359
+ * @see findPrevious()
2360
+ */
2361
+ public function findNext(
2362
+ $types,
2363
+ $start,
2364
+ $end=null,
2365
+ $exclude=false,
2366
+ $value=null,
2367
+ $local=false
2368
+ ) {
2369
+ $types = (array) $types;
2370
+
2371
+ if ($end === null || $end > $this->numTokens) {
2372
+ $end = $this->numTokens;
2373
+ }
2374
+
2375
+ for ($i = $start; $i < $end; $i++) {
2376
+ $found = (bool) $exclude;
2377
+ foreach ($types as $type) {
2378
+ if ($this->tokens[$i]['code'] === $type) {
2379
+ $found = !$exclude;
2380
+ break;
2381
+ }
2382
+ }
2383
+
2384
+ if ($found === true) {
2385
+ if ($value === null) {
2386
+ return $i;
2387
+ } else if ($this->tokens[$i]['content'] === $value) {
2388
+ return $i;
2389
+ }
2390
+ }
2391
+
2392
+ if ($local === true && $this->tokens[$i]['code'] === T_SEMICOLON) {
2393
+ break;
2394
+ }
2395
+ }//end for
2396
+
2397
+ return false;
2398
+
2399
+ }//end findNext()
2400
+
2401
+
2402
+ /**
2403
+ * Returns the position of the first non-whitespace token in a statement.
2404
+ *
2405
+ * @param int $start The position to start searching from in the token stack.
2406
+ * @param int|string|array $ignore Token types that should not be considered stop points.
2407
+ *
2408
+ * @return int
2409
+ */
2410
+ public function findStartOfStatement($start, $ignore=null)
2411
+ {
2412
+ $startTokens = Tokens::$blockOpeners;
2413
+ $startTokens[T_OPEN_SHORT_ARRAY] = true;
2414
+ $startTokens[T_OPEN_TAG] = true;
2415
+ $startTokens[T_OPEN_TAG_WITH_ECHO] = true;
2416
+
2417
+ $endTokens = [
2418
+ T_CLOSE_TAG => true,
2419
+ T_COLON => true,
2420
+ T_COMMA => true,
2421
+ T_DOUBLE_ARROW => true,
2422
+ T_MATCH_ARROW => true,
2423
+ T_SEMICOLON => true,
2424
+ ];
2425
+
2426
+ if ($ignore !== null) {
2427
+ $ignore = (array) $ignore;
2428
+ foreach ($ignore as $code) {
2429
+ if (isset($startTokens[$code]) === true) {
2430
+ unset($startTokens[$code]);
2431
+ }
2432
+
2433
+ if (isset($endTokens[$code]) === true) {
2434
+ unset($endTokens[$code]);
2435
+ }
2436
+ }
2437
+ }
2438
+
2439
+ // If the start token is inside the case part of a match expression,
2440
+ // find the start of the condition. If it's in the statement part, find
2441
+ // the token that comes after the match arrow.
2442
+ if (empty($this->tokens[$start]['conditions']) === false) {
2443
+ $conditions = $this->tokens[$start]['conditions'];
2444
+ $lastConditionOwner = end($conditions);
2445
+ $matchExpression = key($conditions);
2446
+
2447
+ if ($lastConditionOwner === T_MATCH
2448
+ // Check if the $start token is at the same parentheses nesting level as the match token.
2449
+ && ((empty($this->tokens[$matchExpression]['nested_parenthesis']) === true
2450
+ && empty($this->tokens[$start]['nested_parenthesis']) === true)
2451
+ || ((empty($this->tokens[$matchExpression]['nested_parenthesis']) === false
2452
+ && empty($this->tokens[$start]['nested_parenthesis']) === false)
2453
+ && $this->tokens[$matchExpression]['nested_parenthesis'] === $this->tokens[$start]['nested_parenthesis']))
2454
+ ) {
2455
+ // Walk back to the previous match arrow (if it exists).
2456
+ $lastComma = null;
2457
+ $inNestedExpression = false;
2458
+ for ($prevMatch = $start; $prevMatch > $this->tokens[$matchExpression]['scope_opener']; $prevMatch--) {
2459
+ if ($prevMatch !== $start && $this->tokens[$prevMatch]['code'] === T_MATCH_ARROW) {
2460
+ break;
2461
+ }
2462
+
2463
+ if ($prevMatch !== $start && $this->tokens[$prevMatch]['code'] === T_COMMA) {
2464
+ $lastComma = $prevMatch;
2465
+ continue;
2466
+ }
2467
+
2468
+ // Skip nested statements.
2469
+ if (isset($this->tokens[$prevMatch]['bracket_opener']) === true
2470
+ && $prevMatch === $this->tokens[$prevMatch]['bracket_closer']
2471
+ ) {
2472
+ $prevMatch = $this->tokens[$prevMatch]['bracket_opener'];
2473
+ continue;
2474
+ }
2475
+
2476
+ if (isset($this->tokens[$prevMatch]['parenthesis_opener']) === true
2477
+ && $prevMatch === $this->tokens[$prevMatch]['parenthesis_closer']
2478
+ ) {
2479
+ $prevMatch = $this->tokens[$prevMatch]['parenthesis_opener'];
2480
+ continue;
2481
+ }
2482
+
2483
+ // Stop if we're _within_ a nested short array statement, which may contain comma's too.
2484
+ // No need to deal with parentheses, those are handled above via the `nested_parenthesis` checks.
2485
+ if (isset($this->tokens[$prevMatch]['bracket_opener']) === true
2486
+ && $this->tokens[$prevMatch]['bracket_closer'] > $start
2487
+ ) {
2488
+ $inNestedExpression = true;
2489
+ break;
2490
+ }
2491
+ }//end for
2492
+
2493
+ if ($inNestedExpression === false) {
2494
+ // $prevMatch will now either be the scope opener or a match arrow.
2495
+ // If it is the scope opener, go the first non-empty token after. $start will have been part of the first condition.
2496
+ if ($prevMatch <= $this->tokens[$matchExpression]['scope_opener']) {
2497
+ // We're before the arrow in the first case.
2498
+ $next = $this->findNext(Tokens::$emptyTokens, ($this->tokens[$matchExpression]['scope_opener'] + 1), null, true);
2499
+ if ($next === false) {
2500
+ // Shouldn't be possible.
2501
+ return $start;
2502
+ }
2503
+
2504
+ return $next;
2505
+ }
2506
+
2507
+ // Okay, so we found a match arrow.
2508
+ // If $start was part of the "next" condition, the last comma will be set.
2509
+ // Otherwise, $start must have been part of a return expression.
2510
+ if (isset($lastComma) === true && $lastComma > $prevMatch) {
2511
+ $prevMatch = $lastComma;
2512
+ }
2513
+
2514
+ // In both cases, go to the first non-empty token after.
2515
+ $next = $this->findNext(Tokens::$emptyTokens, ($prevMatch + 1), null, true);
2516
+ if ($next === false) {
2517
+ // Shouldn't be possible.
2518
+ return $start;
2519
+ }
2520
+
2521
+ return $next;
2522
+ }//end if
2523
+ }//end if
2524
+ }//end if
2525
+
2526
+ $lastNotEmpty = $start;
2527
+
2528
+ // If we are starting at a token that ends a scope block, skip to
2529
+ // the start and continue from there.
2530
+ // If we are starting at a token that ends a statement, skip this
2531
+ // token so we find the true start of the statement.
2532
+ while (isset($endTokens[$this->tokens[$start]['code']]) === true
2533
+ || (isset($this->tokens[$start]['scope_condition']) === true
2534
+ && $start === $this->tokens[$start]['scope_closer'])
2535
+ ) {
2536
+ if (isset($this->tokens[$start]['scope_condition']) === true) {
2537
+ $start = $this->tokens[$start]['scope_condition'];
2538
+ } else {
2539
+ $start--;
2540
+ }
2541
+ }
2542
+
2543
+ for ($i = $start; $i >= 0; $i--) {
2544
+ if (isset($startTokens[$this->tokens[$i]['code']]) === true
2545
+ || isset($endTokens[$this->tokens[$i]['code']]) === true
2546
+ ) {
2547
+ // Found the end of the previous statement.
2548
+ return $lastNotEmpty;
2549
+ }
2550
+
2551
+ if (isset($this->tokens[$i]['scope_opener']) === true
2552
+ && $i === $this->tokens[$i]['scope_closer']
2553
+ && $this->tokens[$i]['code'] !== T_CLOSE_PARENTHESIS
2554
+ && $this->tokens[$i]['code'] !== T_END_NOWDOC
2555
+ && $this->tokens[$i]['code'] !== T_END_HEREDOC
2556
+ && $this->tokens[$i]['code'] !== T_BREAK
2557
+ && $this->tokens[$i]['code'] !== T_RETURN
2558
+ && $this->tokens[$i]['code'] !== T_CONTINUE
2559
+ && $this->tokens[$i]['code'] !== T_THROW
2560
+ && $this->tokens[$i]['code'] !== T_EXIT
2561
+ ) {
2562
+ // Found the end of the previous scope block.
2563
+ return $lastNotEmpty;
2564
+ }
2565
+
2566
+ // Skip nested statements.
2567
+ if (isset($this->tokens[$i]['bracket_opener']) === true
2568
+ && $i === $this->tokens[$i]['bracket_closer']
2569
+ ) {
2570
+ $i = $this->tokens[$i]['bracket_opener'];
2571
+ } else if (isset($this->tokens[$i]['parenthesis_opener']) === true
2572
+ && $i === $this->tokens[$i]['parenthesis_closer']
2573
+ ) {
2574
+ $i = $this->tokens[$i]['parenthesis_opener'];
2575
+ } else if ($this->tokens[$i]['code'] === T_CLOSE_USE_GROUP) {
2576
+ $start = $this->findPrevious(T_OPEN_USE_GROUP, ($i - 1));
2577
+ if ($start !== false) {
2578
+ $i = $start;
2579
+ }
2580
+ }//end if
2581
+
2582
+ if (isset(Tokens::$emptyTokens[$this->tokens[$i]['code']]) === false) {
2583
+ $lastNotEmpty = $i;
2584
+ }
2585
+ }//end for
2586
+
2587
+ return 0;
2588
+
2589
+ }//end findStartOfStatement()
2590
+
2591
+
2592
+ /**
2593
+ * Returns the position of the last non-whitespace token in a statement.
2594
+ *
2595
+ * @param int $start The position to start searching from in the token stack.
2596
+ * @param int|string|array $ignore Token types that should not be considered stop points.
2597
+ *
2598
+ * @return int
2599
+ */
2600
+ public function findEndOfStatement($start, $ignore=null)
2601
+ {
2602
+ $endTokens = [
2603
+ T_COLON => true,
2604
+ T_COMMA => true,
2605
+ T_DOUBLE_ARROW => true,
2606
+ T_SEMICOLON => true,
2607
+ T_CLOSE_PARENTHESIS => true,
2608
+ T_CLOSE_SQUARE_BRACKET => true,
2609
+ T_CLOSE_CURLY_BRACKET => true,
2610
+ T_CLOSE_SHORT_ARRAY => true,
2611
+ T_OPEN_TAG => true,
2612
+ T_CLOSE_TAG => true,
2613
+ ];
2614
+
2615
+ if ($ignore !== null) {
2616
+ $ignore = (array) $ignore;
2617
+ foreach ($ignore as $code) {
2618
+ unset($endTokens[$code]);
2619
+ }
2620
+ }
2621
+
2622
+ // If the start token is inside the case part of a match expression,
2623
+ // advance to the match arrow and continue looking for the
2624
+ // end of the statement from there so that we skip over commas.
2625
+ if ($this->tokens[$start]['code'] !== T_MATCH_ARROW) {
2626
+ $matchExpression = $this->getCondition($start, T_MATCH);
2627
+ if ($matchExpression !== false) {
2628
+ $beforeArrow = true;
2629
+ $prevMatchArrow = $this->findPrevious(T_MATCH_ARROW, ($start - 1), $this->tokens[$matchExpression]['scope_opener']);
2630
+ if ($prevMatchArrow !== false) {
2631
+ $prevComma = $this->findNext(T_COMMA, ($prevMatchArrow + 1), $start);
2632
+ if ($prevComma === false) {
2633
+ // No comma between this token and the last match arrow,
2634
+ // so this token exists after the arrow and we can continue
2635
+ // checking as normal.
2636
+ $beforeArrow = false;
2637
+ }
2638
+ }
2639
+
2640
+ if ($beforeArrow === true) {
2641
+ $nextMatchArrow = $this->findNext(T_MATCH_ARROW, ($start + 1), $this->tokens[$matchExpression]['scope_closer']);
2642
+ if ($nextMatchArrow !== false) {
2643
+ $start = $nextMatchArrow;
2644
+ }
2645
+ }
2646
+ }//end if
2647
+ }//end if
2648
+
2649
+ $lastNotEmpty = $start;
2650
+ for ($i = $start; $i < $this->numTokens; $i++) {
2651
+ if ($i !== $start && isset($endTokens[$this->tokens[$i]['code']]) === true) {
2652
+ // Found the end of the statement.
2653
+ if ($this->tokens[$i]['code'] === T_CLOSE_PARENTHESIS
2654
+ || $this->tokens[$i]['code'] === T_CLOSE_SQUARE_BRACKET
2655
+ || $this->tokens[$i]['code'] === T_CLOSE_CURLY_BRACKET
2656
+ || $this->tokens[$i]['code'] === T_CLOSE_SHORT_ARRAY
2657
+ || $this->tokens[$i]['code'] === T_OPEN_TAG
2658
+ || $this->tokens[$i]['code'] === T_CLOSE_TAG
2659
+ ) {
2660
+ return $lastNotEmpty;
2661
+ }
2662
+
2663
+ return $i;
2664
+ }
2665
+
2666
+ // Skip nested statements.
2667
+ if (isset($this->tokens[$i]['scope_closer']) === true
2668
+ && ($i === $this->tokens[$i]['scope_opener']
2669
+ || $i === $this->tokens[$i]['scope_condition'])
2670
+ ) {
2671
+ if ($this->tokens[$i]['code'] === T_FN) {
2672
+ $lastNotEmpty = $this->tokens[$i]['scope_closer'];
2673
+ $i = ($this->tokens[$i]['scope_closer'] - 1);
2674
+ continue;
2675
+ }
2676
+
2677
+ if ($i === $start && isset(Tokens::$scopeOpeners[$this->tokens[$i]['code']]) === true) {
2678
+ return $this->tokens[$i]['scope_closer'];
2679
+ }
2680
+
2681
+ $i = $this->tokens[$i]['scope_closer'];
2682
+ } else if (isset($this->tokens[$i]['bracket_closer']) === true
2683
+ && $i === $this->tokens[$i]['bracket_opener']
2684
+ ) {
2685
+ $i = $this->tokens[$i]['bracket_closer'];
2686
+ } else if (isset($this->tokens[$i]['parenthesis_closer']) === true
2687
+ && $i === $this->tokens[$i]['parenthesis_opener']
2688
+ ) {
2689
+ $i = $this->tokens[$i]['parenthesis_closer'];
2690
+ } else if ($this->tokens[$i]['code'] === T_OPEN_USE_GROUP) {
2691
+ $end = $this->findNext(T_CLOSE_USE_GROUP, ($i + 1));
2692
+ if ($end !== false) {
2693
+ $i = $end;
2694
+ }
2695
+ }//end if
2696
+
2697
+ if (isset(Tokens::$emptyTokens[$this->tokens[$i]['code']]) === false) {
2698
+ $lastNotEmpty = $i;
2699
+ }
2700
+ }//end for
2701
+
2702
+ return ($this->numTokens - 1);
2703
+
2704
+ }//end findEndOfStatement()
2705
+
2706
+
2707
+ /**
2708
+ * Returns the position of the first token on a line, matching given type.
2709
+ *
2710
+ * Returns false if no token can be found.
2711
+ *
2712
+ * @param int|string|array $types The type(s) of tokens to search for.
2713
+ * @param int $start The position to start searching from in the
2714
+ * token stack.
2715
+ * @param bool $exclude If true, find the token that is NOT of
2716
+ * the types specified in $types.
2717
+ * @param string $value The value that the token must be equal to.
2718
+ * If value is omitted, tokens with any value will
2719
+ * be returned.
2720
+ *
2721
+ * @return int|false The first token which matches on the line containing the start
2722
+ * token, between the start of the line and the start token.
2723
+ * Note: The first token matching might be the start token.
2724
+ * FALSE when no matching token could be found between the start of
2725
+ * the line and the start token.
2726
+ */
2727
+ public function findFirstOnLine($types, $start, $exclude=false, $value=null)
2728
+ {
2729
+ if (is_array($types) === false) {
2730
+ $types = [$types];
2731
+ }
2732
+
2733
+ $foundToken = false;
2734
+
2735
+ for ($i = $start; $i >= 0; $i--) {
2736
+ if ($this->tokens[$i]['line'] < $this->tokens[$start]['line']) {
2737
+ break;
2738
+ }
2739
+
2740
+ $found = $exclude;
2741
+ foreach ($types as $type) {
2742
+ if ($exclude === false) {
2743
+ if ($this->tokens[$i]['code'] === $type) {
2744
+ $found = true;
2745
+ break;
2746
+ }
2747
+ } else {
2748
+ if ($this->tokens[$i]['code'] === $type) {
2749
+ $found = false;
2750
+ break;
2751
+ }
2752
+ }
2753
+ }
2754
+
2755
+ if ($found === true) {
2756
+ if ($value === null) {
2757
+ $foundToken = $i;
2758
+ } else if ($this->tokens[$i]['content'] === $value) {
2759
+ $foundToken = $i;
2760
+ }
2761
+ }
2762
+ }//end for
2763
+
2764
+ return $foundToken;
2765
+
2766
+ }//end findFirstOnLine()
2767
+
2768
+
2769
+ /**
2770
+ * Determine if the passed token has a condition of one of the passed types.
2771
+ *
2772
+ * @param int $stackPtr The position of the token we are checking.
2773
+ * @param int|string|array $types The type(s) of tokens to search for.
2774
+ *
2775
+ * @return boolean
2776
+ */
2777
+ public function hasCondition($stackPtr, $types)
2778
+ {
2779
+ // Check for the existence of the token.
2780
+ if (isset($this->tokens[$stackPtr]) === false) {
2781
+ return false;
2782
+ }
2783
+
2784
+ // Make sure the token has conditions.
2785
+ if (empty($this->tokens[$stackPtr]['conditions']) === true) {
2786
+ return false;
2787
+ }
2788
+
2789
+ $types = (array) $types;
2790
+ $conditions = $this->tokens[$stackPtr]['conditions'];
2791
+
2792
+ foreach ($types as $type) {
2793
+ if (in_array($type, $conditions, true) === true) {
2794
+ // We found a token with the required type.
2795
+ return true;
2796
+ }
2797
+ }
2798
+
2799
+ return false;
2800
+
2801
+ }//end hasCondition()
2802
+
2803
+
2804
+ /**
2805
+ * Return the position of the condition for the passed token.
2806
+ *
2807
+ * Returns FALSE if the token does not have the condition.
2808
+ *
2809
+ * @param int $stackPtr The position of the token we are checking.
2810
+ * @param int|string $type The type of token to search for.
2811
+ * @param bool $first If TRUE, will return the matched condition
2812
+ * furthest away from the passed token.
2813
+ * If FALSE, will return the matched condition
2814
+ * closest to the passed token.
2815
+ *
2816
+ * @return int|false
2817
+ */
2818
+ public function getCondition($stackPtr, $type, $first=true)
2819
+ {
2820
+ // Check for the existence of the token.
2821
+ if (isset($this->tokens[$stackPtr]) === false) {
2822
+ return false;
2823
+ }
2824
+
2825
+ // Make sure the token has conditions.
2826
+ if (empty($this->tokens[$stackPtr]['conditions']) === true) {
2827
+ return false;
2828
+ }
2829
+
2830
+ $conditions = $this->tokens[$stackPtr]['conditions'];
2831
+ if ($first === false) {
2832
+ $conditions = array_reverse($conditions, true);
2833
+ }
2834
+
2835
+ foreach ($conditions as $token => $condition) {
2836
+ if ($condition === $type) {
2837
+ return $token;
2838
+ }
2839
+ }
2840
+
2841
+ return false;
2842
+
2843
+ }//end getCondition()
2844
+
2845
+
2846
+ /**
2847
+ * Returns the name of the class that the specified class extends.
2848
+ * (works for classes, anonymous classes and interfaces)
2849
+ *
2850
+ * Returns FALSE on error or if there is no extended class name.
2851
+ *
2852
+ * @param int $stackPtr The stack position of the class.
2853
+ *
2854
+ * @return string|false
2855
+ */
2856
+ public function findExtendedClassName($stackPtr)
2857
+ {
2858
+ // Check for the existence of the token.
2859
+ if (isset($this->tokens[$stackPtr]) === false) {
2860
+ return false;
2861
+ }
2862
+
2863
+ if ($this->tokens[$stackPtr]['code'] !== T_CLASS
2864
+ && $this->tokens[$stackPtr]['code'] !== T_ANON_CLASS
2865
+ && $this->tokens[$stackPtr]['code'] !== T_INTERFACE
2866
+ ) {
2867
+ return false;
2868
+ }
2869
+
2870
+ if (isset($this->tokens[$stackPtr]['scope_opener']) === false) {
2871
+ return false;
2872
+ }
2873
+
2874
+ $classOpenerIndex = $this->tokens[$stackPtr]['scope_opener'];
2875
+ $extendsIndex = $this->findNext(T_EXTENDS, $stackPtr, $classOpenerIndex);
2876
+ if ($extendsIndex === false) {
2877
+ return false;
2878
+ }
2879
+
2880
+ $find = [
2881
+ T_NS_SEPARATOR,
2882
+ T_STRING,
2883
+ T_WHITESPACE,
2884
+ ];
2885
+
2886
+ $end = $this->findNext($find, ($extendsIndex + 1), ($classOpenerIndex + 1), true);
2887
+ $name = $this->getTokensAsString(($extendsIndex + 1), ($end - $extendsIndex - 1));
2888
+ $name = trim($name);
2889
+
2890
+ if ($name === '') {
2891
+ return false;
2892
+ }
2893
+
2894
+ return $name;
2895
+
2896
+ }//end findExtendedClassName()
2897
+
2898
+
2899
+ /**
2900
+ * Returns the names of the interfaces that the specified class or enum implements.
2901
+ *
2902
+ * Returns FALSE on error or if there are no implemented interface names.
2903
+ *
2904
+ * @param int $stackPtr The stack position of the class or enum token.
2905
+ *
2906
+ * @return array|false
2907
+ */
2908
+ public function findImplementedInterfaceNames($stackPtr)
2909
+ {
2910
+ // Check for the existence of the token.
2911
+ if (isset($this->tokens[$stackPtr]) === false) {
2912
+ return false;
2913
+ }
2914
+
2915
+ if ($this->tokens[$stackPtr]['code'] !== T_CLASS
2916
+ && $this->tokens[$stackPtr]['code'] !== T_ANON_CLASS
2917
+ && $this->tokens[$stackPtr]['code'] !== T_ENUM
2918
+ ) {
2919
+ return false;
2920
+ }
2921
+
2922
+ if (isset($this->tokens[$stackPtr]['scope_closer']) === false) {
2923
+ return false;
2924
+ }
2925
+
2926
+ $classOpenerIndex = $this->tokens[$stackPtr]['scope_opener'];
2927
+ $implementsIndex = $this->findNext(T_IMPLEMENTS, $stackPtr, $classOpenerIndex);
2928
+ if ($implementsIndex === false) {
2929
+ return false;
2930
+ }
2931
+
2932
+ $find = [
2933
+ T_NS_SEPARATOR,
2934
+ T_STRING,
2935
+ T_WHITESPACE,
2936
+ T_COMMA,
2937
+ ];
2938
+
2939
+ $end = $this->findNext($find, ($implementsIndex + 1), ($classOpenerIndex + 1), true);
2940
+ $name = $this->getTokensAsString(($implementsIndex + 1), ($end - $implementsIndex - 1));
2941
+ $name = trim($name);
2942
+
2943
+ if ($name === '') {
2944
+ return false;
2945
+ } else {
2946
+ $names = explode(',', $name);
2947
+ $names = array_map('trim', $names);
2948
+ return $names;
2949
+ }
2950
+
2951
+ }//end findImplementedInterfaceNames()
2952
+
2953
+
2954
+ }//end class