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,1738 @@
1
+ <?php
2
+ /**
3
+ * The base tokenizer class.
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\Tokenizers;
11
+
12
+ use PHP_CodeSniffer\Exceptions\TokenizerException;
13
+ use PHP_CodeSniffer\Util\Common;
14
+ use PHP_CodeSniffer\Util\Tokens;
15
+
16
+ abstract class Tokenizer
17
+ {
18
+
19
+ /**
20
+ * The config data for the run.
21
+ *
22
+ * @var \PHP_CodeSniffer\Config
23
+ */
24
+ protected $config = null;
25
+
26
+ /**
27
+ * The EOL char used in the content.
28
+ *
29
+ * @var string
30
+ */
31
+ protected $eolChar = '';
32
+
33
+ /**
34
+ * A token-based representation of the content.
35
+ *
36
+ * @var array
37
+ */
38
+ protected $tokens = [];
39
+
40
+ /**
41
+ * The number of tokens in the tokens array.
42
+ *
43
+ * @var integer
44
+ */
45
+ protected $numTokens = 0;
46
+
47
+ /**
48
+ * A list of tokens that are allowed to open a scope.
49
+ *
50
+ * @var array
51
+ */
52
+ public $scopeOpeners = [];
53
+
54
+ /**
55
+ * A list of tokens that end the scope.
56
+ *
57
+ * @var array
58
+ */
59
+ public $endScopeTokens = [];
60
+
61
+ /**
62
+ * Known lengths of tokens.
63
+ *
64
+ * @var array<string|int, int>
65
+ */
66
+ public $knownLengths = [];
67
+
68
+ /**
69
+ * A list of lines being ignored due to error suppression comments.
70
+ *
71
+ * @var array
72
+ */
73
+ public $ignoredLines = [];
74
+
75
+
76
+ /**
77
+ * Initialise and run the tokenizer.
78
+ *
79
+ * @param string $content The content to tokenize.
80
+ * @param \PHP_CodeSniffer\Config | null $config The config data for the run.
81
+ * @param string $eolChar The EOL char used in the content.
82
+ *
83
+ * @return void
84
+ * @throws \PHP_CodeSniffer\Exceptions\TokenizerException If the file appears to be minified.
85
+ */
86
+ public function __construct($content, $config, $eolChar='\n')
87
+ {
88
+ $this->eolChar = $eolChar;
89
+
90
+ $this->config = $config;
91
+ $this->tokens = $this->tokenize($content);
92
+
93
+ if ($config === null) {
94
+ return;
95
+ }
96
+
97
+ $this->createPositionMap();
98
+ $this->createTokenMap();
99
+ $this->createParenthesisNestingMap();
100
+ $this->createScopeMap();
101
+ $this->createLevelMap();
102
+
103
+ // Allow the tokenizer to do additional processing if required.
104
+ $this->processAdditional();
105
+
106
+ }//end __construct()
107
+
108
+
109
+ /**
110
+ * Checks the content to see if it looks minified.
111
+ *
112
+ * @param string $content The content to tokenize.
113
+ * @param string $eolChar The EOL char used in the content.
114
+ *
115
+ * @return boolean
116
+ */
117
+ protected function isMinifiedContent($content, $eolChar='\n')
118
+ {
119
+ // Minified files often have a very large number of characters per line
120
+ // and cause issues when tokenizing.
121
+ $numChars = strlen($content);
122
+ $numLines = (substr_count($content, $eolChar) + 1);
123
+ $average = ($numChars / $numLines);
124
+ if ($average > 100) {
125
+ return true;
126
+ }
127
+
128
+ return false;
129
+
130
+ }//end isMinifiedContent()
131
+
132
+
133
+ /**
134
+ * Gets the array of tokens.
135
+ *
136
+ * @return array
137
+ */
138
+ public function getTokens()
139
+ {
140
+ return $this->tokens;
141
+
142
+ }//end getTokens()
143
+
144
+
145
+ /**
146
+ * Creates an array of tokens when given some content.
147
+ *
148
+ * @param string $string The string to tokenize.
149
+ *
150
+ * @return array
151
+ */
152
+ abstract protected function tokenize($string);
153
+
154
+
155
+ /**
156
+ * Performs additional processing after main tokenizing.
157
+ *
158
+ * @return void
159
+ */
160
+ abstract protected function processAdditional();
161
+
162
+
163
+ /**
164
+ * Sets token position information.
165
+ *
166
+ * Can also convert tabs into spaces. Each tab can represent between
167
+ * 1 and $width spaces, so this cannot be a straight string replace.
168
+ *
169
+ * @return void
170
+ */
171
+ private function createPositionMap()
172
+ {
173
+ $currColumn = 1;
174
+ $lineNumber = 1;
175
+ $eolLen = strlen($this->eolChar);
176
+ $ignoring = null;
177
+ $inTests = defined('PHP_CODESNIFFER_IN_TESTS');
178
+
179
+ $checkEncoding = false;
180
+ if (function_exists('iconv_strlen') === true) {
181
+ $checkEncoding = true;
182
+ }
183
+
184
+ $checkAnnotations = $this->config->annotations;
185
+ $encoding = $this->config->encoding;
186
+ $tabWidth = $this->config->tabWidth;
187
+
188
+ $tokensWithTabs = [
189
+ T_WHITESPACE => true,
190
+ T_COMMENT => true,
191
+ T_DOC_COMMENT => true,
192
+ T_DOC_COMMENT_WHITESPACE => true,
193
+ T_DOC_COMMENT_STRING => true,
194
+ T_CONSTANT_ENCAPSED_STRING => true,
195
+ T_DOUBLE_QUOTED_STRING => true,
196
+ T_START_HEREDOC => true,
197
+ T_START_NOWDOC => true,
198
+ T_HEREDOC => true,
199
+ T_NOWDOC => true,
200
+ T_END_HEREDOC => true,
201
+ T_END_NOWDOC => true,
202
+ T_INLINE_HTML => true,
203
+ T_YIELD_FROM => true,
204
+ ];
205
+
206
+ $this->numTokens = count($this->tokens);
207
+ for ($i = 0; $i < $this->numTokens; $i++) {
208
+ $this->tokens[$i]['line'] = $lineNumber;
209
+ $this->tokens[$i]['column'] = $currColumn;
210
+
211
+ if (isset($this->knownLengths[$this->tokens[$i]['code']]) === true) {
212
+ // There are no tabs in the tokens we know the length of.
213
+ $length = $this->knownLengths[$this->tokens[$i]['code']];
214
+ $currColumn += $length;
215
+ } else if ($tabWidth === 0
216
+ || isset($tokensWithTabs[$this->tokens[$i]['code']]) === false
217
+ || strpos($this->tokens[$i]['content'], "\t") === false
218
+ ) {
219
+ // There are no tabs in this content, or we aren't replacing them.
220
+ if ($checkEncoding === true) {
221
+ // Not using the default encoding, so take a bit more care.
222
+ $oldLevel = error_reporting();
223
+ error_reporting(0);
224
+ $length = iconv_strlen($this->tokens[$i]['content'], $encoding);
225
+ error_reporting($oldLevel);
226
+
227
+ if ($length === false) {
228
+ // String contained invalid characters, so revert to default.
229
+ $length = strlen($this->tokens[$i]['content']);
230
+ }
231
+ } else {
232
+ $length = strlen($this->tokens[$i]['content']);
233
+ }
234
+
235
+ $currColumn += $length;
236
+ } else {
237
+ $this->replaceTabsInToken($this->tokens[$i]);
238
+ $length = $this->tokens[$i]['length'];
239
+ $currColumn += $length;
240
+ }//end if
241
+
242
+ $this->tokens[$i]['length'] = $length;
243
+
244
+ if (isset($this->knownLengths[$this->tokens[$i]['code']]) === false
245
+ && strpos($this->tokens[$i]['content'], $this->eolChar) !== false
246
+ ) {
247
+ $lineNumber++;
248
+ $currColumn = 1;
249
+
250
+ // Newline chars are not counted in the token length.
251
+ $this->tokens[$i]['length'] -= $eolLen;
252
+ }
253
+
254
+ if ($this->tokens[$i]['code'] === T_COMMENT
255
+ || $this->tokens[$i]['code'] === T_DOC_COMMENT_STRING
256
+ || $this->tokens[$i]['code'] === T_DOC_COMMENT_TAG
257
+ || ($inTests === true && $this->tokens[$i]['code'] === T_INLINE_HTML)
258
+ ) {
259
+ $commentText = ltrim($this->tokens[$i]['content'], " \t/*#");
260
+ $commentText = rtrim($commentText, " */\t\r\n");
261
+ $commentTextLower = strtolower($commentText);
262
+ if (strpos($commentText, '@codingStandards') !== false) {
263
+ // If this comment is the only thing on the line, it tells us
264
+ // to ignore the following line. If the line contains other content
265
+ // then we are just ignoring this one single line.
266
+ $ownLine = false;
267
+ if ($i > 0) {
268
+ for ($prev = ($i - 1); $prev >= 0; $prev--) {
269
+ if ($this->tokens[$prev]['code'] === T_WHITESPACE) {
270
+ continue;
271
+ }
272
+
273
+ break;
274
+ }
275
+
276
+ if ($this->tokens[$prev]['line'] !== $this->tokens[$i]['line']) {
277
+ $ownLine = true;
278
+ }
279
+ }
280
+
281
+ if ($ignoring === null
282
+ && strpos($commentText, '@codingStandardsIgnoreStart') !== false
283
+ ) {
284
+ $ignoring = ['.all' => true];
285
+ if ($ownLine === true) {
286
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoring;
287
+ }
288
+ } else if ($ignoring !== null
289
+ && strpos($commentText, '@codingStandardsIgnoreEnd') !== false
290
+ ) {
291
+ if ($ownLine === true) {
292
+ $this->ignoredLines[$this->tokens[$i]['line']] = ['.all' => true];
293
+ } else {
294
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoring;
295
+ }
296
+
297
+ $ignoring = null;
298
+ } else if ($ignoring === null
299
+ && strpos($commentText, '@codingStandardsIgnoreLine') !== false
300
+ ) {
301
+ $ignoring = ['.all' => true];
302
+ if ($ownLine === true) {
303
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoring;
304
+ $this->ignoredLines[($this->tokens[$i]['line'] + 1)] = $ignoring;
305
+ } else {
306
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoring;
307
+ }
308
+
309
+ $ignoring = null;
310
+ }//end if
311
+ } else if (substr($commentTextLower, 0, 6) === 'phpcs:'
312
+ || substr($commentTextLower, 0, 7) === '@phpcs:'
313
+ ) {
314
+ // If the @phpcs: syntax is being used, strip the @ to make
315
+ // comparisons easier.
316
+ if ($commentText[0] === '@') {
317
+ $commentText = substr($commentText, 1);
318
+ $commentTextLower = strtolower($commentText);
319
+ }
320
+
321
+ // If there is a comment on the end, strip it off.
322
+ $commentStart = strpos($commentTextLower, ' --');
323
+ if ($commentStart !== false) {
324
+ $commentText = substr($commentText, 0, $commentStart);
325
+ $commentTextLower = strtolower($commentText);
326
+ }
327
+
328
+ // If this comment is the only thing on the line, it tells us
329
+ // to ignore the following line. If the line contains other content
330
+ // then we are just ignoring this one single line.
331
+ $lineHasOtherContent = false;
332
+ $lineHasOtherTokens = false;
333
+ if ($i > 0) {
334
+ for ($prev = ($i - 1); $prev > 0; $prev--) {
335
+ if ($this->tokens[$prev]['line'] !== $this->tokens[$i]['line']) {
336
+ // Changed lines.
337
+ break;
338
+ }
339
+
340
+ if ($this->tokens[$prev]['code'] === T_WHITESPACE
341
+ || $this->tokens[$prev]['code'] === T_DOC_COMMENT_WHITESPACE
342
+ || ($this->tokens[$prev]['code'] === T_INLINE_HTML
343
+ && trim($this->tokens[$prev]['content']) === '')
344
+ ) {
345
+ continue;
346
+ }
347
+
348
+ $lineHasOtherTokens = true;
349
+
350
+ if ($this->tokens[$prev]['code'] === T_OPEN_TAG
351
+ || $this->tokens[$prev]['code'] === T_DOC_COMMENT_STAR
352
+ ) {
353
+ continue;
354
+ }
355
+
356
+ $lineHasOtherContent = true;
357
+ break;
358
+ }//end for
359
+
360
+ $changedLines = false;
361
+ for ($next = $i; $next < $this->numTokens; $next++) {
362
+ if ($changedLines === true) {
363
+ // Changed lines.
364
+ break;
365
+ }
366
+
367
+ if (isset($this->knownLengths[$this->tokens[$next]['code']]) === false
368
+ && strpos($this->tokens[$next]['content'], $this->eolChar) !== false
369
+ ) {
370
+ // Last token on the current line.
371
+ $changedLines = true;
372
+ }
373
+
374
+ if ($next === $i) {
375
+ continue;
376
+ }
377
+
378
+ if ($this->tokens[$next]['code'] === T_WHITESPACE
379
+ || $this->tokens[$next]['code'] === T_DOC_COMMENT_WHITESPACE
380
+ || ($this->tokens[$next]['code'] === T_INLINE_HTML
381
+ && trim($this->tokens[$next]['content']) === '')
382
+ ) {
383
+ continue;
384
+ }
385
+
386
+ $lineHasOtherTokens = true;
387
+
388
+ if ($this->tokens[$next]['code'] === T_CLOSE_TAG) {
389
+ continue;
390
+ }
391
+
392
+ $lineHasOtherContent = true;
393
+ break;
394
+ }//end for
395
+ }//end if
396
+
397
+ if (substr($commentTextLower, 0, 9) === 'phpcs:set') {
398
+ // Ignore standards for complete lines that change sniff settings.
399
+ if ($lineHasOtherTokens === false) {
400
+ $this->ignoredLines[$this->tokens[$i]['line']] = ['.all' => true];
401
+ }
402
+
403
+ // Need to maintain case here, to get the correct sniff code.
404
+ $parts = explode(' ', substr($commentText, 10));
405
+ if (count($parts) >= 2) {
406
+ $sniffParts = explode('.', $parts[0]);
407
+ if (count($sniffParts) >= 3) {
408
+ $this->tokens[$i]['sniffCode'] = array_shift($parts);
409
+ $this->tokens[$i]['sniffProperty'] = array_shift($parts);
410
+ $this->tokens[$i]['sniffPropertyValue'] = rtrim(implode(' ', $parts), " */\r\n");
411
+ }
412
+ }
413
+
414
+ $this->tokens[$i]['code'] = T_PHPCS_SET;
415
+ $this->tokens[$i]['type'] = 'T_PHPCS_SET';
416
+ } else if (substr($commentTextLower, 0, 16) === 'phpcs:ignorefile') {
417
+ // The whole file will be ignored, but at least set the correct token.
418
+ $this->tokens[$i]['code'] = T_PHPCS_IGNORE_FILE;
419
+ $this->tokens[$i]['type'] = 'T_PHPCS_IGNORE_FILE';
420
+ } else if (substr($commentTextLower, 0, 13) === 'phpcs:disable') {
421
+ if ($lineHasOtherContent === false) {
422
+ // Completely ignore the comment line.
423
+ $this->ignoredLines[$this->tokens[$i]['line']] = ['.all' => true];
424
+ }
425
+
426
+ if ($ignoring === null) {
427
+ $ignoring = [];
428
+ }
429
+
430
+ $disabledSniffs = [];
431
+
432
+ $additionalText = substr($commentText, 14);
433
+ if (empty($additionalText) === true) {
434
+ $ignoring = ['.all' => true];
435
+ } else {
436
+ $parts = explode(',', $additionalText);
437
+ foreach ($parts as $sniffCode) {
438
+ $sniffCode = trim($sniffCode);
439
+ $disabledSniffs[$sniffCode] = true;
440
+ $ignoring[$sniffCode] = true;
441
+
442
+ // This newly disabled sniff might be disabling an existing
443
+ // enabled exception that we are tracking.
444
+ if (isset($ignoring['.except']) === true) {
445
+ foreach (array_keys($ignoring['.except']) as $ignoredSniffCode) {
446
+ if ($ignoredSniffCode === $sniffCode
447
+ || strpos($ignoredSniffCode, $sniffCode.'.') === 0
448
+ ) {
449
+ unset($ignoring['.except'][$ignoredSniffCode]);
450
+ }
451
+ }
452
+
453
+ if (empty($ignoring['.except']) === true) {
454
+ unset($ignoring['.except']);
455
+ }
456
+ }
457
+ }//end foreach
458
+ }//end if
459
+
460
+ $this->tokens[$i]['code'] = T_PHPCS_DISABLE;
461
+ $this->tokens[$i]['type'] = 'T_PHPCS_DISABLE';
462
+ $this->tokens[$i]['sniffCodes'] = $disabledSniffs;
463
+ } else if (substr($commentTextLower, 0, 12) === 'phpcs:enable') {
464
+ if ($ignoring !== null) {
465
+ $enabledSniffs = [];
466
+
467
+ $additionalText = substr($commentText, 13);
468
+ if (empty($additionalText) === true) {
469
+ $ignoring = null;
470
+ } else {
471
+ $parts = explode(',', $additionalText);
472
+ foreach ($parts as $sniffCode) {
473
+ $sniffCode = trim($sniffCode);
474
+ $enabledSniffs[$sniffCode] = true;
475
+
476
+ // This new enabled sniff might remove previously disabled
477
+ // sniffs if it is actually a standard or category of sniffs.
478
+ foreach (array_keys($ignoring) as $ignoredSniffCode) {
479
+ if ($ignoredSniffCode === $sniffCode
480
+ || strpos($ignoredSniffCode, $sniffCode.'.') === 0
481
+ ) {
482
+ unset($ignoring[$ignoredSniffCode]);
483
+ }
484
+ }
485
+
486
+ // This new enabled sniff might be able to clear up
487
+ // previously enabled sniffs if it is actually a standard or
488
+ // category of sniffs.
489
+ if (isset($ignoring['.except']) === true) {
490
+ foreach (array_keys($ignoring['.except']) as $ignoredSniffCode) {
491
+ if ($ignoredSniffCode === $sniffCode
492
+ || strpos($ignoredSniffCode, $sniffCode.'.') === 0
493
+ ) {
494
+ unset($ignoring['.except'][$ignoredSniffCode]);
495
+ }
496
+ }
497
+ }
498
+ }//end foreach
499
+
500
+ if (empty($ignoring) === true) {
501
+ $ignoring = null;
502
+ } else {
503
+ if (isset($ignoring['.except']) === true) {
504
+ $ignoring['.except'] += $enabledSniffs;
505
+ } else {
506
+ $ignoring['.except'] = $enabledSniffs;
507
+ }
508
+ }
509
+ }//end if
510
+
511
+ if ($lineHasOtherContent === false) {
512
+ // Completely ignore the comment line.
513
+ $this->ignoredLines[$this->tokens[$i]['line']] = ['.all' => true];
514
+ } else {
515
+ // The comment is on the same line as the code it is ignoring,
516
+ // so respect the new ignore rules.
517
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoring;
518
+ }
519
+
520
+ $this->tokens[$i]['sniffCodes'] = $enabledSniffs;
521
+ }//end if
522
+
523
+ $this->tokens[$i]['code'] = T_PHPCS_ENABLE;
524
+ $this->tokens[$i]['type'] = 'T_PHPCS_ENABLE';
525
+ } else if (substr($commentTextLower, 0, 12) === 'phpcs:ignore') {
526
+ $ignoreRules = [];
527
+
528
+ $additionalText = substr($commentText, 13);
529
+ if (empty($additionalText) === true) {
530
+ $ignoreRules = ['.all' => true];
531
+ } else {
532
+ $parts = explode(',', $additionalText);
533
+ foreach ($parts as $sniffCode) {
534
+ $ignoreRules[trim($sniffCode)] = true;
535
+ }
536
+ }
537
+
538
+ $this->tokens[$i]['code'] = T_PHPCS_IGNORE;
539
+ $this->tokens[$i]['type'] = 'T_PHPCS_IGNORE';
540
+ $this->tokens[$i]['sniffCodes'] = $ignoreRules;
541
+
542
+ if ($ignoring !== null) {
543
+ $ignoreRules += $ignoring;
544
+ }
545
+
546
+ if ($lineHasOtherContent === false) {
547
+ // Completely ignore the comment line, and set the following
548
+ // line to include the ignore rules we've set.
549
+ $this->ignoredLines[$this->tokens[$i]['line']] = ['.all' => true];
550
+ $this->ignoredLines[($this->tokens[$i]['line'] + 1)] = $ignoreRules;
551
+ } else {
552
+ // The comment is on the same line as the code it is ignoring,
553
+ // so respect the ignore rules it set.
554
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoreRules;
555
+ }
556
+ }//end if
557
+ }//end if
558
+ }//end if
559
+
560
+ if ($ignoring !== null && isset($this->ignoredLines[$this->tokens[$i]['line']]) === false) {
561
+ $this->ignoredLines[$this->tokens[$i]['line']] = $ignoring;
562
+ }
563
+ }//end for
564
+
565
+ // If annotations are being ignored, we clear out all the ignore rules
566
+ // but leave the annotations tokenized as normal.
567
+ if ($checkAnnotations === false) {
568
+ $this->ignoredLines = [];
569
+ }
570
+
571
+ }//end createPositionMap()
572
+
573
+
574
+ /**
575
+ * Replaces tabs in original token content with spaces.
576
+ *
577
+ * Each tab can represent between 1 and $config->tabWidth spaces,
578
+ * so this cannot be a straight string replace. The original content
579
+ * is placed into an orig_content index and the new token length is also
580
+ * set in the length index.
581
+ *
582
+ * @param array $token The token to replace tabs inside.
583
+ * @param string $prefix The character to use to represent the start of a tab.
584
+ * @param string $padding The character to use to represent the end of a tab.
585
+ * @param int $tabWidth The number of spaces each tab represents.
586
+ *
587
+ * @return void
588
+ */
589
+ public function replaceTabsInToken(&$token, $prefix=' ', $padding=' ', $tabWidth=null)
590
+ {
591
+ $checkEncoding = false;
592
+ if (function_exists('iconv_strlen') === true) {
593
+ $checkEncoding = true;
594
+ }
595
+
596
+ $currColumn = $token['column'];
597
+ if ($tabWidth === null) {
598
+ $tabWidth = $this->config->tabWidth;
599
+ if ($tabWidth === 0) {
600
+ $tabWidth = 1;
601
+ }
602
+ }
603
+
604
+ if (rtrim($token['content'], "\t") === '') {
605
+ // String only contains tabs, so we can shortcut the process.
606
+ $numTabs = strlen($token['content']);
607
+
608
+ $firstTabSize = ($tabWidth - (($currColumn - 1) % $tabWidth));
609
+ $length = ($firstTabSize + ($tabWidth * ($numTabs - 1)));
610
+ $newContent = $prefix.str_repeat($padding, ($length - 1));
611
+ } else {
612
+ // We need to determine the length of each tab.
613
+ $tabs = explode("\t", $token['content']);
614
+
615
+ $numTabs = (count($tabs) - 1);
616
+ $tabNum = 0;
617
+ $newContent = '';
618
+ $length = 0;
619
+
620
+ foreach ($tabs as $content) {
621
+ if ($content !== '') {
622
+ $newContent .= $content;
623
+ if ($checkEncoding === true) {
624
+ // Not using ASCII encoding, so take a bit more care.
625
+ $oldLevel = error_reporting();
626
+ error_reporting(0);
627
+ $contentLength = iconv_strlen($content, $this->config->encoding);
628
+ error_reporting($oldLevel);
629
+ if ($contentLength === false) {
630
+ // String contained invalid characters, so revert to default.
631
+ $contentLength = strlen($content);
632
+ }
633
+ } else {
634
+ $contentLength = strlen($content);
635
+ }
636
+
637
+ $currColumn += $contentLength;
638
+ $length += $contentLength;
639
+ }
640
+
641
+ // The last piece of content does not have a tab after it.
642
+ if ($tabNum === $numTabs) {
643
+ break;
644
+ }
645
+
646
+ // Process the tab that comes after the content.
647
+ $tabNum++;
648
+
649
+ // Move the pointer to the next tab stop.
650
+ $pad = ($tabWidth - ($currColumn + $tabWidth - 1) % $tabWidth);
651
+ $currColumn += $pad;
652
+ $length += $pad;
653
+ $newContent .= $prefix.str_repeat($padding, ($pad - 1));
654
+ }//end foreach
655
+ }//end if
656
+
657
+ $token['orig_content'] = $token['content'];
658
+ $token['content'] = $newContent;
659
+ $token['length'] = $length;
660
+
661
+ }//end replaceTabsInToken()
662
+
663
+
664
+ /**
665
+ * Creates a map of brackets positions.
666
+ *
667
+ * @return void
668
+ */
669
+ private function createTokenMap()
670
+ {
671
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
672
+ echo "\t*** START TOKEN MAP ***".PHP_EOL;
673
+ }
674
+
675
+ $squareOpeners = [];
676
+ $curlyOpeners = [];
677
+ $this->numTokens = count($this->tokens);
678
+
679
+ $openers = [];
680
+ $openOwner = null;
681
+
682
+ for ($i = 0; $i < $this->numTokens; $i++) {
683
+ /*
684
+ Parenthesis mapping.
685
+ */
686
+
687
+ if (isset(Tokens::$parenthesisOpeners[$this->tokens[$i]['code']]) === true) {
688
+ $this->tokens[$i]['parenthesis_opener'] = null;
689
+ $this->tokens[$i]['parenthesis_closer'] = null;
690
+ $this->tokens[$i]['parenthesis_owner'] = $i;
691
+ $openOwner = $i;
692
+
693
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
694
+ echo str_repeat("\t", (count($openers) + 1));
695
+ echo "=> Found parenthesis owner at $i".PHP_EOL;
696
+ }
697
+ } else if ($this->tokens[$i]['code'] === T_OPEN_PARENTHESIS) {
698
+ $openers[] = $i;
699
+ $this->tokens[$i]['parenthesis_opener'] = $i;
700
+ if ($openOwner !== null) {
701
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
702
+ echo str_repeat("\t", count($openers));
703
+ echo "=> Found parenthesis opener at $i for $openOwner".PHP_EOL;
704
+ }
705
+
706
+ $this->tokens[$openOwner]['parenthesis_opener'] = $i;
707
+ $this->tokens[$i]['parenthesis_owner'] = $openOwner;
708
+ $openOwner = null;
709
+ } else if (PHP_CODESNIFFER_VERBOSITY > 1) {
710
+ echo str_repeat("\t", count($openers));
711
+ echo "=> Found unowned parenthesis opener at $i".PHP_EOL;
712
+ }
713
+ } else if ($this->tokens[$i]['code'] === T_CLOSE_PARENTHESIS) {
714
+ // Did we set an owner for this set of parenthesis?
715
+ $numOpeners = count($openers);
716
+ if ($numOpeners !== 0) {
717
+ $opener = array_pop($openers);
718
+ if (isset($this->tokens[$opener]['parenthesis_owner']) === true) {
719
+ $owner = $this->tokens[$opener]['parenthesis_owner'];
720
+
721
+ $this->tokens[$owner]['parenthesis_closer'] = $i;
722
+ $this->tokens[$i]['parenthesis_owner'] = $owner;
723
+
724
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
725
+ echo str_repeat("\t", (count($openers) + 1));
726
+ echo "=> Found parenthesis closer at $i for $owner".PHP_EOL;
727
+ }
728
+ } else if (PHP_CODESNIFFER_VERBOSITY > 1) {
729
+ echo str_repeat("\t", (count($openers) + 1));
730
+ echo "=> Found unowned parenthesis closer at $i for $opener".PHP_EOL;
731
+ }
732
+
733
+ $this->tokens[$i]['parenthesis_opener'] = $opener;
734
+ $this->tokens[$i]['parenthesis_closer'] = $i;
735
+ $this->tokens[$opener]['parenthesis_closer'] = $i;
736
+ }//end if
737
+ } else if ($this->tokens[$i]['code'] === T_ATTRIBUTE) {
738
+ $openers[] = $i;
739
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
740
+ echo str_repeat("\t", count($openers));
741
+ echo "=> Found attribute opener at $i".PHP_EOL;
742
+ }
743
+
744
+ $this->tokens[$i]['attribute_opener'] = $i;
745
+ $this->tokens[$i]['attribute_closer'] = null;
746
+ } else if ($this->tokens[$i]['code'] === T_ATTRIBUTE_END) {
747
+ $numOpeners = count($openers);
748
+ if ($numOpeners !== 0) {
749
+ $opener = array_pop($openers);
750
+ if (isset($this->tokens[$opener]['attribute_opener']) === true) {
751
+ $this->tokens[$opener]['attribute_closer'] = $i;
752
+
753
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
754
+ echo str_repeat("\t", (count($openers) + 1));
755
+ echo "=> Found attribute closer at $i for $opener".PHP_EOL;
756
+ }
757
+
758
+ for ($x = ($opener + 1); $x <= $i; ++$x) {
759
+ if (isset($this->tokens[$x]['attribute_closer']) === true) {
760
+ continue;
761
+ }
762
+
763
+ $this->tokens[$x]['attribute_opener'] = $opener;
764
+ $this->tokens[$x]['attribute_closer'] = $i;
765
+ }
766
+ } else if (PHP_CODESNIFFER_VERBOSITY > 1) {
767
+ echo str_repeat("\t", (count($openers) + 1));
768
+ echo "=> Found unowned attribute closer at $i for $opener".PHP_EOL;
769
+ }
770
+ }//end if
771
+ }//end if
772
+
773
+ /*
774
+ Bracket mapping.
775
+ */
776
+
777
+ switch ($this->tokens[$i]['code']) {
778
+ case T_OPEN_SQUARE_BRACKET:
779
+ $squareOpeners[] = $i;
780
+
781
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
782
+ echo str_repeat("\t", count($squareOpeners));
783
+ echo str_repeat("\t", count($curlyOpeners));
784
+ echo "=> Found square bracket opener at $i".PHP_EOL;
785
+ }
786
+ break;
787
+ case T_OPEN_CURLY_BRACKET:
788
+ if (isset($this->tokens[$i]['scope_closer']) === false) {
789
+ $curlyOpeners[] = $i;
790
+
791
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
792
+ echo str_repeat("\t", count($squareOpeners));
793
+ echo str_repeat("\t", count($curlyOpeners));
794
+ echo "=> Found curly bracket opener at $i".PHP_EOL;
795
+ }
796
+ }
797
+ break;
798
+ case T_CLOSE_SQUARE_BRACKET:
799
+ if (empty($squareOpeners) === false) {
800
+ $opener = array_pop($squareOpeners);
801
+ $this->tokens[$i]['bracket_opener'] = $opener;
802
+ $this->tokens[$i]['bracket_closer'] = $i;
803
+ $this->tokens[$opener]['bracket_opener'] = $opener;
804
+ $this->tokens[$opener]['bracket_closer'] = $i;
805
+
806
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
807
+ echo str_repeat("\t", count($squareOpeners));
808
+ echo str_repeat("\t", count($curlyOpeners));
809
+ echo "\t=> Found square bracket closer at $i for $opener".PHP_EOL;
810
+ }
811
+ }
812
+ break;
813
+ case T_CLOSE_CURLY_BRACKET:
814
+ if (empty($curlyOpeners) === false
815
+ && isset($this->tokens[$i]['scope_opener']) === false
816
+ ) {
817
+ $opener = array_pop($curlyOpeners);
818
+ $this->tokens[$i]['bracket_opener'] = $opener;
819
+ $this->tokens[$i]['bracket_closer'] = $i;
820
+ $this->tokens[$opener]['bracket_opener'] = $opener;
821
+ $this->tokens[$opener]['bracket_closer'] = $i;
822
+
823
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
824
+ echo str_repeat("\t", count($squareOpeners));
825
+ echo str_repeat("\t", count($curlyOpeners));
826
+ echo "\t=> Found curly bracket closer at $i for $opener".PHP_EOL;
827
+ }
828
+ }
829
+ break;
830
+ default:
831
+ continue 2;
832
+ }//end switch
833
+ }//end for
834
+
835
+ // Cleanup for any openers that we didn't find closers for.
836
+ // This typically means there was a syntax error breaking things.
837
+ foreach ($openers as $opener) {
838
+ unset($this->tokens[$opener]['parenthesis_opener']);
839
+ unset($this->tokens[$opener]['parenthesis_owner']);
840
+ }
841
+
842
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
843
+ echo "\t*** END TOKEN MAP ***".PHP_EOL;
844
+ }
845
+
846
+ }//end createTokenMap()
847
+
848
+
849
+ /**
850
+ * Creates a map for the parenthesis tokens that surround other tokens.
851
+ *
852
+ * @return void
853
+ */
854
+ private function createParenthesisNestingMap()
855
+ {
856
+ $map = [];
857
+ for ($i = 0; $i < $this->numTokens; $i++) {
858
+ if (isset($this->tokens[$i]['parenthesis_opener']) === true
859
+ && $i === $this->tokens[$i]['parenthesis_opener']
860
+ ) {
861
+ if (empty($map) === false) {
862
+ $this->tokens[$i]['nested_parenthesis'] = $map;
863
+ }
864
+
865
+ if (isset($this->tokens[$i]['parenthesis_closer']) === true) {
866
+ $map[$this->tokens[$i]['parenthesis_opener']]
867
+ = $this->tokens[$i]['parenthesis_closer'];
868
+ }
869
+ } else if (isset($this->tokens[$i]['parenthesis_closer']) === true
870
+ && $i === $this->tokens[$i]['parenthesis_closer']
871
+ ) {
872
+ array_pop($map);
873
+ if (empty($map) === false) {
874
+ $this->tokens[$i]['nested_parenthesis'] = $map;
875
+ }
876
+ } else {
877
+ if (empty($map) === false) {
878
+ $this->tokens[$i]['nested_parenthesis'] = $map;
879
+ }
880
+ }//end if
881
+ }//end for
882
+
883
+ }//end createParenthesisNestingMap()
884
+
885
+
886
+ /**
887
+ * Creates a scope map of tokens that open scopes.
888
+ *
889
+ * @return void
890
+ * @see recurseScopeMap()
891
+ */
892
+ private function createScopeMap()
893
+ {
894
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
895
+ echo "\t*** START SCOPE MAP ***".PHP_EOL;
896
+ }
897
+
898
+ for ($i = 0; $i < $this->numTokens; $i++) {
899
+ // Check to see if the current token starts a new scope.
900
+ if (isset($this->scopeOpeners[$this->tokens[$i]['code']]) === true) {
901
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
902
+ $type = $this->tokens[$i]['type'];
903
+ $content = Common::prepareForOutput($this->tokens[$i]['content']);
904
+ echo "\tStart scope map at $i:$type => $content".PHP_EOL;
905
+ }
906
+
907
+ if (isset($this->tokens[$i]['scope_condition']) === true) {
908
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
909
+ echo "\t* already processed, skipping *".PHP_EOL;
910
+ }
911
+
912
+ continue;
913
+ }
914
+
915
+ $i = $this->recurseScopeMap($i);
916
+ }//end if
917
+ }//end for
918
+
919
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
920
+ echo "\t*** END SCOPE MAP ***".PHP_EOL;
921
+ }
922
+
923
+ }//end createScopeMap()
924
+
925
+
926
+ /**
927
+ * Recurses though the scope openers to build a scope map.
928
+ *
929
+ * @param int $stackPtr The position in the stack of the token that
930
+ * opened the scope (eg. an IF token or FOR token).
931
+ * @param int $depth How many scope levels down we are.
932
+ * @param int $ignore How many curly braces we are ignoring.
933
+ *
934
+ * @return int The position in the stack that closed the scope.
935
+ * @throws \PHP_CodeSniffer\Exceptions\TokenizerException If the nesting level gets too deep.
936
+ */
937
+ private function recurseScopeMap($stackPtr, $depth=1, &$ignore=0)
938
+ {
939
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
940
+ echo str_repeat("\t", $depth);
941
+ echo "=> Begin scope map recursion at token $stackPtr with depth $depth".PHP_EOL;
942
+ }
943
+
944
+ $opener = null;
945
+ $currType = $this->tokens[$stackPtr]['code'];
946
+ $startLine = $this->tokens[$stackPtr]['line'];
947
+
948
+ // We will need this to restore the value if we end up
949
+ // returning a token ID that causes our calling function to go back
950
+ // over already ignored braces.
951
+ $originalIgnore = $ignore;
952
+
953
+ // If the start token for this scope opener is the same as
954
+ // the scope token, we have already found our opener.
955
+ if (isset($this->scopeOpeners[$currType]['start'][$currType]) === true) {
956
+ $opener = $stackPtr;
957
+ }
958
+
959
+ for ($i = ($stackPtr + 1); $i < $this->numTokens; $i++) {
960
+ $tokenType = $this->tokens[$i]['code'];
961
+
962
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
963
+ $type = $this->tokens[$i]['type'];
964
+ $line = $this->tokens[$i]['line'];
965
+ $content = Common::prepareForOutput($this->tokens[$i]['content']);
966
+
967
+ echo str_repeat("\t", $depth);
968
+ echo "Process token $i on line $line [";
969
+ if ($opener !== null) {
970
+ echo "opener:$opener;";
971
+ }
972
+
973
+ if ($ignore > 0) {
974
+ echo "ignore=$ignore;";
975
+ }
976
+
977
+ echo "]: $type => $content".PHP_EOL;
978
+ }//end if
979
+
980
+ // Very special case for IF statements in PHP that can be defined without
981
+ // scope tokens. E.g., if (1) 1; 1 ? (1 ? 1 : 1) : 1;
982
+ // If an IF statement below this one has an opener but no
983
+ // keyword, the opener will be incorrectly assigned to this IF statement.
984
+ // The same case also applies to USE statements, which don't have to have
985
+ // openers, so a following USE statement can cause an incorrect brace match.
986
+ if (($currType === T_IF || $currType === T_ELSE || $currType === T_USE)
987
+ && $opener === null
988
+ && ($this->tokens[$i]['code'] === T_SEMICOLON
989
+ || $this->tokens[$i]['code'] === T_CLOSE_TAG)
990
+ ) {
991
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
992
+ $type = $this->tokens[$stackPtr]['type'];
993
+ echo str_repeat("\t", $depth);
994
+ if ($this->tokens[$i]['code'] === T_SEMICOLON) {
995
+ $closerType = 'semicolon';
996
+ } else {
997
+ $closerType = 'close tag';
998
+ }
999
+
1000
+ echo "=> Found $closerType before scope opener for $stackPtr:$type, bailing".PHP_EOL;
1001
+ }
1002
+
1003
+ return $i;
1004
+ }
1005
+
1006
+ // Special case for PHP control structures that have no braces.
1007
+ // If we find a curly brace closer before we find the opener,
1008
+ // we're not going to find an opener. That closer probably belongs to
1009
+ // a control structure higher up.
1010
+ if ($opener === null
1011
+ && $ignore === 0
1012
+ && $tokenType === T_CLOSE_CURLY_BRACKET
1013
+ && isset($this->scopeOpeners[$currType]['end'][$tokenType]) === true
1014
+ ) {
1015
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1016
+ $type = $this->tokens[$stackPtr]['type'];
1017
+ echo str_repeat("\t", $depth);
1018
+ echo "=> Found curly brace closer before scope opener for $stackPtr:$type, bailing".PHP_EOL;
1019
+ }
1020
+
1021
+ return ($i - 1);
1022
+ }
1023
+
1024
+ if ($opener !== null
1025
+ && (isset($this->tokens[$i]['scope_opener']) === false
1026
+ || $this->scopeOpeners[$this->tokens[$stackPtr]['code']]['shared'] === true)
1027
+ && isset($this->scopeOpeners[$currType]['end'][$tokenType]) === true
1028
+ ) {
1029
+ if ($ignore > 0 && $tokenType === T_CLOSE_CURLY_BRACKET) {
1030
+ // The last opening bracket must have been for a string
1031
+ // offset or alike, so let's ignore it.
1032
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1033
+ echo str_repeat("\t", $depth);
1034
+ echo '* finished ignoring curly brace *'.PHP_EOL;
1035
+ }
1036
+
1037
+ $ignore--;
1038
+ continue;
1039
+ } else if ($this->tokens[$opener]['code'] === T_OPEN_CURLY_BRACKET
1040
+ && $tokenType !== T_CLOSE_CURLY_BRACKET
1041
+ ) {
1042
+ // The opener is a curly bracket so the closer must be a curly bracket as well.
1043
+ // We ignore this closer to handle cases such as T_ELSE or T_ELSEIF being considered
1044
+ // a closer of T_IF when it should not.
1045
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1046
+ $type = $this->tokens[$stackPtr]['type'];
1047
+ echo str_repeat("\t", $depth);
1048
+ echo "=> Ignoring non-curly scope closer for $stackPtr:$type".PHP_EOL;
1049
+ }
1050
+ } else {
1051
+ $scopeCloser = $i;
1052
+ $todo = [
1053
+ $stackPtr,
1054
+ $opener,
1055
+ ];
1056
+
1057
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1058
+ $type = $this->tokens[$stackPtr]['type'];
1059
+ $closerType = $this->tokens[$scopeCloser]['type'];
1060
+ echo str_repeat("\t", $depth);
1061
+ echo "=> Found scope closer ($scopeCloser:$closerType) for $stackPtr:$type".PHP_EOL;
1062
+ }
1063
+
1064
+ $validCloser = true;
1065
+ if (($this->tokens[$stackPtr]['code'] === T_IF || $this->tokens[$stackPtr]['code'] === T_ELSEIF)
1066
+ && ($tokenType === T_ELSE || $tokenType === T_ELSEIF)
1067
+ ) {
1068
+ // To be a closer, this token must have an opener.
1069
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1070
+ echo str_repeat("\t", $depth);
1071
+ echo "* closer needs to be tested *".PHP_EOL;
1072
+ }
1073
+
1074
+ $i = self::recurseScopeMap($i, ($depth + 1), $ignore);
1075
+
1076
+ if (isset($this->tokens[$scopeCloser]['scope_opener']) === false) {
1077
+ $validCloser = false;
1078
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1079
+ echo str_repeat("\t", $depth);
1080
+ echo "* closer is not valid (no opener found) *".PHP_EOL;
1081
+ }
1082
+ } else if ($this->tokens[$this->tokens[$scopeCloser]['scope_opener']]['code'] !== $this->tokens[$opener]['code']) {
1083
+ $validCloser = false;
1084
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1085
+ echo str_repeat("\t", $depth);
1086
+ $type = $this->tokens[$this->tokens[$scopeCloser]['scope_opener']]['type'];
1087
+ $openerType = $this->tokens[$opener]['type'];
1088
+ echo "* closer is not valid (mismatched opener type; $type != $openerType) *".PHP_EOL;
1089
+ }
1090
+ } else if (PHP_CODESNIFFER_VERBOSITY > 1) {
1091
+ echo str_repeat("\t", $depth);
1092
+ echo "* closer was valid *".PHP_EOL;
1093
+ }
1094
+ } else {
1095
+ // The closer was not processed, so we need to
1096
+ // complete that token as well.
1097
+ $todo[] = $scopeCloser;
1098
+ }//end if
1099
+
1100
+ if ($validCloser === true) {
1101
+ foreach ($todo as $token) {
1102
+ $this->tokens[$token]['scope_condition'] = $stackPtr;
1103
+ $this->tokens[$token]['scope_opener'] = $opener;
1104
+ $this->tokens[$token]['scope_closer'] = $scopeCloser;
1105
+ }
1106
+
1107
+ if ($this->scopeOpeners[$this->tokens[$stackPtr]['code']]['shared'] === true) {
1108
+ // As we are going back to where we started originally, restore
1109
+ // the ignore value back to its original value.
1110
+ $ignore = $originalIgnore;
1111
+ return $opener;
1112
+ } else if ($scopeCloser === $i
1113
+ && isset($this->scopeOpeners[$tokenType]) === true
1114
+ ) {
1115
+ // Unset scope_condition here or else the token will appear to have
1116
+ // already been processed, and it will be skipped. Normally we want that,
1117
+ // but in this case, the token is both a closer and an opener, so
1118
+ // it needs to act like an opener. This is also why we return the
1119
+ // token before this one; so the closer has a chance to be processed
1120
+ // a second time, but as an opener.
1121
+ unset($this->tokens[$scopeCloser]['scope_condition']);
1122
+ return ($i - 1);
1123
+ } else {
1124
+ return $i;
1125
+ }
1126
+ } else {
1127
+ continue;
1128
+ }//end if
1129
+ }//end if
1130
+ }//end if
1131
+
1132
+ // Is this an opening condition ?
1133
+ if (isset($this->scopeOpeners[$tokenType]) === true) {
1134
+ if ($opener === null) {
1135
+ if ($tokenType === T_USE) {
1136
+ // PHP use keywords are special because they can be
1137
+ // used as blocks but also inline in function definitions.
1138
+ // So if we find them nested inside another opener, just skip them.
1139
+ continue;
1140
+ }
1141
+
1142
+ if ($tokenType === T_NAMESPACE) {
1143
+ // PHP namespace keywords are special because they can be
1144
+ // used as blocks but also inline as operators.
1145
+ // So if we find them nested inside another opener, just skip them.
1146
+ continue;
1147
+ }
1148
+
1149
+ if ($tokenType === T_FUNCTION
1150
+ && $this->tokens[$stackPtr]['code'] !== T_FUNCTION
1151
+ ) {
1152
+ // Probably a closure, so process it manually.
1153
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1154
+ $type = $this->tokens[$stackPtr]['type'];
1155
+ echo str_repeat("\t", $depth);
1156
+ echo "=> Found function before scope opener for $stackPtr:$type, processing manually".PHP_EOL;
1157
+ }
1158
+
1159
+ if (isset($this->tokens[$i]['scope_closer']) === true) {
1160
+ // We've already processed this closure.
1161
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1162
+ echo str_repeat("\t", $depth);
1163
+ echo '* already processed, skipping *'.PHP_EOL;
1164
+ }
1165
+
1166
+ $i = $this->tokens[$i]['scope_closer'];
1167
+ continue;
1168
+ }
1169
+
1170
+ $i = self::recurseScopeMap($i, ($depth + 1), $ignore);
1171
+ continue;
1172
+ }//end if
1173
+
1174
+ if ($tokenType === T_CLASS) {
1175
+ // Probably an anonymous class inside another anonymous class,
1176
+ // so process it manually.
1177
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1178
+ $type = $this->tokens[$stackPtr]['type'];
1179
+ echo str_repeat("\t", $depth);
1180
+ echo "=> Found class before scope opener for $stackPtr:$type, processing manually".PHP_EOL;
1181
+ }
1182
+
1183
+ if (isset($this->tokens[$i]['scope_closer']) === true) {
1184
+ // We've already processed this anon class.
1185
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1186
+ echo str_repeat("\t", $depth);
1187
+ echo '* already processed, skipping *'.PHP_EOL;
1188
+ }
1189
+
1190
+ $i = $this->tokens[$i]['scope_closer'];
1191
+ continue;
1192
+ }
1193
+
1194
+ $i = self::recurseScopeMap($i, ($depth + 1), $ignore);
1195
+ continue;
1196
+ }//end if
1197
+
1198
+ // Found another opening condition but still haven't
1199
+ // found our opener, so we are never going to find one.
1200
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1201
+ $type = $this->tokens[$stackPtr]['type'];
1202
+ echo str_repeat("\t", $depth);
1203
+ echo "=> Found new opening condition before scope opener for $stackPtr:$type, ";
1204
+ }
1205
+
1206
+ if (($this->tokens[$stackPtr]['code'] === T_IF
1207
+ || $this->tokens[$stackPtr]['code'] === T_ELSEIF
1208
+ || $this->tokens[$stackPtr]['code'] === T_ELSE)
1209
+ && ($this->tokens[$i]['code'] === T_ELSE
1210
+ || $this->tokens[$i]['code'] === T_ELSEIF)
1211
+ ) {
1212
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1213
+ echo "continuing".PHP_EOL;
1214
+ }
1215
+
1216
+ return ($i - 1);
1217
+ } else {
1218
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1219
+ echo "backtracking".PHP_EOL;
1220
+ }
1221
+
1222
+ return $stackPtr;
1223
+ }
1224
+ }//end if
1225
+
1226
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1227
+ echo str_repeat("\t", $depth);
1228
+ echo '* token is an opening condition *'.PHP_EOL;
1229
+ }
1230
+
1231
+ $isShared = ($this->scopeOpeners[$tokenType]['shared'] === true);
1232
+
1233
+ if (isset($this->tokens[$i]['scope_condition']) === true) {
1234
+ // We've been here before.
1235
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1236
+ echo str_repeat("\t", $depth);
1237
+ echo '* already processed, skipping *'.PHP_EOL;
1238
+ }
1239
+
1240
+ if ($isShared === false
1241
+ && isset($this->tokens[$i]['scope_closer']) === true
1242
+ ) {
1243
+ $i = $this->tokens[$i]['scope_closer'];
1244
+ }
1245
+
1246
+ continue;
1247
+ } else if ($currType === $tokenType
1248
+ && $isShared === false
1249
+ && $opener === null
1250
+ ) {
1251
+ // We haven't yet found our opener, but we have found another
1252
+ // scope opener which is the same type as us, and we don't
1253
+ // share openers, so we will never find one.
1254
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1255
+ echo str_repeat("\t", $depth);
1256
+ echo '* it was another token\'s opener, bailing *'.PHP_EOL;
1257
+ }
1258
+
1259
+ return $stackPtr;
1260
+ } else {
1261
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1262
+ echo str_repeat("\t", $depth);
1263
+ echo '* searching for opener *'.PHP_EOL;
1264
+ }
1265
+
1266
+ if (isset($this->scopeOpeners[$tokenType]['end'][T_CLOSE_CURLY_BRACKET]) === true) {
1267
+ $oldIgnore = $ignore;
1268
+ $ignore = 0;
1269
+ }
1270
+
1271
+ // PHP has a max nesting level for functions. Stop before we hit that limit
1272
+ // because too many loops means we've run into trouble anyway.
1273
+ if ($depth > 50) {
1274
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1275
+ echo str_repeat("\t", $depth);
1276
+ echo '* reached maximum nesting level; aborting *'.PHP_EOL;
1277
+ }
1278
+
1279
+ throw new TokenizerException('Maximum nesting level reached; file could not be processed');
1280
+ }
1281
+
1282
+ $oldDepth = $depth;
1283
+ if ($isShared === true
1284
+ && isset($this->scopeOpeners[$tokenType]['with'][$currType]) === true
1285
+ ) {
1286
+ // Don't allow the depth to increment because this is
1287
+ // possibly not a true nesting if we are sharing our closer.
1288
+ // This can happen, for example, when a SWITCH has a large
1289
+ // number of CASE statements with the same shared BREAK.
1290
+ $depth--;
1291
+ }
1292
+
1293
+ $i = self::recurseScopeMap($i, ($depth + 1), $ignore);
1294
+ $depth = $oldDepth;
1295
+
1296
+ if (isset($this->scopeOpeners[$tokenType]['end'][T_CLOSE_CURLY_BRACKET]) === true) {
1297
+ $ignore = $oldIgnore;
1298
+ }
1299
+ }//end if
1300
+ }//end if
1301
+
1302
+ if (isset($this->scopeOpeners[$currType]['start'][$tokenType]) === true
1303
+ && $opener === null
1304
+ ) {
1305
+ if ($tokenType === T_OPEN_CURLY_BRACKET) {
1306
+ if (isset($this->tokens[$stackPtr]['parenthesis_closer']) === true
1307
+ && $i < $this->tokens[$stackPtr]['parenthesis_closer']
1308
+ ) {
1309
+ // We found a curly brace inside the condition of the
1310
+ // current scope opener, so it must be a string offset.
1311
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1312
+ echo str_repeat("\t", $depth);
1313
+ echo '* ignoring curly brace inside condition *'.PHP_EOL;
1314
+ }
1315
+
1316
+ $ignore++;
1317
+ } else {
1318
+ // Make sure this is actually an opener and not a
1319
+ // string offset (e.g., $var{0}).
1320
+ for ($x = ($i - 1); $x > 0; $x--) {
1321
+ if (isset(Tokens::$emptyTokens[$this->tokens[$x]['code']]) === true) {
1322
+ continue;
1323
+ } else {
1324
+ // If the first non-whitespace/comment token looks like this
1325
+ // brace is a string offset, or this brace is mid-way through
1326
+ // a new statement, it isn't a scope opener.
1327
+ $disallowed = Tokens::$assignmentTokens;
1328
+ $disallowed += [
1329
+ T_DOLLAR => true,
1330
+ T_VARIABLE => true,
1331
+ T_OBJECT_OPERATOR => true,
1332
+ T_NULLSAFE_OBJECT_OPERATOR => true,
1333
+ T_COMMA => true,
1334
+ T_OPEN_PARENTHESIS => true,
1335
+ ];
1336
+
1337
+ if (isset($disallowed[$this->tokens[$x]['code']]) === true) {
1338
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1339
+ echo str_repeat("\t", $depth);
1340
+ echo '* ignoring curly brace *'.PHP_EOL;
1341
+ }
1342
+
1343
+ $ignore++;
1344
+ }
1345
+
1346
+ break;
1347
+ }//end if
1348
+ }//end for
1349
+ }//end if
1350
+ }//end if
1351
+
1352
+ if ($ignore === 0 || $tokenType !== T_OPEN_CURLY_BRACKET) {
1353
+ $openerNested = isset($this->tokens[$i]['nested_parenthesis']);
1354
+ $ownerNested = isset($this->tokens[$stackPtr]['nested_parenthesis']);
1355
+
1356
+ if (($openerNested === true && $ownerNested === false)
1357
+ || ($openerNested === false && $ownerNested === true)
1358
+ || ($openerNested === true
1359
+ && $this->tokens[$i]['nested_parenthesis'] !== $this->tokens[$stackPtr]['nested_parenthesis'])
1360
+ ) {
1361
+ // We found the a token that looks like the opener, but it's nested differently.
1362
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1363
+ $type = $this->tokens[$i]['type'];
1364
+ echo str_repeat("\t", $depth);
1365
+ echo "* ignoring possible opener $i:$type as nested parenthesis don't match *".PHP_EOL;
1366
+ }
1367
+ } else {
1368
+ // We found the opening scope token for $currType.
1369
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1370
+ $type = $this->tokens[$stackPtr]['type'];
1371
+ echo str_repeat("\t", $depth);
1372
+ echo "=> Found scope opener for $stackPtr:$type".PHP_EOL;
1373
+ }
1374
+
1375
+ $opener = $i;
1376
+ }
1377
+ }//end if
1378
+ } else if ($tokenType === T_SEMICOLON
1379
+ && $opener === null
1380
+ && (isset($this->tokens[$stackPtr]['parenthesis_closer']) === false
1381
+ || $i > $this->tokens[$stackPtr]['parenthesis_closer'])
1382
+ ) {
1383
+ // Found the end of a statement but still haven't
1384
+ // found our opener, so we are never going to find one.
1385
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1386
+ $type = $this->tokens[$stackPtr]['type'];
1387
+ echo str_repeat("\t", $depth);
1388
+ echo "=> Found end of statement before scope opener for $stackPtr:$type, continuing".PHP_EOL;
1389
+ }
1390
+
1391
+ return ($i - 1);
1392
+ } else if ($tokenType === T_OPEN_PARENTHESIS) {
1393
+ if (isset($this->tokens[$i]['parenthesis_owner']) === true) {
1394
+ $owner = $this->tokens[$i]['parenthesis_owner'];
1395
+ if (isset(Tokens::$scopeOpeners[$this->tokens[$owner]['code']]) === true
1396
+ && isset($this->tokens[$i]['parenthesis_closer']) === true
1397
+ ) {
1398
+ // If we get into here, then we opened a parenthesis for
1399
+ // a scope (eg. an if or else if) so we need to update the
1400
+ // start of the line so that when we check to see
1401
+ // if the closing parenthesis is more than n lines away from
1402
+ // the statement, we check from the closing parenthesis.
1403
+ $startLine = $this->tokens[$this->tokens[$i]['parenthesis_closer']]['line'];
1404
+ }
1405
+ }
1406
+ } else if ($tokenType === T_OPEN_CURLY_BRACKET && $opener !== null) {
1407
+ // We opened something that we don't have a scope opener for.
1408
+ // Examples of this are curly brackets for string offsets etc.
1409
+ // We want to ignore this so that we don't have an invalid scope
1410
+ // map.
1411
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1412
+ echo str_repeat("\t", $depth);
1413
+ echo '* ignoring curly brace *'.PHP_EOL;
1414
+ }
1415
+
1416
+ $ignore++;
1417
+ } else if ($tokenType === T_CLOSE_CURLY_BRACKET && $ignore > 0) {
1418
+ // We found the end token for the opener we were ignoring.
1419
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1420
+ echo str_repeat("\t", $depth);
1421
+ echo '* finished ignoring curly brace *'.PHP_EOL;
1422
+ }
1423
+
1424
+ $ignore--;
1425
+ } else if ($opener === null
1426
+ && isset($this->scopeOpeners[$currType]) === true
1427
+ ) {
1428
+ // If we still haven't found the opener after 30 lines,
1429
+ // we're not going to find it, unless we know it requires
1430
+ // an opener (in which case we better keep looking) or the last
1431
+ // token was empty (in which case we'll just confirm there is
1432
+ // more code in this file and not just a big comment).
1433
+ if ($this->tokens[$i]['line'] >= ($startLine + 30)
1434
+ && isset(Tokens::$emptyTokens[$this->tokens[($i - 1)]['code']]) === false
1435
+ ) {
1436
+ if ($this->scopeOpeners[$currType]['strict'] === true) {
1437
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1438
+ $type = $this->tokens[$stackPtr]['type'];
1439
+ $lines = ($this->tokens[$i]['line'] - $startLine);
1440
+ echo str_repeat("\t", $depth);
1441
+ echo "=> Still looking for $stackPtr:$type scope opener after $lines lines".PHP_EOL;
1442
+ }
1443
+ } else {
1444
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1445
+ $type = $this->tokens[$stackPtr]['type'];
1446
+ echo str_repeat("\t", $depth);
1447
+ echo "=> Couldn't find scope opener for $stackPtr:$type, bailing".PHP_EOL;
1448
+ }
1449
+
1450
+ return $stackPtr;
1451
+ }
1452
+ }
1453
+ } else if ($opener !== null
1454
+ && $tokenType !== T_BREAK
1455
+ && isset($this->endScopeTokens[$tokenType]) === true
1456
+ ) {
1457
+ if (isset($this->tokens[$i]['scope_condition']) === false) {
1458
+ if ($ignore > 0) {
1459
+ // We found the end token for the opener we were ignoring.
1460
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1461
+ echo str_repeat("\t", $depth);
1462
+ echo '* finished ignoring curly brace *'.PHP_EOL;
1463
+ }
1464
+
1465
+ $ignore--;
1466
+ } else {
1467
+ // We found a token that closes the scope but it doesn't
1468
+ // have a condition, so it belongs to another token and
1469
+ // our token doesn't have a closer, so pretend this is
1470
+ // the closer.
1471
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1472
+ $type = $this->tokens[$stackPtr]['type'];
1473
+ echo str_repeat("\t", $depth);
1474
+ echo "=> Found (unexpected) scope closer for $stackPtr:$type".PHP_EOL;
1475
+ }
1476
+
1477
+ foreach ([$stackPtr, $opener] as $token) {
1478
+ $this->tokens[$token]['scope_condition'] = $stackPtr;
1479
+ $this->tokens[$token]['scope_opener'] = $opener;
1480
+ $this->tokens[$token]['scope_closer'] = $i;
1481
+ }
1482
+
1483
+ return ($i - 1);
1484
+ }//end if
1485
+ }//end if
1486
+ }//end if
1487
+ }//end for
1488
+
1489
+ return $stackPtr;
1490
+
1491
+ }//end recurseScopeMap()
1492
+
1493
+
1494
+ /**
1495
+ * Constructs the level map.
1496
+ *
1497
+ * The level map adds a 'level' index to each token which indicates the
1498
+ * depth that a token within a set of scope blocks. It also adds a
1499
+ * 'conditions' index which is an array of the scope conditions that opened
1500
+ * each of the scopes - position 0 being the first scope opener.
1501
+ *
1502
+ * @return void
1503
+ */
1504
+ private function createLevelMap()
1505
+ {
1506
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1507
+ echo "\t*** START LEVEL MAP ***".PHP_EOL;
1508
+ }
1509
+
1510
+ $this->numTokens = count($this->tokens);
1511
+ $level = 0;
1512
+ $conditions = [];
1513
+ $lastOpener = null;
1514
+ $openers = [];
1515
+
1516
+ for ($i = 0; $i < $this->numTokens; $i++) {
1517
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1518
+ $type = $this->tokens[$i]['type'];
1519
+ $line = $this->tokens[$i]['line'];
1520
+ $len = $this->tokens[$i]['length'];
1521
+ $col = $this->tokens[$i]['column'];
1522
+
1523
+ $content = Common::prepareForOutput($this->tokens[$i]['content']);
1524
+
1525
+ echo str_repeat("\t", ($level + 1));
1526
+ echo "Process token $i on line $line [col:$col;len:$len;lvl:$level;";
1527
+ if (empty($conditions) !== true) {
1528
+ $conditionString = 'conds;';
1529
+ foreach ($conditions as $condition) {
1530
+ $conditionString .= Tokens::tokenName($condition).',';
1531
+ }
1532
+
1533
+ echo rtrim($conditionString, ',').';';
1534
+ }
1535
+
1536
+ echo "]: $type => $content".PHP_EOL;
1537
+ }//end if
1538
+
1539
+ $this->tokens[$i]['level'] = $level;
1540
+ $this->tokens[$i]['conditions'] = $conditions;
1541
+
1542
+ if (isset($this->tokens[$i]['scope_condition']) === true) {
1543
+ // Check to see if this token opened the scope.
1544
+ if ($this->tokens[$i]['scope_opener'] === $i) {
1545
+ $stackPtr = $this->tokens[$i]['scope_condition'];
1546
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1547
+ $type = $this->tokens[$stackPtr]['type'];
1548
+ echo str_repeat("\t", ($level + 1));
1549
+ echo "=> Found scope opener for $stackPtr:$type".PHP_EOL;
1550
+ }
1551
+
1552
+ $stackPtr = $this->tokens[$i]['scope_condition'];
1553
+
1554
+ // If we find a scope opener that has a shared closer,
1555
+ // then we need to go back over the condition map that we
1556
+ // just created and fix ourselves as we just added some
1557
+ // conditions where there was none. This happens for T_CASE
1558
+ // statements that are using the same break statement.
1559
+ if ($lastOpener !== null && $this->tokens[$lastOpener]['scope_closer'] === $this->tokens[$i]['scope_closer']) {
1560
+ // This opener shares its closer with the previous opener,
1561
+ // but we still need to check if the two openers share their
1562
+ // closer with each other directly (like CASE and DEFAULT)
1563
+ // or if they are just sharing because one doesn't have a
1564
+ // closer (like CASE with no BREAK using a SWITCHes closer).
1565
+ $thisType = $this->tokens[$this->tokens[$i]['scope_condition']]['code'];
1566
+ $opener = $this->tokens[$lastOpener]['scope_condition'];
1567
+
1568
+ $isShared = isset($this->scopeOpeners[$thisType]['with'][$this->tokens[$opener]['code']]);
1569
+
1570
+ reset($this->scopeOpeners[$thisType]['end']);
1571
+ reset($this->scopeOpeners[$this->tokens[$opener]['code']]['end']);
1572
+ $sameEnd = (current($this->scopeOpeners[$thisType]['end']) === current($this->scopeOpeners[$this->tokens[$opener]['code']]['end']));
1573
+
1574
+ if ($isShared === true && $sameEnd === true) {
1575
+ $badToken = $opener;
1576
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1577
+ $type = $this->tokens[$badToken]['type'];
1578
+ echo str_repeat("\t", ($level + 1));
1579
+ echo "* shared closer, cleaning up $badToken:$type *".PHP_EOL;
1580
+ }
1581
+
1582
+ for ($x = $this->tokens[$i]['scope_condition']; $x <= $i; $x++) {
1583
+ $oldConditions = $this->tokens[$x]['conditions'];
1584
+ $oldLevel = $this->tokens[$x]['level'];
1585
+ $this->tokens[$x]['level']--;
1586
+ unset($this->tokens[$x]['conditions'][$badToken]);
1587
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1588
+ $type = $this->tokens[$x]['type'];
1589
+ $oldConds = '';
1590
+ foreach ($oldConditions as $condition) {
1591
+ $oldConds .= Tokens::tokenName($condition).',';
1592
+ }
1593
+
1594
+ $oldConds = rtrim($oldConds, ',');
1595
+
1596
+ $newConds = '';
1597
+ foreach ($this->tokens[$x]['conditions'] as $condition) {
1598
+ $newConds .= Tokens::tokenName($condition).',';
1599
+ }
1600
+
1601
+ $newConds = rtrim($newConds, ',');
1602
+
1603
+ $newLevel = $this->tokens[$x]['level'];
1604
+ echo str_repeat("\t", ($level + 1));
1605
+ echo "* cleaned $x:$type *".PHP_EOL;
1606
+ echo str_repeat("\t", ($level + 2));
1607
+ echo "=> level changed from $oldLevel to $newLevel".PHP_EOL;
1608
+ echo str_repeat("\t", ($level + 2));
1609
+ echo "=> conditions changed from $oldConds to $newConds".PHP_EOL;
1610
+ }//end if
1611
+ }//end for
1612
+
1613
+ unset($conditions[$badToken]);
1614
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1615
+ $type = $this->tokens[$badToken]['type'];
1616
+ echo str_repeat("\t", ($level + 1));
1617
+ echo "* token $badToken:$type removed from conditions array *".PHP_EOL;
1618
+ }
1619
+
1620
+ unset($openers[$lastOpener]);
1621
+
1622
+ $level--;
1623
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1624
+ echo str_repeat("\t", ($level + 2));
1625
+ echo '* level decreased *'.PHP_EOL;
1626
+ }
1627
+ }//end if
1628
+ }//end if
1629
+
1630
+ $level++;
1631
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1632
+ echo str_repeat("\t", ($level + 1));
1633
+ echo '* level increased *'.PHP_EOL;
1634
+ }
1635
+
1636
+ $conditions[$stackPtr] = $this->tokens[$stackPtr]['code'];
1637
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1638
+ $type = $this->tokens[$stackPtr]['type'];
1639
+ echo str_repeat("\t", ($level + 1));
1640
+ echo "* token $stackPtr:$type added to conditions array *".PHP_EOL;
1641
+ }
1642
+
1643
+ $lastOpener = $this->tokens[$i]['scope_opener'];
1644
+ if ($lastOpener !== null) {
1645
+ $openers[$lastOpener] = $lastOpener;
1646
+ }
1647
+ } else if ($lastOpener !== null && $this->tokens[$lastOpener]['scope_closer'] === $i) {
1648
+ foreach (array_reverse($openers) as $opener) {
1649
+ if ($this->tokens[$opener]['scope_closer'] === $i) {
1650
+ $oldOpener = array_pop($openers);
1651
+ if (empty($openers) === false) {
1652
+ $lastOpener = array_pop($openers);
1653
+ $openers[$lastOpener] = $lastOpener;
1654
+ } else {
1655
+ $lastOpener = null;
1656
+ }
1657
+
1658
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1659
+ $type = $this->tokens[$oldOpener]['type'];
1660
+ echo str_repeat("\t", ($level + 1));
1661
+ echo "=> Found scope closer for $oldOpener:$type".PHP_EOL;
1662
+ }
1663
+
1664
+ $oldCondition = array_pop($conditions);
1665
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1666
+ echo str_repeat("\t", ($level + 1));
1667
+ echo '* token '.Tokens::tokenName($oldCondition).' removed from conditions array *'.PHP_EOL;
1668
+ }
1669
+
1670
+ // Make sure this closer actually belongs to us.
1671
+ // Either the condition also has to think this is the
1672
+ // closer, or it has to allow sharing with us.
1673
+ $condition = $this->tokens[$this->tokens[$i]['scope_condition']]['code'];
1674
+ if ($condition !== $oldCondition) {
1675
+ if (isset($this->scopeOpeners[$oldCondition]['with'][$condition]) === false) {
1676
+ $badToken = $this->tokens[$oldOpener]['scope_condition'];
1677
+
1678
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1679
+ $type = Tokens::tokenName($oldCondition);
1680
+ echo str_repeat("\t", ($level + 1));
1681
+ echo "* scope closer was bad, cleaning up $badToken:$type *".PHP_EOL;
1682
+ }
1683
+
1684
+ for ($x = ($oldOpener + 1); $x <= $i; $x++) {
1685
+ $oldConditions = $this->tokens[$x]['conditions'];
1686
+ $oldLevel = $this->tokens[$x]['level'];
1687
+ $this->tokens[$x]['level']--;
1688
+ unset($this->tokens[$x]['conditions'][$badToken]);
1689
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1690
+ $type = $this->tokens[$x]['type'];
1691
+ $oldConds = '';
1692
+ foreach ($oldConditions as $condition) {
1693
+ $oldConds .= Tokens::tokenName($condition).',';
1694
+ }
1695
+
1696
+ $oldConds = rtrim($oldConds, ',');
1697
+
1698
+ $newConds = '';
1699
+ foreach ($this->tokens[$x]['conditions'] as $condition) {
1700
+ $newConds .= Tokens::tokenName($condition).',';
1701
+ }
1702
+
1703
+ $newConds = rtrim($newConds, ',');
1704
+
1705
+ $newLevel = $this->tokens[$x]['level'];
1706
+ echo str_repeat("\t", ($level + 1));
1707
+ echo "* cleaned $x:$type *".PHP_EOL;
1708
+ echo str_repeat("\t", ($level + 2));
1709
+ echo "=> level changed from $oldLevel to $newLevel".PHP_EOL;
1710
+ echo str_repeat("\t", ($level + 2));
1711
+ echo "=> conditions changed from $oldConds to $newConds".PHP_EOL;
1712
+ }//end if
1713
+ }//end for
1714
+ }//end if
1715
+ }//end if
1716
+
1717
+ $level--;
1718
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1719
+ echo str_repeat("\t", ($level + 2));
1720
+ echo '* level decreased *'.PHP_EOL;
1721
+ }
1722
+
1723
+ $this->tokens[$i]['level'] = $level;
1724
+ $this->tokens[$i]['conditions'] = $conditions;
1725
+ }//end if
1726
+ }//end foreach
1727
+ }//end if
1728
+ }//end if
1729
+ }//end for
1730
+
1731
+ if (PHP_CODESNIFFER_VERBOSITY > 1) {
1732
+ echo "\t*** END LEVEL MAP ***".PHP_EOL;
1733
+ }
1734
+
1735
+ }//end createLevelMap()
1736
+
1737
+
1738
+ }//end class