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,3182 @@
1
+ <?php
2
+ /**
3
+ * Tests for the \PHP_CodeSniffer\Files\File::getMethodParameters method.
4
+ *
5
+ * @author Greg Sherwood <gsherwood@squiz.net>
6
+ * @author Juliette Reinders Folmer <phpcs_nospam@adviesenzo.nl>
7
+ * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
8
+ * @copyright 2019-2024 PHPCSStandards Contributors
9
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
10
+ */
11
+
12
+ namespace PHP_CodeSniffer\Tests\Core\File;
13
+
14
+ use PHP_CodeSniffer\Tests\Core\AbstractMethodUnitTest;
15
+
16
+ /**
17
+ * Tests for the \PHP_CodeSniffer\Files\File::getMethodParameters method.
18
+ *
19
+ * @covers \PHP_CodeSniffer\Files\File::getMethodParameters
20
+ */
21
+ final class GetMethodParametersTest extends AbstractMethodUnitTest
22
+ {
23
+
24
+
25
+ /**
26
+ * Test receiving an expected exception when a non function/use token is passed.
27
+ *
28
+ * @param string $commentString The comment which preceeds the test.
29
+ * @param int|string|array<int|string> $targetTokenType The token type to search for after $commentString.
30
+ *
31
+ * @dataProvider dataUnexpectedTokenException
32
+ *
33
+ * @return void
34
+ */
35
+ public function testUnexpectedTokenException($commentString, $targetTokenType)
36
+ {
37
+ $this->expectRunTimeException('$stackPtr must be of type T_FUNCTION or T_CLOSURE or T_USE or T_FN');
38
+
39
+ $target = $this->getTargetToken($commentString, $targetTokenType);
40
+ self::$phpcsFile->getMethodParameters($target);
41
+
42
+ }//end testUnexpectedTokenException()
43
+
44
+
45
+ /**
46
+ * Data Provider.
47
+ *
48
+ * @see testUnexpectedTokenException() For the array format.
49
+ *
50
+ * @return array<string, array<string, int|string|array<int|string>>>
51
+ */
52
+ public static function dataUnexpectedTokenException()
53
+ {
54
+ return [
55
+ 'interface' => [
56
+ 'commentString' => '/* testNotAFunction */',
57
+ 'targetTokenType' => T_INTERFACE,
58
+ ],
59
+ 'function-call-fn-phpcs-3.5.3-3.5.4' => [
60
+ 'commentString' => '/* testFunctionCallFnPHPCS353-354 */',
61
+ 'targetTokenType' => [
62
+ T_FN,
63
+ T_STRING,
64
+ ],
65
+ ],
66
+ 'fn-live-coding' => [
67
+ 'commentString' => '/* testArrowFunctionLiveCoding */',
68
+ 'targetTokenType' => [
69
+ T_FN,
70
+ T_STRING,
71
+ ],
72
+ ],
73
+ ];
74
+
75
+ }//end dataUnexpectedTokenException()
76
+
77
+
78
+ /**
79
+ * Test receiving an expected exception when a non-closure use token is passed.
80
+ *
81
+ * @param string $identifier The comment which preceeds the test.
82
+ *
83
+ * @dataProvider dataInvalidUse
84
+ *
85
+ * @return void
86
+ */
87
+ public function testInvalidUse($identifier)
88
+ {
89
+ $this->expectRunTimeException('$stackPtr was not a valid T_USE');
90
+
91
+ $use = $this->getTargetToken($identifier, [T_USE]);
92
+ self::$phpcsFile->getMethodParameters($use);
93
+
94
+ }//end testInvalidUse()
95
+
96
+
97
+ /**
98
+ * Data Provider.
99
+ *
100
+ * @see testInvalidUse() For the array format.
101
+ *
102
+ * @return array<string, array<string>>
103
+ */
104
+ public static function dataInvalidUse()
105
+ {
106
+ return [
107
+ 'ImportUse' => ['/* testImportUse */'],
108
+ 'ImportGroupUse' => ['/* testImportGroupUse */'],
109
+ 'TraitUse' => ['/* testTraitUse */'],
110
+ ];
111
+
112
+ }//end dataInvalidUse()
113
+
114
+
115
+ /**
116
+ * Test receiving an empty array when there are no parameters.
117
+ *
118
+ * @param string $commentString The comment which preceeds the test.
119
+ * @param int|string|array<int|string> $targetTokenType Optional. The token type to search for after $commentString.
120
+ * Defaults to the function/closure/arrow tokens.
121
+ *
122
+ * @dataProvider dataNoParams
123
+ *
124
+ * @return void
125
+ */
126
+ public function testNoParams($commentString, $targetTokenType=[T_FUNCTION, T_CLOSURE, T_FN])
127
+ {
128
+ $target = $this->getTargetToken($commentString, $targetTokenType);
129
+ $result = self::$phpcsFile->getMethodParameters($target);
130
+
131
+ $this->assertSame([], $result);
132
+
133
+ }//end testNoParams()
134
+
135
+
136
+ /**
137
+ * Data Provider.
138
+ *
139
+ * @see testNoParams() For the array format.
140
+ *
141
+ * @return array<string, array<int|string|array<int|string>>>
142
+ */
143
+ public static function dataNoParams()
144
+ {
145
+ return [
146
+ 'FunctionNoParams' => [
147
+ 'commentString' => '/* testFunctionNoParams */',
148
+ ],
149
+ 'ClosureNoParams' => [
150
+ 'commentString' => '/* testClosureNoParams */',
151
+ ],
152
+ 'ClosureUseNoParams' => [
153
+ 'commentString' => '/* testClosureUseNoParams */',
154
+ 'targetTokenType' => T_USE,
155
+ ],
156
+ ];
157
+
158
+ }//end dataNoParams()
159
+
160
+
161
+ /**
162
+ * Verify pass-by-reference parsing.
163
+ *
164
+ * @return void
165
+ */
166
+ public function testPassByReference()
167
+ {
168
+ // Offsets are relative to the T_FUNCTION token.
169
+ $expected = [];
170
+ $expected[0] = [
171
+ 'token' => 5,
172
+ 'name' => '$var',
173
+ 'content' => '&$var',
174
+ 'has_attributes' => false,
175
+ 'pass_by_reference' => true,
176
+ 'reference_token' => 4,
177
+ 'variable_length' => false,
178
+ 'variadic_token' => false,
179
+ 'type_hint' => '',
180
+ 'type_hint_token' => false,
181
+ 'type_hint_end_token' => false,
182
+ 'nullable_type' => false,
183
+ 'comma_token' => false,
184
+ ];
185
+
186
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
187
+
188
+ }//end testPassByReference()
189
+
190
+
191
+ /**
192
+ * Verify array hint parsing.
193
+ *
194
+ * @return void
195
+ */
196
+ public function testArrayHint()
197
+ {
198
+ // Offsets are relative to the T_FUNCTION token.
199
+ $expected = [];
200
+ $expected[0] = [
201
+ 'token' => 6,
202
+ 'name' => '$var',
203
+ 'content' => 'array $var',
204
+ 'has_attributes' => false,
205
+ 'pass_by_reference' => false,
206
+ 'reference_token' => false,
207
+ 'variable_length' => false,
208
+ 'variadic_token' => false,
209
+ 'type_hint' => 'array',
210
+ 'type_hint_token' => 4,
211
+ 'type_hint_end_token' => 4,
212
+ 'nullable_type' => false,
213
+ 'comma_token' => false,
214
+ ];
215
+
216
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
217
+
218
+ }//end testArrayHint()
219
+
220
+
221
+ /**
222
+ * Verify variable.
223
+ *
224
+ * @return void
225
+ */
226
+ public function testVariable()
227
+ {
228
+ // Offsets are relative to the T_FUNCTION token.
229
+ $expected = [];
230
+ $expected[0] = [
231
+ 'token' => 4,
232
+ 'name' => '$var',
233
+ 'content' => '$var',
234
+ 'has_attributes' => false,
235
+ 'pass_by_reference' => false,
236
+ 'reference_token' => false,
237
+ 'variable_length' => false,
238
+ 'variadic_token' => false,
239
+ 'type_hint' => '',
240
+ 'type_hint_token' => false,
241
+ 'type_hint_end_token' => false,
242
+ 'nullable_type' => false,
243
+ 'comma_token' => false,
244
+ ];
245
+
246
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
247
+
248
+ }//end testVariable()
249
+
250
+
251
+ /**
252
+ * Verify default value parsing with a single function param.
253
+ *
254
+ * @return void
255
+ */
256
+ public function testSingleDefaultValue()
257
+ {
258
+ // Offsets are relative to the T_FUNCTION token.
259
+ $expected = [];
260
+ $expected[0] = [
261
+ 'token' => 4,
262
+ 'name' => '$var1',
263
+ 'content' => '$var1=self::CONSTANT',
264
+ 'default' => 'self::CONSTANT',
265
+ 'default_token' => 6,
266
+ 'default_equal_token' => 5,
267
+ 'has_attributes' => false,
268
+ 'pass_by_reference' => false,
269
+ 'reference_token' => false,
270
+ 'variable_length' => false,
271
+ 'variadic_token' => false,
272
+ 'type_hint' => '',
273
+ 'type_hint_token' => false,
274
+ 'type_hint_end_token' => false,
275
+ 'nullable_type' => false,
276
+ 'comma_token' => false,
277
+ ];
278
+
279
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
280
+
281
+ }//end testSingleDefaultValue()
282
+
283
+
284
+ /**
285
+ * Verify default value parsing.
286
+ *
287
+ * @return void
288
+ */
289
+ public function testDefaultValues()
290
+ {
291
+ // Offsets are relative to the T_FUNCTION token.
292
+ $expected = [];
293
+ $expected[0] = [
294
+ 'token' => 4,
295
+ 'name' => '$var1',
296
+ 'content' => '$var1=1',
297
+ 'default' => '1',
298
+ 'default_token' => 6,
299
+ 'default_equal_token' => 5,
300
+ 'has_attributes' => false,
301
+ 'pass_by_reference' => false,
302
+ 'reference_token' => false,
303
+ 'variable_length' => false,
304
+ 'variadic_token' => false,
305
+ 'type_hint' => '',
306
+ 'type_hint_token' => false,
307
+ 'type_hint_end_token' => false,
308
+ 'nullable_type' => false,
309
+ 'comma_token' => 7,
310
+ ];
311
+ $expected[1] = [
312
+ 'token' => 9,
313
+ 'name' => '$var2',
314
+ 'content' => "\$var2='value'",
315
+ 'default' => "'value'",
316
+ 'default_token' => 11,
317
+ 'default_equal_token' => 10,
318
+ 'has_attributes' => false,
319
+ 'pass_by_reference' => false,
320
+ 'reference_token' => false,
321
+ 'variable_length' => false,
322
+ 'variadic_token' => false,
323
+ 'type_hint' => '',
324
+ 'type_hint_token' => false,
325
+ 'type_hint_end_token' => false,
326
+ 'nullable_type' => false,
327
+ 'comma_token' => false,
328
+ ];
329
+
330
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
331
+
332
+ }//end testDefaultValues()
333
+
334
+
335
+ /**
336
+ * Verify type hint parsing.
337
+ *
338
+ * @return void
339
+ */
340
+ public function testTypeHint()
341
+ {
342
+ // Offsets are relative to the T_FUNCTION token.
343
+ $expected = [];
344
+ $expected[0] = [
345
+ 'token' => 6,
346
+ 'name' => '$var1',
347
+ 'content' => 'foo $var1',
348
+ 'has_attributes' => false,
349
+ 'pass_by_reference' => false,
350
+ 'reference_token' => false,
351
+ 'variable_length' => false,
352
+ 'variadic_token' => false,
353
+ 'type_hint' => 'foo',
354
+ 'type_hint_token' => 4,
355
+ 'type_hint_end_token' => 4,
356
+ 'nullable_type' => false,
357
+ 'comma_token' => 7,
358
+ ];
359
+
360
+ $expected[1] = [
361
+ 'token' => 11,
362
+ 'name' => '$var2',
363
+ 'content' => 'bar $var2',
364
+ 'has_attributes' => false,
365
+ 'pass_by_reference' => false,
366
+ 'reference_token' => false,
367
+ 'variable_length' => false,
368
+ 'variadic_token' => false,
369
+ 'type_hint' => 'bar',
370
+ 'type_hint_token' => 9,
371
+ 'type_hint_end_token' => 9,
372
+ 'nullable_type' => false,
373
+ 'comma_token' => false,
374
+ ];
375
+
376
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
377
+
378
+ }//end testTypeHint()
379
+
380
+
381
+ /**
382
+ * Verify self type hint parsing.
383
+ *
384
+ * @return void
385
+ */
386
+ public function testSelfTypeHint()
387
+ {
388
+ // Offsets are relative to the T_FUNCTION token.
389
+ $expected = [];
390
+ $expected[0] = [
391
+ 'token' => 6,
392
+ 'name' => '$var',
393
+ 'content' => 'self $var',
394
+ 'has_attributes' => false,
395
+ 'pass_by_reference' => false,
396
+ 'reference_token' => false,
397
+ 'variable_length' => false,
398
+ 'variadic_token' => false,
399
+ 'type_hint' => 'self',
400
+ 'type_hint_token' => 4,
401
+ 'type_hint_end_token' => 4,
402
+ 'nullable_type' => false,
403
+ 'comma_token' => false,
404
+ ];
405
+
406
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
407
+
408
+ }//end testSelfTypeHint()
409
+
410
+
411
+ /**
412
+ * Verify nullable type hint parsing.
413
+ *
414
+ * @return void
415
+ */
416
+ public function testNullableTypeHint()
417
+ {
418
+ // Offsets are relative to the T_FUNCTION token.
419
+ $expected = [];
420
+ $expected[0] = [
421
+ 'token' => 7,
422
+ 'name' => '$var1',
423
+ 'content' => '?int $var1',
424
+ 'has_attributes' => false,
425
+ 'pass_by_reference' => false,
426
+ 'reference_token' => false,
427
+ 'variable_length' => false,
428
+ 'variadic_token' => false,
429
+ 'type_hint' => '?int',
430
+ 'type_hint_token' => 5,
431
+ 'type_hint_end_token' => 5,
432
+ 'nullable_type' => true,
433
+ 'comma_token' => 8,
434
+ ];
435
+
436
+ $expected[1] = [
437
+ 'token' => 14,
438
+ 'name' => '$var2',
439
+ 'content' => '?\bar $var2',
440
+ 'has_attributes' => false,
441
+ 'pass_by_reference' => false,
442
+ 'reference_token' => false,
443
+ 'variable_length' => false,
444
+ 'variadic_token' => false,
445
+ 'type_hint' => '?\bar',
446
+ 'type_hint_token' => 11,
447
+ 'type_hint_end_token' => 12,
448
+ 'nullable_type' => true,
449
+ 'comma_token' => false,
450
+ ];
451
+
452
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
453
+
454
+ }//end testNullableTypeHint()
455
+
456
+
457
+ /**
458
+ * Verify "bitwise and" in default value !== pass-by-reference.
459
+ *
460
+ * @return void
461
+ */
462
+ public function testBitwiseAndConstantExpressionDefaultValue()
463
+ {
464
+ // Offsets are relative to the T_FUNCTION token.
465
+ $expected = [];
466
+ $expected[0] = [
467
+ 'token' => 4,
468
+ 'name' => '$a',
469
+ 'content' => '$a = 10 & 20',
470
+ 'default' => '10 & 20',
471
+ 'default_token' => 8,
472
+ 'default_equal_token' => 6,
473
+ 'has_attributes' => false,
474
+ 'pass_by_reference' => false,
475
+ 'reference_token' => false,
476
+ 'variable_length' => false,
477
+ 'variadic_token' => false,
478
+ 'type_hint' => '',
479
+ 'type_hint_token' => false,
480
+ 'type_hint_end_token' => false,
481
+ 'nullable_type' => false,
482
+ 'comma_token' => false,
483
+ ];
484
+
485
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
486
+
487
+ }//end testBitwiseAndConstantExpressionDefaultValue()
488
+
489
+
490
+ /**
491
+ * Verify that arrow functions are supported.
492
+ *
493
+ * @return void
494
+ */
495
+ public function testArrowFunction()
496
+ {
497
+ // Offsets are relative to the T_FN token.
498
+ $expected = [];
499
+ $expected[0] = [
500
+ 'token' => 4,
501
+ 'name' => '$a',
502
+ 'content' => 'int $a',
503
+ 'has_attributes' => false,
504
+ 'pass_by_reference' => false,
505
+ 'reference_token' => false,
506
+ 'variable_length' => false,
507
+ 'variadic_token' => false,
508
+ 'type_hint' => 'int',
509
+ 'type_hint_token' => 2,
510
+ 'type_hint_end_token' => 2,
511
+ 'nullable_type' => false,
512
+ 'comma_token' => 5,
513
+ ];
514
+
515
+ $expected[1] = [
516
+ 'token' => 8,
517
+ 'name' => '$b',
518
+ 'content' => '...$b',
519
+ 'has_attributes' => false,
520
+ 'pass_by_reference' => false,
521
+ 'reference_token' => false,
522
+ 'variable_length' => true,
523
+ 'variadic_token' => 7,
524
+ 'type_hint' => '',
525
+ 'type_hint_token' => false,
526
+ 'type_hint_end_token' => false,
527
+ 'nullable_type' => false,
528
+ 'comma_token' => false,
529
+ ];
530
+
531
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
532
+
533
+ }//end testArrowFunction()
534
+
535
+
536
+ /**
537
+ * Verify that arrow functions are supported.
538
+ *
539
+ * @return void
540
+ */
541
+ public function testArrowFunctionReturnByRef()
542
+ {
543
+ // Offsets are relative to the T_FN token.
544
+ $expected = [];
545
+ $expected[0] = [
546
+ 'token' => 6,
547
+ 'name' => '$a',
548
+ 'content' => '?string $a',
549
+ 'has_attributes' => false,
550
+ 'pass_by_reference' => false,
551
+ 'reference_token' => false,
552
+ 'variable_length' => false,
553
+ 'variadic_token' => false,
554
+ 'type_hint' => '?string',
555
+ 'type_hint_token' => 4,
556
+ 'type_hint_end_token' => 4,
557
+ 'nullable_type' => true,
558
+ 'comma_token' => false,
559
+ ];
560
+
561
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
562
+
563
+ }//end testArrowFunctionReturnByRef()
564
+
565
+
566
+ /**
567
+ * Verify default value parsing with array values.
568
+ *
569
+ * @return void
570
+ */
571
+ public function testArrayDefaultValues()
572
+ {
573
+ // Offsets are relative to the T_FUNCTION token.
574
+ $expected = [];
575
+ $expected[0] = [
576
+ 'token' => 4,
577
+ 'name' => '$var1',
578
+ 'content' => '$var1 = []',
579
+ 'default' => '[]',
580
+ 'default_token' => 8,
581
+ 'default_equal_token' => 6,
582
+ 'has_attributes' => false,
583
+ 'pass_by_reference' => false,
584
+ 'reference_token' => false,
585
+ 'variable_length' => false,
586
+ 'variadic_token' => false,
587
+ 'type_hint' => '',
588
+ 'type_hint_token' => false,
589
+ 'type_hint_end_token' => false,
590
+ 'nullable_type' => false,
591
+ 'comma_token' => 10,
592
+ ];
593
+ $expected[1] = [
594
+ 'token' => 12,
595
+ 'name' => '$var2',
596
+ 'content' => '$var2 = array(1, 2, 3)',
597
+ 'default' => 'array(1, 2, 3)',
598
+ 'default_token' => 16,
599
+ 'default_equal_token' => 14,
600
+ 'has_attributes' => false,
601
+ 'pass_by_reference' => false,
602
+ 'reference_token' => false,
603
+ 'variable_length' => false,
604
+ 'variadic_token' => false,
605
+ 'type_hint' => '',
606
+ 'type_hint_token' => false,
607
+ 'type_hint_end_token' => false,
608
+ 'nullable_type' => false,
609
+ 'comma_token' => false,
610
+ ];
611
+
612
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
613
+
614
+ }//end testArrayDefaultValues()
615
+
616
+
617
+ /**
618
+ * Verify having a T_STRING constant as a default value for the second parameter.
619
+ *
620
+ * @return void
621
+ */
622
+ public function testConstantDefaultValueSecondParam()
623
+ {
624
+ // Offsets are relative to the T_FUNCTION token.
625
+ $expected = [];
626
+ $expected[0] = [
627
+ 'token' => 4,
628
+ 'name' => '$var1',
629
+ 'content' => '$var1',
630
+ 'has_attributes' => false,
631
+ 'pass_by_reference' => false,
632
+ 'reference_token' => false,
633
+ 'variable_length' => false,
634
+ 'variadic_token' => false,
635
+ 'type_hint' => '',
636
+ 'type_hint_token' => false,
637
+ 'type_hint_end_token' => false,
638
+ 'nullable_type' => false,
639
+ 'comma_token' => 5,
640
+ ];
641
+ $expected[1] = [
642
+ 'token' => 7,
643
+ 'name' => '$var2',
644
+ 'content' => '$var2 = M_PI',
645
+ 'default' => 'M_PI',
646
+ 'default_token' => 11,
647
+ 'default_equal_token' => 9,
648
+ 'has_attributes' => false,
649
+ 'pass_by_reference' => false,
650
+ 'reference_token' => false,
651
+ 'variable_length' => false,
652
+ 'variadic_token' => false,
653
+ 'type_hint' => '',
654
+ 'type_hint_token' => false,
655
+ 'type_hint_end_token' => false,
656
+ 'nullable_type' => false,
657
+ 'comma_token' => false,
658
+ ];
659
+
660
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
661
+
662
+ }//end testConstantDefaultValueSecondParam()
663
+
664
+
665
+ /**
666
+ * Verify distinquishing between a nullable type and a ternary within a default expression.
667
+ *
668
+ * @return void
669
+ */
670
+ public function testScalarTernaryExpressionInDefault()
671
+ {
672
+ // Offsets are relative to the T_FUNCTION token.
673
+ $expected = [];
674
+ $expected[0] = [
675
+ 'token' => 5,
676
+ 'name' => '$a',
677
+ 'content' => '$a = FOO ? \'bar\' : 10',
678
+ 'default' => 'FOO ? \'bar\' : 10',
679
+ 'default_token' => 9,
680
+ 'default_equal_token' => 7,
681
+ 'has_attributes' => false,
682
+ 'pass_by_reference' => false,
683
+ 'reference_token' => false,
684
+ 'variable_length' => false,
685
+ 'variadic_token' => false,
686
+ 'type_hint' => '',
687
+ 'type_hint_token' => false,
688
+ 'type_hint_end_token' => false,
689
+ 'nullable_type' => false,
690
+ 'comma_token' => 18,
691
+ ];
692
+ $expected[1] = [
693
+ 'token' => 24,
694
+ 'name' => '$b',
695
+ 'content' => '? bool $b',
696
+ 'has_attributes' => false,
697
+ 'pass_by_reference' => false,
698
+ 'reference_token' => false,
699
+ 'variable_length' => false,
700
+ 'variadic_token' => false,
701
+ 'type_hint' => '?bool',
702
+ 'type_hint_token' => 22,
703
+ 'type_hint_end_token' => 22,
704
+ 'nullable_type' => true,
705
+ 'comma_token' => false,
706
+ ];
707
+
708
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
709
+
710
+ }//end testScalarTernaryExpressionInDefault()
711
+
712
+
713
+ /**
714
+ * Verify a variadic parameter being recognized correctly.
715
+ *
716
+ * @return void
717
+ */
718
+ public function testVariadicFunction()
719
+ {
720
+ // Offsets are relative to the T_FUNCTION token.
721
+ $expected = [];
722
+ $expected[0] = [
723
+ 'token' => 9,
724
+ 'name' => '$a',
725
+ 'content' => 'int ... $a',
726
+ 'has_attributes' => false,
727
+ 'pass_by_reference' => false,
728
+ 'reference_token' => false,
729
+ 'variable_length' => true,
730
+ 'variadic_token' => 7,
731
+ 'type_hint' => 'int',
732
+ 'type_hint_token' => 5,
733
+ 'type_hint_end_token' => 5,
734
+ 'nullable_type' => false,
735
+ 'comma_token' => false,
736
+ ];
737
+
738
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
739
+
740
+ }//end testVariadicFunction()
741
+
742
+
743
+ /**
744
+ * Verify a variadic parameter passed by reference being recognized correctly.
745
+ *
746
+ * @return void
747
+ */
748
+ public function testVariadicByRefFunction()
749
+ {
750
+ // Offsets are relative to the T_FUNCTION token.
751
+ $expected = [];
752
+ $expected[0] = [
753
+ 'token' => 7,
754
+ 'name' => '$a',
755
+ 'content' => '&...$a',
756
+ 'has_attributes' => false,
757
+ 'pass_by_reference' => true,
758
+ 'reference_token' => 5,
759
+ 'variable_length' => true,
760
+ 'variadic_token' => 6,
761
+ 'type_hint' => '',
762
+ 'type_hint_token' => false,
763
+ 'type_hint_end_token' => false,
764
+ 'nullable_type' => false,
765
+ 'comma_token' => false,
766
+ ];
767
+
768
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
769
+
770
+ }//end testVariadicByRefFunction()
771
+
772
+
773
+ /**
774
+ * Verify handling of a variadic parameter with a class based type declaration.
775
+ *
776
+ * @return void
777
+ */
778
+ public function testVariadicFunctionClassType()
779
+ {
780
+ // Offsets are relative to the T_FUNCTION token.
781
+ $expected = [];
782
+ $expected[0] = [
783
+ 'token' => 4,
784
+ 'name' => '$unit',
785
+ 'content' => '$unit',
786
+ 'has_attributes' => false,
787
+ 'pass_by_reference' => false,
788
+ 'reference_token' => false,
789
+ 'variable_length' => false,
790
+ 'variadic_token' => false,
791
+ 'type_hint' => '',
792
+ 'type_hint_token' => false,
793
+ 'type_hint_end_token' => false,
794
+ 'nullable_type' => false,
795
+ 'comma_token' => 5,
796
+ ];
797
+ $expected[1] = [
798
+ 'token' => 10,
799
+ 'name' => '$intervals',
800
+ 'content' => 'DateInterval ...$intervals',
801
+ 'has_attributes' => false,
802
+ 'pass_by_reference' => false,
803
+ 'reference_token' => false,
804
+ 'variable_length' => true,
805
+ 'variadic_token' => 9,
806
+ 'type_hint' => 'DateInterval',
807
+ 'type_hint_token' => 7,
808
+ 'type_hint_end_token' => 7,
809
+ 'nullable_type' => false,
810
+ 'comma_token' => false,
811
+ ];
812
+
813
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
814
+
815
+ }//end testVariadicFunctionClassType()
816
+
817
+
818
+ /**
819
+ * Verify distinquishing between a nullable type and a ternary within a default expression.
820
+ *
821
+ * @return void
822
+ */
823
+ public function testNameSpacedTypeDeclaration()
824
+ {
825
+ // Offsets are relative to the T_FUNCTION token.
826
+ $expected = [];
827
+ $expected[0] = [
828
+ 'token' => 12,
829
+ 'name' => '$a',
830
+ 'content' => '\Package\Sub\ClassName $a',
831
+ 'has_attributes' => false,
832
+ 'pass_by_reference' => false,
833
+ 'reference_token' => false,
834
+ 'variable_length' => false,
835
+ 'variadic_token' => false,
836
+ 'type_hint' => '\Package\Sub\ClassName',
837
+ 'type_hint_token' => 5,
838
+ 'type_hint_end_token' => 10,
839
+ 'nullable_type' => false,
840
+ 'comma_token' => 13,
841
+ ];
842
+ $expected[1] = [
843
+ 'token' => 20,
844
+ 'name' => '$b',
845
+ 'content' => '?Sub\AnotherClass $b',
846
+ 'has_attributes' => false,
847
+ 'pass_by_reference' => false,
848
+ 'reference_token' => false,
849
+ 'variable_length' => false,
850
+ 'variadic_token' => false,
851
+ 'type_hint' => '?Sub\AnotherClass',
852
+ 'type_hint_token' => 16,
853
+ 'type_hint_end_token' => 18,
854
+ 'nullable_type' => true,
855
+ 'comma_token' => false,
856
+ ];
857
+
858
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
859
+
860
+ }//end testNameSpacedTypeDeclaration()
861
+
862
+
863
+ /**
864
+ * Verify correctly recognizing all type declarations supported by PHP.
865
+ *
866
+ * @return void
867
+ */
868
+ public function testWithAllTypes()
869
+ {
870
+ // Offsets are relative to the T_FUNCTION token.
871
+ $expected = [];
872
+ $expected[0] = [
873
+ 'token' => 9,
874
+ 'name' => '$a',
875
+ 'content' => '?ClassName $a',
876
+ 'has_attributes' => false,
877
+ 'pass_by_reference' => false,
878
+ 'reference_token' => false,
879
+ 'variable_length' => false,
880
+ 'variadic_token' => false,
881
+ 'type_hint' => '?ClassName',
882
+ 'type_hint_token' => 7,
883
+ 'type_hint_end_token' => 7,
884
+ 'nullable_type' => true,
885
+ 'comma_token' => 10,
886
+ ];
887
+ $expected[1] = [
888
+ 'token' => 15,
889
+ 'name' => '$b',
890
+ 'content' => 'self $b',
891
+ 'has_attributes' => false,
892
+ 'pass_by_reference' => false,
893
+ 'reference_token' => false,
894
+ 'variable_length' => false,
895
+ 'variadic_token' => false,
896
+ 'type_hint' => 'self',
897
+ 'type_hint_token' => 13,
898
+ 'type_hint_end_token' => 13,
899
+ 'nullable_type' => false,
900
+ 'comma_token' => 16,
901
+ ];
902
+ $expected[2] = [
903
+ 'token' => 21,
904
+ 'name' => '$c',
905
+ 'content' => 'parent $c',
906
+ 'has_attributes' => false,
907
+ 'pass_by_reference' => false,
908
+ 'reference_token' => false,
909
+ 'variable_length' => false,
910
+ 'variadic_token' => false,
911
+ 'type_hint' => 'parent',
912
+ 'type_hint_token' => 19,
913
+ 'type_hint_end_token' => 19,
914
+ 'nullable_type' => false,
915
+ 'comma_token' => 22,
916
+ ];
917
+ $expected[3] = [
918
+ 'token' => 27,
919
+ 'name' => '$d',
920
+ 'content' => 'object $d',
921
+ 'has_attributes' => false,
922
+ 'pass_by_reference' => false,
923
+ 'reference_token' => false,
924
+ 'variable_length' => false,
925
+ 'variadic_token' => false,
926
+ 'type_hint' => 'object',
927
+ 'type_hint_token' => 25,
928
+ 'type_hint_end_token' => 25,
929
+ 'nullable_type' => false,
930
+ 'comma_token' => 28,
931
+ ];
932
+ $expected[4] = [
933
+ 'token' => 34,
934
+ 'name' => '$e',
935
+ 'content' => '?int $e',
936
+ 'has_attributes' => false,
937
+ 'pass_by_reference' => false,
938
+ 'reference_token' => false,
939
+ 'variable_length' => false,
940
+ 'variadic_token' => false,
941
+ 'type_hint' => '?int',
942
+ 'type_hint_token' => 32,
943
+ 'type_hint_end_token' => 32,
944
+ 'nullable_type' => true,
945
+ 'comma_token' => 35,
946
+ ];
947
+ $expected[5] = [
948
+ 'token' => 41,
949
+ 'name' => '$f',
950
+ 'content' => 'string &$f',
951
+ 'has_attributes' => false,
952
+ 'pass_by_reference' => true,
953
+ 'reference_token' => 40,
954
+ 'variable_length' => false,
955
+ 'variadic_token' => false,
956
+ 'type_hint' => 'string',
957
+ 'type_hint_token' => 38,
958
+ 'type_hint_end_token' => 38,
959
+ 'nullable_type' => false,
960
+ 'comma_token' => 42,
961
+ ];
962
+ $expected[6] = [
963
+ 'token' => 47,
964
+ 'name' => '$g',
965
+ 'content' => 'iterable $g',
966
+ 'has_attributes' => false,
967
+ 'pass_by_reference' => false,
968
+ 'reference_token' => false,
969
+ 'variable_length' => false,
970
+ 'variadic_token' => false,
971
+ 'type_hint' => 'iterable',
972
+ 'type_hint_token' => 45,
973
+ 'type_hint_end_token' => 45,
974
+ 'nullable_type' => false,
975
+ 'comma_token' => 48,
976
+ ];
977
+ $expected[7] = [
978
+ 'token' => 53,
979
+ 'name' => '$h',
980
+ 'content' => 'bool $h = true',
981
+ 'default' => 'true',
982
+ 'default_token' => 57,
983
+ 'default_equal_token' => 55,
984
+ 'has_attributes' => false,
985
+ 'pass_by_reference' => false,
986
+ 'reference_token' => false,
987
+ 'variable_length' => false,
988
+ 'variadic_token' => false,
989
+ 'type_hint' => 'bool',
990
+ 'type_hint_token' => 51,
991
+ 'type_hint_end_token' => 51,
992
+ 'nullable_type' => false,
993
+ 'comma_token' => 58,
994
+ ];
995
+ $expected[8] = [
996
+ 'token' => 63,
997
+ 'name' => '$i',
998
+ 'content' => 'callable $i = \'is_null\'',
999
+ 'default' => "'is_null'",
1000
+ 'default_token' => 67,
1001
+ 'default_equal_token' => 65,
1002
+ 'has_attributes' => false,
1003
+ 'pass_by_reference' => false,
1004
+ 'reference_token' => false,
1005
+ 'variable_length' => false,
1006
+ 'variadic_token' => false,
1007
+ 'type_hint' => 'callable',
1008
+ 'type_hint_token' => 61,
1009
+ 'type_hint_end_token' => 61,
1010
+ 'nullable_type' => false,
1011
+ 'comma_token' => 68,
1012
+ ];
1013
+ $expected[9] = [
1014
+ 'token' => 73,
1015
+ 'name' => '$j',
1016
+ 'content' => 'float $j = 1.1',
1017
+ 'default' => '1.1',
1018
+ 'default_token' => 77,
1019
+ 'default_equal_token' => 75,
1020
+ 'has_attributes' => false,
1021
+ 'pass_by_reference' => false,
1022
+ 'reference_token' => false,
1023
+ 'variable_length' => false,
1024
+ 'variadic_token' => false,
1025
+ 'type_hint' => 'float',
1026
+ 'type_hint_token' => 71,
1027
+ 'type_hint_end_token' => 71,
1028
+ 'nullable_type' => false,
1029
+ 'comma_token' => 78,
1030
+ ];
1031
+ $expected[10] = [
1032
+ 'token' => 84,
1033
+ 'name' => '$k',
1034
+ 'content' => 'array ...$k',
1035
+ 'has_attributes' => false,
1036
+ 'pass_by_reference' => false,
1037
+ 'reference_token' => false,
1038
+ 'variable_length' => true,
1039
+ 'variadic_token' => 83,
1040
+ 'type_hint' => 'array',
1041
+ 'type_hint_token' => 81,
1042
+ 'type_hint_end_token' => 81,
1043
+ 'nullable_type' => false,
1044
+ 'comma_token' => false,
1045
+ ];
1046
+
1047
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1048
+
1049
+ }//end testWithAllTypes()
1050
+
1051
+
1052
+ /**
1053
+ * Verify correctly recognizing all type declarations supported by PHP when used with an arrow function.
1054
+ *
1055
+ * @return void
1056
+ */
1057
+ public function testArrowFunctionWithAllTypes()
1058
+ {
1059
+ // Offsets are relative to the T_FN token.
1060
+ $expected = [];
1061
+ $expected[0] = [
1062
+ 'token' => 7,
1063
+ 'name' => '$a',
1064
+ 'content' => '?ClassName $a',
1065
+ 'has_attributes' => false,
1066
+ 'pass_by_reference' => false,
1067
+ 'reference_token' => false,
1068
+ 'variable_length' => false,
1069
+ 'variadic_token' => false,
1070
+ 'type_hint' => '?ClassName',
1071
+ 'type_hint_token' => 5,
1072
+ 'type_hint_end_token' => 5,
1073
+ 'nullable_type' => true,
1074
+ 'comma_token' => 8,
1075
+ ];
1076
+ $expected[1] = [
1077
+ 'token' => 13,
1078
+ 'name' => '$b',
1079
+ 'content' => 'self $b',
1080
+ 'has_attributes' => false,
1081
+ 'pass_by_reference' => false,
1082
+ 'reference_token' => false,
1083
+ 'variable_length' => false,
1084
+ 'variadic_token' => false,
1085
+ 'type_hint' => 'self',
1086
+ 'type_hint_token' => 11,
1087
+ 'type_hint_end_token' => 11,
1088
+ 'nullable_type' => false,
1089
+ 'comma_token' => 14,
1090
+ ];
1091
+ $expected[2] = [
1092
+ 'token' => 19,
1093
+ 'name' => '$c',
1094
+ 'content' => 'parent $c',
1095
+ 'has_attributes' => false,
1096
+ 'pass_by_reference' => false,
1097
+ 'reference_token' => false,
1098
+ 'variable_length' => false,
1099
+ 'variadic_token' => false,
1100
+ 'type_hint' => 'parent',
1101
+ 'type_hint_token' => 17,
1102
+ 'type_hint_end_token' => 17,
1103
+ 'nullable_type' => false,
1104
+ 'comma_token' => 20,
1105
+ ];
1106
+ $expected[3] = [
1107
+ 'token' => 25,
1108
+ 'name' => '$d',
1109
+ 'content' => 'object $d',
1110
+ 'has_attributes' => false,
1111
+ 'pass_by_reference' => false,
1112
+ 'reference_token' => false,
1113
+ 'variable_length' => false,
1114
+ 'variadic_token' => false,
1115
+ 'type_hint' => 'object',
1116
+ 'type_hint_token' => 23,
1117
+ 'type_hint_end_token' => 23,
1118
+ 'nullable_type' => false,
1119
+ 'comma_token' => 26,
1120
+ ];
1121
+ $expected[4] = [
1122
+ 'token' => 32,
1123
+ 'name' => '$e',
1124
+ 'content' => '?int $e',
1125
+ 'has_attributes' => false,
1126
+ 'pass_by_reference' => false,
1127
+ 'reference_token' => false,
1128
+ 'variable_length' => false,
1129
+ 'variadic_token' => false,
1130
+ 'type_hint' => '?int',
1131
+ 'type_hint_token' => 30,
1132
+ 'type_hint_end_token' => 30,
1133
+ 'nullable_type' => true,
1134
+ 'comma_token' => 33,
1135
+ ];
1136
+ $expected[5] = [
1137
+ 'token' => 39,
1138
+ 'name' => '$f',
1139
+ 'content' => 'string &$f',
1140
+ 'has_attributes' => false,
1141
+ 'pass_by_reference' => true,
1142
+ 'reference_token' => 38,
1143
+ 'variable_length' => false,
1144
+ 'variadic_token' => false,
1145
+ 'type_hint' => 'string',
1146
+ 'type_hint_token' => 36,
1147
+ 'type_hint_end_token' => 36,
1148
+ 'nullable_type' => false,
1149
+ 'comma_token' => 40,
1150
+ ];
1151
+ $expected[6] = [
1152
+ 'token' => 45,
1153
+ 'name' => '$g',
1154
+ 'content' => 'iterable $g',
1155
+ 'has_attributes' => false,
1156
+ 'pass_by_reference' => false,
1157
+ 'reference_token' => false,
1158
+ 'variable_length' => false,
1159
+ 'variadic_token' => false,
1160
+ 'type_hint' => 'iterable',
1161
+ 'type_hint_token' => 43,
1162
+ 'type_hint_end_token' => 43,
1163
+ 'nullable_type' => false,
1164
+ 'comma_token' => 46,
1165
+ ];
1166
+ $expected[7] = [
1167
+ 'token' => 51,
1168
+ 'name' => '$h',
1169
+ 'content' => 'bool $h = true',
1170
+ 'default' => 'true',
1171
+ 'default_token' => 55,
1172
+ 'default_equal_token' => 53,
1173
+ 'has_attributes' => false,
1174
+ 'pass_by_reference' => false,
1175
+ 'reference_token' => false,
1176
+ 'variable_length' => false,
1177
+ 'variadic_token' => false,
1178
+ 'type_hint' => 'bool',
1179
+ 'type_hint_token' => 49,
1180
+ 'type_hint_end_token' => 49,
1181
+ 'nullable_type' => false,
1182
+ 'comma_token' => 56,
1183
+ ];
1184
+ $expected[8] = [
1185
+ 'token' => 61,
1186
+ 'name' => '$i',
1187
+ 'content' => 'callable $i = \'is_null\'',
1188
+ 'default' => "'is_null'",
1189
+ 'default_token' => 65,
1190
+ 'default_equal_token' => 63,
1191
+ 'has_attributes' => false,
1192
+ 'pass_by_reference' => false,
1193
+ 'reference_token' => false,
1194
+ 'variable_length' => false,
1195
+ 'variadic_token' => false,
1196
+ 'type_hint' => 'callable',
1197
+ 'type_hint_token' => 59,
1198
+ 'type_hint_end_token' => 59,
1199
+ 'nullable_type' => false,
1200
+ 'comma_token' => 66,
1201
+ ];
1202
+ $expected[9] = [
1203
+ 'token' => 71,
1204
+ 'name' => '$j',
1205
+ 'content' => 'float $j = 1.1',
1206
+ 'default' => '1.1',
1207
+ 'default_token' => 75,
1208
+ 'default_equal_token' => 73,
1209
+ 'has_attributes' => false,
1210
+ 'pass_by_reference' => false,
1211
+ 'reference_token' => false,
1212
+ 'variable_length' => false,
1213
+ 'variadic_token' => false,
1214
+ 'type_hint' => 'float',
1215
+ 'type_hint_token' => 69,
1216
+ 'type_hint_end_token' => 69,
1217
+ 'nullable_type' => false,
1218
+ 'comma_token' => 76,
1219
+ ];
1220
+ $expected[10] = [
1221
+ 'token' => 82,
1222
+ 'name' => '$k',
1223
+ 'content' => 'array ...$k',
1224
+ 'has_attributes' => false,
1225
+ 'pass_by_reference' => false,
1226
+ 'reference_token' => false,
1227
+ 'variable_length' => true,
1228
+ 'variadic_token' => 81,
1229
+ 'type_hint' => 'array',
1230
+ 'type_hint_token' => 79,
1231
+ 'type_hint_end_token' => 79,
1232
+ 'nullable_type' => false,
1233
+ 'comma_token' => false,
1234
+ ];
1235
+
1236
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1237
+
1238
+ }//end testArrowFunctionWithAllTypes()
1239
+
1240
+
1241
+ /**
1242
+ * Verify handling of a declaration interlaced with whitespace and comments.
1243
+ *
1244
+ * @return void
1245
+ */
1246
+ public function testMessyDeclaration()
1247
+ {
1248
+ // Offsets are relative to the T_FUNCTION token.
1249
+ $expected = [];
1250
+ $expected[0] = [
1251
+ 'token' => 25,
1252
+ 'name' => '$a',
1253
+ 'content' => '// comment
1254
+ ?\MyNS /* comment */
1255
+ \ SubCat // phpcs:ignore Standard.Cat.Sniff -- for reasons.
1256
+ \ MyClass $a',
1257
+ 'has_attributes' => false,
1258
+ 'pass_by_reference' => false,
1259
+ 'reference_token' => false,
1260
+ 'variable_length' => false,
1261
+ 'variadic_token' => false,
1262
+ 'type_hint' => '?\MyNS\SubCat\MyClass',
1263
+ 'type_hint_token' => 9,
1264
+ 'type_hint_end_token' => 23,
1265
+ 'nullable_type' => true,
1266
+ 'comma_token' => 26,
1267
+ ];
1268
+ $expected[1] = [
1269
+ 'token' => 29,
1270
+ 'name' => '$b',
1271
+ 'content' => "\$b /* test */ = /* test */ 'default' /* test*/",
1272
+ 'default' => "'default' /* test*/",
1273
+ 'default_token' => 37,
1274
+ 'default_equal_token' => 33,
1275
+ 'has_attributes' => false,
1276
+ 'pass_by_reference' => false,
1277
+ 'reference_token' => false,
1278
+ 'variable_length' => false,
1279
+ 'variadic_token' => false,
1280
+ 'type_hint' => '',
1281
+ 'type_hint_token' => false,
1282
+ 'type_hint_end_token' => false,
1283
+ 'nullable_type' => false,
1284
+ 'comma_token' => 40,
1285
+ ];
1286
+ $expected[2] = [
1287
+ 'token' => 62,
1288
+ 'name' => '$c',
1289
+ 'content' => '// phpcs:ignore Stnd.Cat.Sniff -- For reasons.
1290
+ ? /*comment*/
1291
+ bool // phpcs:disable Stnd.Cat.Sniff -- For reasons.
1292
+ & /*test*/ ... /* phpcs:ignore */ $c',
1293
+ 'has_attributes' => false,
1294
+ 'pass_by_reference' => true,
1295
+ 'reference_token' => 54,
1296
+ 'variable_length' => true,
1297
+ 'variadic_token' => 58,
1298
+ 'type_hint' => '?bool',
1299
+ 'type_hint_token' => 50,
1300
+ 'type_hint_end_token' => 50,
1301
+ 'nullable_type' => true,
1302
+ 'comma_token' => false,
1303
+ ];
1304
+
1305
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1306
+
1307
+ }//end testMessyDeclaration()
1308
+
1309
+
1310
+ /**
1311
+ * Verify recognition of PHP8 mixed type declaration.
1312
+ *
1313
+ * @return void
1314
+ */
1315
+ public function testPHP8MixedTypeHint()
1316
+ {
1317
+ // Offsets are relative to the T_FUNCTION token.
1318
+ $expected = [];
1319
+ $expected[0] = [
1320
+ 'token' => 8,
1321
+ 'name' => '$var1',
1322
+ 'content' => 'mixed &...$var1',
1323
+ 'has_attributes' => false,
1324
+ 'pass_by_reference' => true,
1325
+ 'reference_token' => 6,
1326
+ 'variable_length' => true,
1327
+ 'variadic_token' => 7,
1328
+ 'type_hint' => 'mixed',
1329
+ 'type_hint_token' => 4,
1330
+ 'type_hint_end_token' => 4,
1331
+ 'nullable_type' => false,
1332
+ 'comma_token' => false,
1333
+ ];
1334
+
1335
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1336
+
1337
+ }//end testPHP8MixedTypeHint()
1338
+
1339
+
1340
+ /**
1341
+ * Verify recognition of PHP8 mixed type declaration with nullability.
1342
+ *
1343
+ * @return void
1344
+ */
1345
+ public function testPHP8MixedTypeHintNullable()
1346
+ {
1347
+ // Offsets are relative to the T_FUNCTION token.
1348
+ $expected = [];
1349
+ $expected[0] = [
1350
+ 'token' => 7,
1351
+ 'name' => '$var1',
1352
+ 'content' => '?Mixed $var1',
1353
+ 'has_attributes' => false,
1354
+ 'pass_by_reference' => false,
1355
+ 'reference_token' => false,
1356
+ 'variable_length' => false,
1357
+ 'variadic_token' => false,
1358
+ 'type_hint' => '?Mixed',
1359
+ 'type_hint_token' => 5,
1360
+ 'type_hint_end_token' => 5,
1361
+ 'nullable_type' => true,
1362
+ 'comma_token' => false,
1363
+ ];
1364
+
1365
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1366
+
1367
+ }//end testPHP8MixedTypeHintNullable()
1368
+
1369
+
1370
+ /**
1371
+ * Verify recognition of type declarations using the namespace operator.
1372
+ *
1373
+ * @return void
1374
+ */
1375
+ public function testNamespaceOperatorTypeHint()
1376
+ {
1377
+ // Offsets are relative to the T_FUNCTION token.
1378
+ $expected = [];
1379
+ $expected[0] = [
1380
+ 'token' => 9,
1381
+ 'name' => '$var1',
1382
+ 'content' => '?namespace\Name $var1',
1383
+ 'has_attributes' => false,
1384
+ 'pass_by_reference' => false,
1385
+ 'reference_token' => false,
1386
+ 'variable_length' => false,
1387
+ 'variadic_token' => false,
1388
+ 'type_hint' => '?namespace\Name',
1389
+ 'type_hint_token' => 5,
1390
+ 'type_hint_end_token' => 7,
1391
+ 'nullable_type' => true,
1392
+ 'comma_token' => false,
1393
+ ];
1394
+
1395
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1396
+
1397
+ }//end testNamespaceOperatorTypeHint()
1398
+
1399
+
1400
+ /**
1401
+ * Verify recognition of PHP8 union type declaration.
1402
+ *
1403
+ * @return void
1404
+ */
1405
+ public function testPHP8UnionTypesSimple()
1406
+ {
1407
+ // Offsets are relative to the T_FUNCTION token.
1408
+ $expected = [];
1409
+ $expected[0] = [
1410
+ 'token' => 8,
1411
+ 'name' => '$number',
1412
+ 'content' => 'int|float $number',
1413
+ 'has_attributes' => false,
1414
+ 'pass_by_reference' => false,
1415
+ 'reference_token' => false,
1416
+ 'variable_length' => false,
1417
+ 'variadic_token' => false,
1418
+ 'type_hint' => 'int|float',
1419
+ 'type_hint_token' => 4,
1420
+ 'type_hint_end_token' => 6,
1421
+ 'nullable_type' => false,
1422
+ 'comma_token' => 9,
1423
+ ];
1424
+ $expected[1] = [
1425
+ 'token' => 17,
1426
+ 'name' => '$obj',
1427
+ 'content' => 'self|parent &...$obj',
1428
+ 'has_attributes' => false,
1429
+ 'pass_by_reference' => true,
1430
+ 'reference_token' => 15,
1431
+ 'variable_length' => true,
1432
+ 'variadic_token' => 16,
1433
+ 'type_hint' => 'self|parent',
1434
+ 'type_hint_token' => 11,
1435
+ 'type_hint_end_token' => 13,
1436
+ 'nullable_type' => false,
1437
+ 'comma_token' => false,
1438
+ ];
1439
+
1440
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1441
+
1442
+ }//end testPHP8UnionTypesSimple()
1443
+
1444
+
1445
+ /**
1446
+ * Verify recognition of PHP8 union type declaration when the variable has either a spread operator or a reference.
1447
+ *
1448
+ * @return void
1449
+ */
1450
+ public function testPHP8UnionTypesWithSpreadOperatorAndReference()
1451
+ {
1452
+ // Offsets are relative to the T_FUNCTION token.
1453
+ $expected = [];
1454
+ $expected[0] = [
1455
+ 'token' => 9,
1456
+ 'name' => '$paramA',
1457
+ 'content' => 'float|null &$paramA',
1458
+ 'has_attributes' => false,
1459
+ 'pass_by_reference' => true,
1460
+ 'reference_token' => 8,
1461
+ 'variable_length' => false,
1462
+ 'variadic_token' => false,
1463
+ 'type_hint' => 'float|null',
1464
+ 'type_hint_token' => 4,
1465
+ 'type_hint_end_token' => 6,
1466
+ 'nullable_type' => false,
1467
+ 'comma_token' => 10,
1468
+ ];
1469
+ $expected[1] = [
1470
+ 'token' => 17,
1471
+ 'name' => '$paramB',
1472
+ 'content' => 'string|int ...$paramB',
1473
+ 'has_attributes' => false,
1474
+ 'pass_by_reference' => false,
1475
+ 'reference_token' => false,
1476
+ 'variable_length' => true,
1477
+ 'variadic_token' => 16,
1478
+ 'type_hint' => 'string|int',
1479
+ 'type_hint_token' => 12,
1480
+ 'type_hint_end_token' => 14,
1481
+ 'nullable_type' => false,
1482
+ 'comma_token' => false,
1483
+ ];
1484
+
1485
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1486
+
1487
+ }//end testPHP8UnionTypesWithSpreadOperatorAndReference()
1488
+
1489
+
1490
+ /**
1491
+ * Verify recognition of PHP8 union type declaration with a bitwise or in the default value.
1492
+ *
1493
+ * @return void
1494
+ */
1495
+ public function testPHP8UnionTypesSimpleWithBitwiseOrInDefault()
1496
+ {
1497
+ // Offsets are relative to the T_FUNCTION token.
1498
+ $expected = [];
1499
+ $expected[0] = [
1500
+ 'token' => 6,
1501
+ 'name' => '$var',
1502
+ 'content' => 'int|float $var = CONSTANT_A | CONSTANT_B',
1503
+ 'default' => 'CONSTANT_A | CONSTANT_B',
1504
+ 'default_token' => 10,
1505
+ 'default_equal_token' => 8,
1506
+ 'has_attributes' => false,
1507
+ 'pass_by_reference' => false,
1508
+ 'reference_token' => false,
1509
+ 'variable_length' => false,
1510
+ 'variadic_token' => false,
1511
+ 'type_hint' => 'int|float',
1512
+ 'type_hint_token' => 2,
1513
+ 'type_hint_end_token' => 4,
1514
+ 'nullable_type' => false,
1515
+ 'comma_token' => false,
1516
+ ];
1517
+
1518
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1519
+
1520
+ }//end testPHP8UnionTypesSimpleWithBitwiseOrInDefault()
1521
+
1522
+
1523
+ /**
1524
+ * Verify recognition of PHP8 union type declaration with two classes.
1525
+ *
1526
+ * @return void
1527
+ */
1528
+ public function testPHP8UnionTypesTwoClasses()
1529
+ {
1530
+ // Offsets are relative to the T_FUNCTION token.
1531
+ $expected = [];
1532
+ $expected[0] = [
1533
+ 'token' => 11,
1534
+ 'name' => '$var',
1535
+ 'content' => 'MyClassA|\Package\MyClassB $var',
1536
+ 'has_attributes' => false,
1537
+ 'pass_by_reference' => false,
1538
+ 'reference_token' => false,
1539
+ 'variable_length' => false,
1540
+ 'variadic_token' => false,
1541
+ 'type_hint' => 'MyClassA|\Package\MyClassB',
1542
+ 'type_hint_token' => 4,
1543
+ 'type_hint_end_token' => 9,
1544
+ 'nullable_type' => false,
1545
+ 'comma_token' => false,
1546
+ ];
1547
+
1548
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1549
+
1550
+ }//end testPHP8UnionTypesTwoClasses()
1551
+
1552
+
1553
+ /**
1554
+ * Verify recognition of PHP8 union type declaration with all base types.
1555
+ *
1556
+ * @return void
1557
+ */
1558
+ public function testPHP8UnionTypesAllBaseTypes()
1559
+ {
1560
+ // Offsets are relative to the T_FUNCTION token.
1561
+ $expected = [];
1562
+ $expected[0] = [
1563
+ 'token' => 20,
1564
+ 'name' => '$var',
1565
+ 'content' => 'array|bool|callable|int|float|null|object|string $var',
1566
+ 'has_attributes' => false,
1567
+ 'pass_by_reference' => false,
1568
+ 'reference_token' => false,
1569
+ 'variable_length' => false,
1570
+ 'variadic_token' => false,
1571
+ 'type_hint' => 'array|bool|callable|int|float|null|object|string',
1572
+ 'type_hint_token' => 4,
1573
+ 'type_hint_end_token' => 18,
1574
+ 'nullable_type' => false,
1575
+ 'comma_token' => false,
1576
+ ];
1577
+
1578
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1579
+
1580
+ }//end testPHP8UnionTypesAllBaseTypes()
1581
+
1582
+
1583
+ /**
1584
+ * Verify recognition of PHP8 union type declaration with all pseudo types.
1585
+ *
1586
+ * Note: "Resource" is not a type, but seen as a class name.
1587
+ *
1588
+ * @return void
1589
+ */
1590
+ public function testPHP8UnionTypesAllPseudoTypes()
1591
+ {
1592
+ // Offsets are relative to the T_FUNCTION token.
1593
+ $expected = [];
1594
+ $expected[0] = [
1595
+ 'token' => 16,
1596
+ 'name' => '$var',
1597
+ 'content' => 'false|mixed|self|parent|iterable|Resource $var',
1598
+ 'has_attributes' => false,
1599
+ 'pass_by_reference' => false,
1600
+ 'reference_token' => false,
1601
+ 'variable_length' => false,
1602
+ 'variadic_token' => false,
1603
+ 'type_hint' => 'false|mixed|self|parent|iterable|Resource',
1604
+ 'type_hint_token' => 4,
1605
+ 'type_hint_end_token' => 14,
1606
+ 'nullable_type' => false,
1607
+ 'comma_token' => false,
1608
+ ];
1609
+
1610
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1611
+
1612
+ }//end testPHP8UnionTypesAllPseudoTypes()
1613
+
1614
+
1615
+ /**
1616
+ * Verify recognition of PHP8 union type declaration with (illegal) nullability.
1617
+ *
1618
+ * @return void
1619
+ */
1620
+ public function testPHP8UnionTypesNullable()
1621
+ {
1622
+ // Offsets are relative to the T_FUNCTION token.
1623
+ $expected = [];
1624
+ $expected[0] = [
1625
+ 'token' => 8,
1626
+ 'name' => '$number',
1627
+ 'content' => '?int|float $number',
1628
+ 'has_attributes' => false,
1629
+ 'pass_by_reference' => false,
1630
+ 'reference_token' => false,
1631
+ 'variable_length' => false,
1632
+ 'variadic_token' => false,
1633
+ 'type_hint' => '?int|float',
1634
+ 'type_hint_token' => 4,
1635
+ 'type_hint_end_token' => 6,
1636
+ 'nullable_type' => true,
1637
+ 'comma_token' => false,
1638
+ ];
1639
+
1640
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1641
+
1642
+ }//end testPHP8UnionTypesNullable()
1643
+
1644
+
1645
+ /**
1646
+ * Verify recognition of PHP8 type declaration with (illegal) single type null.
1647
+ *
1648
+ * @return void
1649
+ */
1650
+ public function testPHP8PseudoTypeNull()
1651
+ {
1652
+ // Offsets are relative to the T_FUNCTION token.
1653
+ $expected = [];
1654
+ $expected[0] = [
1655
+ 'token' => 6,
1656
+ 'name' => '$var',
1657
+ 'content' => 'null $var = null',
1658
+ 'default' => 'null',
1659
+ 'default_token' => 10,
1660
+ 'default_equal_token' => 8,
1661
+ 'has_attributes' => false,
1662
+ 'pass_by_reference' => false,
1663
+ 'reference_token' => false,
1664
+ 'variable_length' => false,
1665
+ 'variadic_token' => false,
1666
+ 'type_hint' => 'null',
1667
+ 'type_hint_token' => 4,
1668
+ 'type_hint_end_token' => 4,
1669
+ 'nullable_type' => false,
1670
+ 'comma_token' => false,
1671
+ ];
1672
+
1673
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1674
+
1675
+ }//end testPHP8PseudoTypeNull()
1676
+
1677
+
1678
+ /**
1679
+ * Verify recognition of PHP8 type declaration with (illegal) single type false.
1680
+ *
1681
+ * @return void
1682
+ */
1683
+ public function testPHP8PseudoTypeFalse()
1684
+ {
1685
+ // Offsets are relative to the T_FUNCTION token.
1686
+ $expected = [];
1687
+ $expected[0] = [
1688
+ 'token' => 6,
1689
+ 'name' => '$var',
1690
+ 'content' => 'false $var = false',
1691
+ 'default' => 'false',
1692
+ 'default_token' => 10,
1693
+ 'default_equal_token' => 8,
1694
+ 'has_attributes' => false,
1695
+ 'pass_by_reference' => false,
1696
+ 'reference_token' => false,
1697
+ 'variable_length' => false,
1698
+ 'variadic_token' => false,
1699
+ 'type_hint' => 'false',
1700
+ 'type_hint_token' => 4,
1701
+ 'type_hint_end_token' => 4,
1702
+ 'nullable_type' => false,
1703
+ 'comma_token' => false,
1704
+ ];
1705
+
1706
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1707
+
1708
+ }//end testPHP8PseudoTypeFalse()
1709
+
1710
+
1711
+ /**
1712
+ * Verify recognition of PHP8 type declaration with (illegal) type false combined with type bool.
1713
+ *
1714
+ * @return void
1715
+ */
1716
+ public function testPHP8PseudoTypeFalseAndBool()
1717
+ {
1718
+ // Offsets are relative to the T_FUNCTION token.
1719
+ $expected = [];
1720
+ $expected[0] = [
1721
+ 'token' => 8,
1722
+ 'name' => '$var',
1723
+ 'content' => 'bool|false $var = false',
1724
+ 'default' => 'false',
1725
+ 'default_token' => 12,
1726
+ 'default_equal_token' => 10,
1727
+ 'has_attributes' => false,
1728
+ 'pass_by_reference' => false,
1729
+ 'reference_token' => false,
1730
+ 'variable_length' => false,
1731
+ 'variadic_token' => false,
1732
+ 'type_hint' => 'bool|false',
1733
+ 'type_hint_token' => 4,
1734
+ 'type_hint_end_token' => 6,
1735
+ 'nullable_type' => false,
1736
+ 'comma_token' => false,
1737
+ ];
1738
+
1739
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1740
+
1741
+ }//end testPHP8PseudoTypeFalseAndBool()
1742
+
1743
+
1744
+ /**
1745
+ * Verify recognition of PHP8 type declaration with (illegal) type object combined with a class name.
1746
+ *
1747
+ * @return void
1748
+ */
1749
+ public function testPHP8ObjectAndClass()
1750
+ {
1751
+ // Offsets are relative to the T_FUNCTION token.
1752
+ $expected = [];
1753
+ $expected[0] = [
1754
+ 'token' => 8,
1755
+ 'name' => '$var',
1756
+ 'content' => 'object|ClassName $var',
1757
+ 'has_attributes' => false,
1758
+ 'pass_by_reference' => false,
1759
+ 'reference_token' => false,
1760
+ 'variable_length' => false,
1761
+ 'variadic_token' => false,
1762
+ 'type_hint' => 'object|ClassName',
1763
+ 'type_hint_token' => 4,
1764
+ 'type_hint_end_token' => 6,
1765
+ 'nullable_type' => false,
1766
+ 'comma_token' => false,
1767
+ ];
1768
+
1769
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1770
+
1771
+ }//end testPHP8ObjectAndClass()
1772
+
1773
+
1774
+ /**
1775
+ * Verify recognition of PHP8 type declaration with (illegal) type iterable combined with array/Traversable.
1776
+ *
1777
+ * @return void
1778
+ */
1779
+ public function testPHP8PseudoTypeIterableAndArray()
1780
+ {
1781
+ // Offsets are relative to the T_FUNCTION token.
1782
+ $expected = [];
1783
+ $expected[0] = [
1784
+ 'token' => 10,
1785
+ 'name' => '$var',
1786
+ 'content' => 'iterable|array|Traversable $var',
1787
+ 'has_attributes' => false,
1788
+ 'pass_by_reference' => false,
1789
+ 'reference_token' => false,
1790
+ 'variable_length' => false,
1791
+ 'variadic_token' => false,
1792
+ 'type_hint' => 'iterable|array|Traversable',
1793
+ 'type_hint_token' => 4,
1794
+ 'type_hint_end_token' => 8,
1795
+ 'nullable_type' => false,
1796
+ 'comma_token' => false,
1797
+ ];
1798
+
1799
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1800
+
1801
+ }//end testPHP8PseudoTypeIterableAndArray()
1802
+
1803
+
1804
+ /**
1805
+ * Verify recognition of PHP8 type declaration with (illegal) duplicate types.
1806
+ *
1807
+ * @return void
1808
+ */
1809
+ public function testPHP8DuplicateTypeInUnionWhitespaceAndComment()
1810
+ {
1811
+ // Offsets are relative to the T_FUNCTION token.
1812
+ $expected = [];
1813
+ $expected[0] = [
1814
+ 'token' => 17,
1815
+ 'name' => '$var',
1816
+ 'content' => 'int | string /*comment*/ | INT $var',
1817
+ 'has_attributes' => false,
1818
+ 'pass_by_reference' => false,
1819
+ 'reference_token' => false,
1820
+ 'variable_length' => false,
1821
+ 'variadic_token' => false,
1822
+ 'type_hint' => 'int|string|INT',
1823
+ 'type_hint_token' => 5,
1824
+ 'type_hint_end_token' => 15,
1825
+ 'nullable_type' => false,
1826
+ 'comma_token' => false,
1827
+ ];
1828
+
1829
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1830
+
1831
+ }//end testPHP8DuplicateTypeInUnionWhitespaceAndComment()
1832
+
1833
+
1834
+ /**
1835
+ * Verify recognition of PHP8 constructor property promotion without type declaration, with defaults.
1836
+ *
1837
+ * @return void
1838
+ */
1839
+ public function testPHP8ConstructorPropertyPromotionNoTypes()
1840
+ {
1841
+ // Offsets are relative to the T_FUNCTION token.
1842
+ $expected = [];
1843
+ $expected[0] = [
1844
+ 'token' => 8,
1845
+ 'name' => '$x',
1846
+ 'content' => 'public $x = 0.0',
1847
+ 'default' => '0.0',
1848
+ 'default_token' => 12,
1849
+ 'default_equal_token' => 10,
1850
+ 'has_attributes' => false,
1851
+ 'pass_by_reference' => false,
1852
+ 'reference_token' => false,
1853
+ 'variable_length' => false,
1854
+ 'variadic_token' => false,
1855
+ 'type_hint' => '',
1856
+ 'type_hint_token' => false,
1857
+ 'type_hint_end_token' => false,
1858
+ 'nullable_type' => false,
1859
+ 'property_visibility' => 'public',
1860
+ 'visibility_token' => 6,
1861
+ 'property_readonly' => false,
1862
+ 'comma_token' => 13,
1863
+ ];
1864
+ $expected[1] = [
1865
+ 'token' => 18,
1866
+ 'name' => '$y',
1867
+ 'content' => 'protected $y = \'\'',
1868
+ 'default' => "''",
1869
+ 'default_token' => 22,
1870
+ 'default_equal_token' => 20,
1871
+ 'has_attributes' => false,
1872
+ 'pass_by_reference' => false,
1873
+ 'reference_token' => false,
1874
+ 'variable_length' => false,
1875
+ 'variadic_token' => false,
1876
+ 'type_hint' => '',
1877
+ 'type_hint_token' => false,
1878
+ 'type_hint_end_token' => false,
1879
+ 'nullable_type' => false,
1880
+ 'property_visibility' => 'protected',
1881
+ 'visibility_token' => 16,
1882
+ 'property_readonly' => false,
1883
+ 'comma_token' => 23,
1884
+ ];
1885
+ $expected[2] = [
1886
+ 'token' => 28,
1887
+ 'name' => '$z',
1888
+ 'content' => 'private $z = null',
1889
+ 'default' => 'null',
1890
+ 'default_token' => 32,
1891
+ 'default_equal_token' => 30,
1892
+ 'has_attributes' => false,
1893
+ 'pass_by_reference' => false,
1894
+ 'reference_token' => false,
1895
+ 'variable_length' => false,
1896
+ 'variadic_token' => false,
1897
+ 'type_hint' => '',
1898
+ 'type_hint_token' => false,
1899
+ 'type_hint_end_token' => false,
1900
+ 'nullable_type' => false,
1901
+ 'property_visibility' => 'private',
1902
+ 'visibility_token' => 26,
1903
+ 'property_readonly' => false,
1904
+ 'comma_token' => 33,
1905
+ ];
1906
+
1907
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1908
+
1909
+ }//end testPHP8ConstructorPropertyPromotionNoTypes()
1910
+
1911
+
1912
+ /**
1913
+ * Verify recognition of PHP8 constructor property promotion with type declarations.
1914
+ *
1915
+ * @return void
1916
+ */
1917
+ public function testPHP8ConstructorPropertyPromotionWithTypes()
1918
+ {
1919
+ // Offsets are relative to the T_FUNCTION token.
1920
+ $expected = [];
1921
+ $expected[0] = [
1922
+ 'token' => 10,
1923
+ 'name' => '$x',
1924
+ 'content' => 'protected float|int $x',
1925
+ 'has_attributes' => false,
1926
+ 'pass_by_reference' => false,
1927
+ 'reference_token' => false,
1928
+ 'variable_length' => false,
1929
+ 'variadic_token' => false,
1930
+ 'type_hint' => 'float|int',
1931
+ 'type_hint_token' => 6,
1932
+ 'type_hint_end_token' => 8,
1933
+ 'nullable_type' => false,
1934
+ 'property_visibility' => 'protected',
1935
+ 'visibility_token' => 4,
1936
+ 'property_readonly' => false,
1937
+ 'comma_token' => 11,
1938
+ ];
1939
+ $expected[1] = [
1940
+ 'token' => 19,
1941
+ 'name' => '$y',
1942
+ 'content' => 'public ?string &$y = \'test\'',
1943
+ 'default' => "'test'",
1944
+ 'default_token' => 23,
1945
+ 'default_equal_token' => 21,
1946
+ 'has_attributes' => false,
1947
+ 'pass_by_reference' => true,
1948
+ 'reference_token' => 18,
1949
+ 'variable_length' => false,
1950
+ 'variadic_token' => false,
1951
+ 'type_hint' => '?string',
1952
+ 'type_hint_token' => 16,
1953
+ 'type_hint_end_token' => 16,
1954
+ 'nullable_type' => true,
1955
+ 'property_visibility' => 'public',
1956
+ 'visibility_token' => 13,
1957
+ 'property_readonly' => false,
1958
+ 'comma_token' => 24,
1959
+ ];
1960
+ $expected[2] = [
1961
+ 'token' => 30,
1962
+ 'name' => '$z',
1963
+ 'content' => 'private mixed $z',
1964
+ 'has_attributes' => false,
1965
+ 'pass_by_reference' => false,
1966
+ 'reference_token' => false,
1967
+ 'variable_length' => false,
1968
+ 'variadic_token' => false,
1969
+ 'type_hint' => 'mixed',
1970
+ 'type_hint_token' => 28,
1971
+ 'type_hint_end_token' => 28,
1972
+ 'nullable_type' => false,
1973
+ 'property_visibility' => 'private',
1974
+ 'visibility_token' => 26,
1975
+ 'property_readonly' => false,
1976
+ 'comma_token' => false,
1977
+ ];
1978
+
1979
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
1980
+
1981
+ }//end testPHP8ConstructorPropertyPromotionWithTypes()
1982
+
1983
+
1984
+ /**
1985
+ * Verify recognition of PHP8 constructor with both property promotion as well as normal parameters.
1986
+ *
1987
+ * @return void
1988
+ */
1989
+ public function testPHP8ConstructorPropertyPromotionAndNormalParam()
1990
+ {
1991
+ // Offsets are relative to the T_FUNCTION token.
1992
+ $expected = [];
1993
+ $expected[0] = [
1994
+ 'token' => 8,
1995
+ 'name' => '$promotedProp',
1996
+ 'content' => 'public int $promotedProp',
1997
+ 'has_attributes' => false,
1998
+ 'pass_by_reference' => false,
1999
+ 'reference_token' => false,
2000
+ 'variable_length' => false,
2001
+ 'variadic_token' => false,
2002
+ 'type_hint' => 'int',
2003
+ 'type_hint_token' => 6,
2004
+ 'type_hint_end_token' => 6,
2005
+ 'nullable_type' => false,
2006
+ 'property_visibility' => 'public',
2007
+ 'visibility_token' => 4,
2008
+ 'property_readonly' => false,
2009
+ 'comma_token' => 9,
2010
+ ];
2011
+ $expected[1] = [
2012
+ 'token' => 14,
2013
+ 'name' => '$normalArg',
2014
+ 'content' => '?int $normalArg',
2015
+ 'has_attributes' => false,
2016
+ 'pass_by_reference' => false,
2017
+ 'reference_token' => false,
2018
+ 'variable_length' => false,
2019
+ 'variadic_token' => false,
2020
+ 'type_hint' => '?int',
2021
+ 'type_hint_token' => 12,
2022
+ 'type_hint_end_token' => 12,
2023
+ 'nullable_type' => true,
2024
+ 'comma_token' => false,
2025
+ ];
2026
+
2027
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2028
+
2029
+ }//end testPHP8ConstructorPropertyPromotionAndNormalParam()
2030
+
2031
+
2032
+ /**
2033
+ * Verify recognition of PHP8 constructor with property promotion using PHP 8.1 readonly keyword.
2034
+ *
2035
+ * @return void
2036
+ */
2037
+ public function testPHP81ConstructorPropertyPromotionWithReadOnly()
2038
+ {
2039
+ // Offsets are relative to the T_FUNCTION token.
2040
+ $expected = [];
2041
+ $expected[0] = [
2042
+ 'token' => 11,
2043
+ 'name' => '$promotedProp',
2044
+ 'content' => 'public readonly ?int $promotedProp',
2045
+ 'has_attributes' => false,
2046
+ 'pass_by_reference' => false,
2047
+ 'reference_token' => false,
2048
+ 'variable_length' => false,
2049
+ 'variadic_token' => false,
2050
+ 'type_hint' => '?int',
2051
+ 'type_hint_token' => 9,
2052
+ 'type_hint_end_token' => 9,
2053
+ 'nullable_type' => true,
2054
+ 'property_visibility' => 'public',
2055
+ 'visibility_token' => 4,
2056
+ 'property_readonly' => true,
2057
+ 'readonly_token' => 6,
2058
+ 'comma_token' => 12,
2059
+ ];
2060
+ $expected[1] = [
2061
+ 'token' => 23,
2062
+ 'name' => '$promotedToo',
2063
+ 'content' => 'ReadOnly private string|bool &$promotedToo',
2064
+ 'has_attributes' => false,
2065
+ 'pass_by_reference' => true,
2066
+ 'reference_token' => 22,
2067
+ 'variable_length' => false,
2068
+ 'variadic_token' => false,
2069
+ 'type_hint' => 'string|bool',
2070
+ 'type_hint_token' => 18,
2071
+ 'type_hint_end_token' => 20,
2072
+ 'nullable_type' => false,
2073
+ 'property_visibility' => 'private',
2074
+ 'visibility_token' => 16,
2075
+ 'property_readonly' => true,
2076
+ 'readonly_token' => 14,
2077
+ 'comma_token' => false,
2078
+ ];
2079
+
2080
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2081
+
2082
+ }//end testPHP81ConstructorPropertyPromotionWithReadOnly()
2083
+
2084
+
2085
+ /**
2086
+ * Verify recognition of PHP8 constructor with property promotion using PHP 8.1 readonly keyword
2087
+ * without a property type.
2088
+ *
2089
+ * @return void
2090
+ */
2091
+ public function testPHP81ConstructorPropertyPromotionWithReadOnlyNoTypeDeclaration()
2092
+ {
2093
+ // Offsets are relative to the T_FUNCTION token.
2094
+ $expected = [];
2095
+ $expected[0] = [
2096
+ 'token' => 8,
2097
+ 'name' => '$promotedProp',
2098
+ 'content' => 'public readonly $promotedProp',
2099
+ 'has_attributes' => false,
2100
+ 'pass_by_reference' => false,
2101
+ 'reference_token' => false,
2102
+ 'variable_length' => false,
2103
+ 'variadic_token' => false,
2104
+ 'type_hint' => '',
2105
+ 'type_hint_token' => false,
2106
+ 'type_hint_end_token' => false,
2107
+ 'nullable_type' => false,
2108
+ 'property_visibility' => 'public',
2109
+ 'visibility_token' => 4,
2110
+ 'property_readonly' => true,
2111
+ 'readonly_token' => 6,
2112
+ 'comma_token' => 9,
2113
+ ];
2114
+ $expected[1] = [
2115
+ 'token' => 16,
2116
+ 'name' => '$promotedToo',
2117
+ 'content' => 'ReadOnly private &$promotedToo',
2118
+ 'has_attributes' => false,
2119
+ 'pass_by_reference' => true,
2120
+ 'reference_token' => 15,
2121
+ 'variable_length' => false,
2122
+ 'variadic_token' => false,
2123
+ 'type_hint' => '',
2124
+ 'type_hint_token' => false,
2125
+ 'type_hint_end_token' => false,
2126
+ 'nullable_type' => false,
2127
+ 'property_visibility' => 'private',
2128
+ 'visibility_token' => 13,
2129
+ 'property_readonly' => true,
2130
+ 'readonly_token' => 11,
2131
+ 'comma_token' => false,
2132
+ ];
2133
+
2134
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2135
+
2136
+ }//end testPHP81ConstructorPropertyPromotionWithReadOnlyNoTypeDeclaration()
2137
+
2138
+
2139
+ /**
2140
+ * Verify recognition of PHP8 constructor with property promotion using PHP 8.1 readonly
2141
+ * keyword without explicit visibility.
2142
+ *
2143
+ * @return void
2144
+ */
2145
+ public function testPHP81ConstructorPropertyPromotionWithOnlyReadOnly()
2146
+ {
2147
+ // Offsets are relative to the T_FUNCTION token.
2148
+ $expected = [];
2149
+ $expected[0] = [
2150
+ 'token' => 10,
2151
+ 'name' => '$promotedProp',
2152
+ 'content' => 'readonly Foo&Bar $promotedProp',
2153
+ 'has_attributes' => false,
2154
+ 'pass_by_reference' => false,
2155
+ 'reference_token' => false,
2156
+ 'variable_length' => false,
2157
+ 'variadic_token' => false,
2158
+ 'type_hint' => 'Foo&Bar',
2159
+ 'type_hint_token' => 6,
2160
+ 'type_hint_end_token' => 8,
2161
+ 'nullable_type' => false,
2162
+ 'property_visibility' => 'public',
2163
+ 'visibility_token' => false,
2164
+ 'property_readonly' => true,
2165
+ 'readonly_token' => 4,
2166
+ 'comma_token' => 11,
2167
+ ];
2168
+ $expected[1] = [
2169
+ 'token' => 18,
2170
+ 'name' => '$promotedToo',
2171
+ 'content' => 'readonly ?bool $promotedToo',
2172
+ 'has_attributes' => false,
2173
+ 'pass_by_reference' => false,
2174
+ 'reference_token' => false,
2175
+ 'variable_length' => false,
2176
+ 'variadic_token' => false,
2177
+ 'type_hint' => '?bool',
2178
+ 'type_hint_token' => 16,
2179
+ 'type_hint_end_token' => 16,
2180
+ 'nullable_type' => true,
2181
+ 'property_visibility' => 'public',
2182
+ 'visibility_token' => false,
2183
+ 'property_readonly' => true,
2184
+ 'readonly_token' => 13,
2185
+ 'comma_token' => 19,
2186
+ ];
2187
+
2188
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2189
+
2190
+ }//end testPHP81ConstructorPropertyPromotionWithOnlyReadOnly()
2191
+
2192
+
2193
+ /**
2194
+ * Verify behaviour when a non-constructor function uses PHP 8 property promotion syntax.
2195
+ *
2196
+ * @return void
2197
+ */
2198
+ public function testPHP8ConstructorPropertyPromotionGlobalFunction()
2199
+ {
2200
+ // Offsets are relative to the T_FUNCTION token.
2201
+ $expected = [];
2202
+ $expected[0] = [
2203
+ 'token' => 6,
2204
+ 'name' => '$x',
2205
+ 'content' => 'private $x',
2206
+ 'has_attributes' => false,
2207
+ 'pass_by_reference' => false,
2208
+ 'reference_token' => false,
2209
+ 'variable_length' => false,
2210
+ 'variadic_token' => false,
2211
+ 'type_hint' => '',
2212
+ 'type_hint_token' => false,
2213
+ 'type_hint_end_token' => false,
2214
+ 'nullable_type' => false,
2215
+ 'property_visibility' => 'private',
2216
+ 'visibility_token' => 4,
2217
+ 'property_readonly' => false,
2218
+ 'comma_token' => false,
2219
+ ];
2220
+
2221
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2222
+
2223
+ }//end testPHP8ConstructorPropertyPromotionGlobalFunction()
2224
+
2225
+
2226
+ /**
2227
+ * Verify behaviour when an abstract constructor uses PHP 8 property promotion syntax.
2228
+ *
2229
+ * @return void
2230
+ */
2231
+ public function testPHP8ConstructorPropertyPromotionAbstractMethod()
2232
+ {
2233
+ // Offsets are relative to the T_FUNCTION token.
2234
+ $expected = [];
2235
+ $expected[0] = [
2236
+ 'token' => 8,
2237
+ 'name' => '$y',
2238
+ 'content' => 'public callable $y',
2239
+ 'has_attributes' => false,
2240
+ 'pass_by_reference' => false,
2241
+ 'reference_token' => false,
2242
+ 'variable_length' => false,
2243
+ 'variadic_token' => false,
2244
+ 'type_hint' => 'callable',
2245
+ 'type_hint_token' => 6,
2246
+ 'type_hint_end_token' => 6,
2247
+ 'nullable_type' => false,
2248
+ 'property_visibility' => 'public',
2249
+ 'visibility_token' => 4,
2250
+ 'property_readonly' => false,
2251
+ 'comma_token' => 9,
2252
+ ];
2253
+ $expected[1] = [
2254
+ 'token' => 14,
2255
+ 'name' => '$x',
2256
+ 'content' => 'private ...$x',
2257
+ 'has_attributes' => false,
2258
+ 'pass_by_reference' => false,
2259
+ 'reference_token' => false,
2260
+ 'variable_length' => true,
2261
+ 'variadic_token' => 13,
2262
+ 'type_hint' => '',
2263
+ 'type_hint_token' => false,
2264
+ 'type_hint_end_token' => false,
2265
+ 'nullable_type' => false,
2266
+ 'property_visibility' => 'private',
2267
+ 'visibility_token' => 11,
2268
+ 'property_readonly' => false,
2269
+ 'comma_token' => false,
2270
+ ];
2271
+
2272
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2273
+
2274
+ }//end testPHP8ConstructorPropertyPromotionAbstractMethod()
2275
+
2276
+
2277
+ /**
2278
+ * Verify and document behaviour when there are comments within a parameter declaration.
2279
+ *
2280
+ * @return void
2281
+ */
2282
+ public function testCommentsInParameter()
2283
+ {
2284
+ // Offsets are relative to the T_FUNCTION token.
2285
+ $expected = [];
2286
+ $expected[0] = [
2287
+ 'token' => 19,
2288
+ 'name' => '$param',
2289
+ 'content' => '// Leading comment.
2290
+ ?MyClass /*-*/ & /*-*/.../*-*/ $param /*-*/ = /*-*/ \'default value\' . /*-*/ \'second part\' // Trailing comment.',
2291
+ 'default' => '\'default value\' . /*-*/ \'second part\' // Trailing comment.',
2292
+ 'default_token' => 27,
2293
+ 'default_equal_token' => 23,
2294
+ 'has_attributes' => false,
2295
+ 'pass_by_reference' => true,
2296
+ 'reference_token' => 13,
2297
+ 'variable_length' => true,
2298
+ 'variadic_token' => 16,
2299
+ 'type_hint' => '?MyClass',
2300
+ 'type_hint_token' => 9,
2301
+ 'type_hint_end_token' => 9,
2302
+ 'nullable_type' => true,
2303
+ 'comma_token' => false,
2304
+ ];
2305
+
2306
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2307
+
2308
+ }//end testCommentsInParameter()
2309
+
2310
+
2311
+ /**
2312
+ * Verify behaviour when parameters have attributes attached.
2313
+ *
2314
+ * @return void
2315
+ */
2316
+ public function testParameterAttributesInFunctionDeclaration()
2317
+ {
2318
+ // Offsets are relative to the T_FUNCTION token.
2319
+ $expected = [];
2320
+ $expected[0] = [
2321
+ 'token' => 17,
2322
+ 'name' => '$constructorPropPromTypedParamSingleAttribute',
2323
+ 'content' => '#[\MyExample\MyAttribute] private string $constructorPropPromTypedParamSingleAttribute',
2324
+ 'has_attributes' => true,
2325
+ 'pass_by_reference' => false,
2326
+ 'reference_token' => false,
2327
+ 'variable_length' => false,
2328
+ 'variadic_token' => false,
2329
+ 'type_hint' => 'string',
2330
+ 'type_hint_token' => 15,
2331
+ 'type_hint_end_token' => 15,
2332
+ 'nullable_type' => false,
2333
+ 'property_visibility' => 'private',
2334
+ 'visibility_token' => 13,
2335
+ 'property_readonly' => false,
2336
+ 'comma_token' => 18,
2337
+ ];
2338
+ $expected[1] = [
2339
+ 'token' => 39,
2340
+ 'name' => '$typedParamSingleAttribute',
2341
+ 'content' => '#[MyAttr([1, 2])]
2342
+ Type|false
2343
+ $typedParamSingleAttribute',
2344
+ 'has_attributes' => true,
2345
+ 'pass_by_reference' => false,
2346
+ 'reference_token' => false,
2347
+ 'variable_length' => false,
2348
+ 'variadic_token' => false,
2349
+ 'type_hint' => 'Type|false',
2350
+ 'type_hint_token' => 34,
2351
+ 'type_hint_end_token' => 36,
2352
+ 'nullable_type' => false,
2353
+ 'comma_token' => 40,
2354
+ ];
2355
+ $expected[2] = [
2356
+ 'token' => 59,
2357
+ 'name' => '$nullableTypedParamMultiAttribute',
2358
+ 'content' => '#[MyAttribute(1234), MyAttribute(5678)] ?int $nullableTypedParamMultiAttribute',
2359
+ 'has_attributes' => true,
2360
+ 'pass_by_reference' => false,
2361
+ 'reference_token' => false,
2362
+ 'variable_length' => false,
2363
+ 'variadic_token' => false,
2364
+ 'type_hint' => '?int',
2365
+ 'type_hint_token' => 57,
2366
+ 'type_hint_end_token' => 57,
2367
+ 'nullable_type' => true,
2368
+ 'comma_token' => 60,
2369
+ ];
2370
+ $expected[3] = [
2371
+ 'token' => 74,
2372
+ 'name' => '$nonTypedParamTwoAttributes',
2373
+ 'content' => '#[WithoutArgument] #[SingleArgument(0)] $nonTypedParamTwoAttributes',
2374
+ 'has_attributes' => true,
2375
+ 'pass_by_reference' => false,
2376
+ 'reference_token' => false,
2377
+ 'variable_length' => false,
2378
+ 'variadic_token' => false,
2379
+ 'type_hint' => '',
2380
+ 'type_hint_token' => false,
2381
+ 'type_hint_end_token' => false,
2382
+ 'nullable_type' => false,
2383
+ 'comma_token' => 75,
2384
+ ];
2385
+ $expected[4] = [
2386
+ 'token' => 95,
2387
+ 'name' => '$otherParam',
2388
+ 'content' => '#[MyAttribute(array("key" => "value"))]
2389
+ &...$otherParam',
2390
+ 'has_attributes' => true,
2391
+ 'pass_by_reference' => true,
2392
+ 'reference_token' => 93,
2393
+ 'variable_length' => true,
2394
+ 'variadic_token' => 94,
2395
+ 'type_hint' => '',
2396
+ 'type_hint_token' => false,
2397
+ 'type_hint_end_token' => false,
2398
+ 'nullable_type' => false,
2399
+ 'comma_token' => 96,
2400
+ ];
2401
+
2402
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2403
+
2404
+ }//end testParameterAttributesInFunctionDeclaration()
2405
+
2406
+
2407
+ /**
2408
+ * Verify recognition of PHP8.1 intersection type declaration.
2409
+ *
2410
+ * @return void
2411
+ */
2412
+ public function testPHP8IntersectionTypes()
2413
+ {
2414
+ // Offsets are relative to the T_FUNCTION token.
2415
+ $expected = [];
2416
+ $expected[0] = [
2417
+ 'token' => 8,
2418
+ 'name' => '$obj1',
2419
+ 'content' => 'Foo&Bar $obj1',
2420
+ 'has_attributes' => false,
2421
+ 'pass_by_reference' => false,
2422
+ 'reference_token' => false,
2423
+ 'variable_length' => false,
2424
+ 'variadic_token' => false,
2425
+ 'type_hint' => 'Foo&Bar',
2426
+ 'type_hint_token' => 4,
2427
+ 'type_hint_end_token' => 6,
2428
+ 'nullable_type' => false,
2429
+ 'comma_token' => 9,
2430
+ ];
2431
+ $expected[1] = [
2432
+ 'token' => 15,
2433
+ 'name' => '$obj2',
2434
+ 'content' => 'Boo&Bar $obj2',
2435
+ 'has_attributes' => false,
2436
+ 'pass_by_reference' => false,
2437
+ 'reference_token' => false,
2438
+ 'variable_length' => false,
2439
+ 'variadic_token' => false,
2440
+ 'type_hint' => 'Boo&Bar',
2441
+ 'type_hint_token' => 11,
2442
+ 'type_hint_end_token' => 13,
2443
+ 'nullable_type' => false,
2444
+ 'comma_token' => false,
2445
+ ];
2446
+
2447
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2448
+
2449
+ }//end testPHP8IntersectionTypes()
2450
+
2451
+
2452
+ /**
2453
+ * Verify recognition of PHP8.1 intersection type declaration when the variable
2454
+ * has either a spread operator or a reference.
2455
+ *
2456
+ * @return void
2457
+ */
2458
+ public function testPHP81IntersectionTypesWithSpreadOperatorAndReference()
2459
+ {
2460
+ // Offsets are relative to the T_FUNCTION token.
2461
+ $expected = [];
2462
+ $expected[0] = [
2463
+ 'token' => 9,
2464
+ 'name' => '$paramA',
2465
+ 'content' => 'Boo&Bar &$paramA',
2466
+ 'has_attributes' => false,
2467
+ 'pass_by_reference' => true,
2468
+ 'reference_token' => 8,
2469
+ 'variable_length' => false,
2470
+ 'variadic_token' => false,
2471
+ 'type_hint' => 'Boo&Bar',
2472
+ 'type_hint_token' => 4,
2473
+ 'type_hint_end_token' => 6,
2474
+ 'nullable_type' => false,
2475
+ 'comma_token' => 10,
2476
+ ];
2477
+ $expected[1] = [
2478
+ 'token' => 17,
2479
+ 'name' => '$paramB',
2480
+ 'content' => 'Foo&Bar ...$paramB',
2481
+ 'has_attributes' => false,
2482
+ 'pass_by_reference' => false,
2483
+ 'reference_token' => false,
2484
+ 'variable_length' => true,
2485
+ 'variadic_token' => 16,
2486
+ 'type_hint' => 'Foo&Bar',
2487
+ 'type_hint_token' => 12,
2488
+ 'type_hint_end_token' => 14,
2489
+ 'nullable_type' => false,
2490
+ 'comma_token' => false,
2491
+ ];
2492
+
2493
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2494
+
2495
+ }//end testPHP81IntersectionTypesWithSpreadOperatorAndReference()
2496
+
2497
+
2498
+ /**
2499
+ * Verify recognition of PHP8.1 intersection type declaration with more types.
2500
+ *
2501
+ * @return void
2502
+ */
2503
+ public function testPHP81MoreIntersectionTypes()
2504
+ {
2505
+ // Offsets are relative to the T_FUNCTION token.
2506
+ $expected = [];
2507
+ $expected[0] = [
2508
+ 'token' => 16,
2509
+ 'name' => '$var',
2510
+ 'content' => 'MyClassA&\Package\MyClassB&\Package\MyClassC $var',
2511
+ 'has_attributes' => false,
2512
+ 'pass_by_reference' => false,
2513
+ 'reference_token' => false,
2514
+ 'variable_length' => false,
2515
+ 'variadic_token' => false,
2516
+ 'type_hint' => 'MyClassA&\Package\MyClassB&\Package\MyClassC',
2517
+ 'type_hint_token' => 4,
2518
+ 'type_hint_end_token' => 14,
2519
+ 'nullable_type' => false,
2520
+ 'comma_token' => false,
2521
+ ];
2522
+
2523
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2524
+
2525
+ }//end testPHP81MoreIntersectionTypes()
2526
+
2527
+
2528
+ /**
2529
+ * Verify recognition of PHP8.1 intersection type declaration with illegal simple types.
2530
+ *
2531
+ * @return void
2532
+ */
2533
+ public function testPHP81IllegalIntersectionTypes()
2534
+ {
2535
+ // Offsets are relative to the T_FUNCTION token.
2536
+ $expected = [];
2537
+ $expected[0] = [
2538
+ 'token' => 7,
2539
+ 'name' => '$numeric_string',
2540
+ 'content' => 'string&int $numeric_string',
2541
+ 'has_attributes' => false,
2542
+ 'pass_by_reference' => false,
2543
+ 'reference_token' => false,
2544
+ 'variable_length' => false,
2545
+ 'variadic_token' => false,
2546
+ 'type_hint' => 'string&int',
2547
+ 'type_hint_token' => 3,
2548
+ 'type_hint_end_token' => 5,
2549
+ 'nullable_type' => false,
2550
+ 'comma_token' => false,
2551
+ ];
2552
+
2553
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2554
+
2555
+ }//end testPHP81IllegalIntersectionTypes()
2556
+
2557
+
2558
+ /**
2559
+ * Verify recognition of PHP8.1 intersection type declaration with (illegal) nullability.
2560
+ *
2561
+ * @return void
2562
+ */
2563
+ public function testPHP81NullableIntersectionTypes()
2564
+ {
2565
+ // Offsets are relative to the T_FUNCTION token.
2566
+ $expected = [];
2567
+ $expected[0] = [
2568
+ 'token' => 8,
2569
+ 'name' => '$object',
2570
+ 'content' => '?Foo&Bar $object',
2571
+ 'has_attributes' => false,
2572
+ 'pass_by_reference' => false,
2573
+ 'reference_token' => false,
2574
+ 'variable_length' => false,
2575
+ 'variadic_token' => false,
2576
+ 'type_hint' => '?Foo&Bar',
2577
+ 'type_hint_token' => 4,
2578
+ 'type_hint_end_token' => 6,
2579
+ 'nullable_type' => true,
2580
+ 'comma_token' => false,
2581
+ ];
2582
+
2583
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2584
+
2585
+ }//end testPHP81NullableIntersectionTypes()
2586
+
2587
+
2588
+ /**
2589
+ * Verify recognition of PHP 8.2 stand-alone `true` type.
2590
+ *
2591
+ * @return void
2592
+ */
2593
+ public function testPHP82PseudoTypeTrue()
2594
+ {
2595
+ // Offsets are relative to the T_FUNCTION token.
2596
+ $expected = [];
2597
+ $expected[0] = [
2598
+ 'token' => 7,
2599
+ 'name' => '$var',
2600
+ 'content' => '?true $var = true',
2601
+ 'default' => 'true',
2602
+ 'default_token' => 11,
2603
+ 'default_equal_token' => 9,
2604
+ 'has_attributes' => false,
2605
+ 'pass_by_reference' => false,
2606
+ 'reference_token' => false,
2607
+ 'variable_length' => false,
2608
+ 'variadic_token' => false,
2609
+ 'type_hint' => '?true',
2610
+ 'type_hint_token' => 5,
2611
+ 'type_hint_end_token' => 5,
2612
+ 'nullable_type' => true,
2613
+ 'comma_token' => false,
2614
+ ];
2615
+
2616
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2617
+
2618
+ }//end testPHP82PseudoTypeTrue()
2619
+
2620
+
2621
+ /**
2622
+ * Verify recognition of PHP 8.2 type declaration with (illegal) type false combined with type true.
2623
+ *
2624
+ * @return void
2625
+ */
2626
+ public function testPHP82PseudoTypeFalseAndTrue()
2627
+ {
2628
+ // Offsets are relative to the T_FUNCTION token.
2629
+ $expected = [];
2630
+ $expected[0] = [
2631
+ 'token' => 8,
2632
+ 'name' => '$var',
2633
+ 'content' => 'true|false $var = true',
2634
+ 'default' => 'true',
2635
+ 'default_token' => 12,
2636
+ 'default_equal_token' => 10,
2637
+ 'has_attributes' => false,
2638
+ 'pass_by_reference' => false,
2639
+ 'reference_token' => false,
2640
+ 'variable_length' => false,
2641
+ 'variadic_token' => false,
2642
+ 'type_hint' => 'true|false',
2643
+ 'type_hint_token' => 4,
2644
+ 'type_hint_end_token' => 6,
2645
+ 'nullable_type' => false,
2646
+ 'comma_token' => false,
2647
+ ];
2648
+
2649
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2650
+
2651
+ }//end testPHP82PseudoTypeFalseAndTrue()
2652
+
2653
+
2654
+ /**
2655
+ * Verify behaviour when the default value uses the "new" keyword, as is allowed per PHP 8.1.
2656
+ *
2657
+ * @return void
2658
+ */
2659
+ public function testPHP81NewInInitializers()
2660
+ {
2661
+ // Offsets are relative to the T_FUNCTION token.
2662
+ $expected = [];
2663
+ $expected[0] = [
2664
+ 'token' => 8,
2665
+ 'name' => '$new',
2666
+ 'content' => 'TypeA $new = new TypeA(self::CONST_VALUE)',
2667
+ 'default' => 'new TypeA(self::CONST_VALUE)',
2668
+ 'default_token' => 12,
2669
+ 'default_equal_token' => 10,
2670
+ 'has_attributes' => false,
2671
+ 'pass_by_reference' => false,
2672
+ 'reference_token' => false,
2673
+ 'variable_length' => false,
2674
+ 'variadic_token' => false,
2675
+ 'type_hint' => 'TypeA',
2676
+ 'type_hint_token' => 6,
2677
+ 'type_hint_end_token' => 6,
2678
+ 'nullable_type' => false,
2679
+ 'comma_token' => 20,
2680
+ ];
2681
+ $expected[1] = [
2682
+ 'token' => 28,
2683
+ 'name' => '$newToo',
2684
+ 'content' => '\Package\TypeB $newToo = new \Package\TypeB(10, \'string\')',
2685
+ 'default' => "new \Package\TypeB(10, 'string')",
2686
+ 'default_token' => 32,
2687
+ 'default_equal_token' => 30,
2688
+ 'has_attributes' => false,
2689
+ 'pass_by_reference' => false,
2690
+ 'reference_token' => false,
2691
+ 'variable_length' => false,
2692
+ 'variadic_token' => false,
2693
+ 'type_hint' => '\Package\TypeB',
2694
+ 'type_hint_token' => 23,
2695
+ 'type_hint_end_token' => 26,
2696
+ 'nullable_type' => false,
2697
+ 'comma_token' => 44,
2698
+ ];
2699
+
2700
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2701
+
2702
+ }//end testPHP81NewInInitializers()
2703
+
2704
+
2705
+ /**
2706
+ * Verify recognition of 8.2 DNF parameter type declarations.
2707
+ *
2708
+ * @return void
2709
+ */
2710
+ public function testPHP82DNFTypes()
2711
+ {
2712
+ // Offsets are relative to the T_FUNCTION token.
2713
+ $expected = [];
2714
+ $expected[0] = [
2715
+ 'token' => 21,
2716
+ 'name' => '$obj1',
2717
+ 'content' => '#[MyAttribute]
2718
+ false|(Foo&Bar)|true $obj1',
2719
+ 'has_attributes' => true,
2720
+ 'pass_by_reference' => false,
2721
+ 'reference_token' => false,
2722
+ 'variable_length' => false,
2723
+ 'variadic_token' => false,
2724
+ 'type_hint' => 'false|(Foo&Bar)|true',
2725
+ 'type_hint_token' => 11,
2726
+ 'type_hint_end_token' => 19,
2727
+ 'nullable_type' => false,
2728
+ 'comma_token' => 22,
2729
+ ];
2730
+ $expected[1] = [
2731
+ 'token' => 41,
2732
+ 'name' => '$obj2',
2733
+ 'content' => '(\Boo&\Pck\Bar)|(Boo&Baz) $obj2 = new Boo()',
2734
+ 'default' => 'new Boo()',
2735
+ 'default_token' => 45,
2736
+ 'default_equal_token' => 43,
2737
+ 'has_attributes' => false,
2738
+ 'pass_by_reference' => false,
2739
+ 'reference_token' => false,
2740
+ 'variable_length' => false,
2741
+ 'variadic_token' => false,
2742
+ 'type_hint' => '(\Boo&\Pck\Bar)|(Boo&Baz)',
2743
+ 'type_hint_token' => 25,
2744
+ 'type_hint_end_token' => 39,
2745
+ 'nullable_type' => false,
2746
+ 'comma_token' => false,
2747
+ ];
2748
+
2749
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2750
+
2751
+ }//end testPHP82DNFTypes()
2752
+
2753
+
2754
+ /**
2755
+ * Verify recognition of PHP 8.2 DNF parameter type declarations when the variable
2756
+ * has either a spread operator or a reference.
2757
+ *
2758
+ * @return void
2759
+ */
2760
+ public function testPHP82DNFTypesWithSpreadOperatorAndReference()
2761
+ {
2762
+ // Offsets are relative to the T_FUNCTION token.
2763
+ $expected = [];
2764
+ $expected[0] = [
2765
+ 'token' => 13,
2766
+ 'name' => '$paramA',
2767
+ 'content' => '(Countable&MeMe)|iterable &$paramA',
2768
+ 'has_attributes' => false,
2769
+ 'pass_by_reference' => true,
2770
+ 'reference_token' => 12,
2771
+ 'variable_length' => false,
2772
+ 'variadic_token' => false,
2773
+ 'type_hint' => '(Countable&MeMe)|iterable',
2774
+ 'type_hint_token' => 4,
2775
+ 'type_hint_end_token' => 10,
2776
+ 'nullable_type' => false,
2777
+ 'comma_token' => 14,
2778
+ ];
2779
+ $expected[1] = [
2780
+ 'token' => 25,
2781
+ 'name' => '$paramB',
2782
+ 'content' => 'true|(Foo&Bar) ...$paramB',
2783
+ 'has_attributes' => false,
2784
+ 'pass_by_reference' => false,
2785
+ 'reference_token' => false,
2786
+ 'variable_length' => true,
2787
+ 'variadic_token' => 24,
2788
+ 'type_hint' => 'true|(Foo&Bar)',
2789
+ 'type_hint_token' => 16,
2790
+ 'type_hint_end_token' => 22,
2791
+ 'nullable_type' => false,
2792
+ 'comma_token' => false,
2793
+ ];
2794
+
2795
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2796
+
2797
+ }//end testPHP82DNFTypesWithSpreadOperatorAndReference()
2798
+
2799
+
2800
+ /**
2801
+ * Verify recognition of PHP 8.2 DNF parameter type declarations using the nullability operator (not allowed).
2802
+ *
2803
+ * @return void
2804
+ */
2805
+ public function testPHP82DNFTypesIllegalNullable()
2806
+ {
2807
+ // Offsets are relative to the T_FUNCTION token.
2808
+ $expected = [];
2809
+ $expected[0] = [
2810
+ 'token' => 27,
2811
+ 'name' => '$var',
2812
+ 'content' => '? ( MyClassA & /*comment*/ \Package\MyClassB & \Package\MyClassC ) $var',
2813
+ 'has_attributes' => false,
2814
+ 'pass_by_reference' => false,
2815
+ 'reference_token' => false,
2816
+ 'variable_length' => false,
2817
+ 'variadic_token' => false,
2818
+ 'type_hint' => '?(MyClassA&\Package\MyClassB&\Package\MyClassC)',
2819
+ 'type_hint_token' => 5,
2820
+ 'type_hint_end_token' => 25,
2821
+ 'nullable_type' => true,
2822
+ 'comma_token' => false,
2823
+ ];
2824
+
2825
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2826
+
2827
+ }//end testPHP82DNFTypesIllegalNullable()
2828
+
2829
+
2830
+ /**
2831
+ * Verify recognition of PHP 8.2 DNF parameter type declarations in an arrow function.
2832
+ *
2833
+ * @return void
2834
+ */
2835
+ public function testPHP82DNFTypesInArrow()
2836
+ {
2837
+ // Offsets are relative to the T_FUNCTION token.
2838
+ $expected = [];
2839
+ $expected[0] = [
2840
+ 'token' => 12,
2841
+ 'name' => '$range',
2842
+ 'content' => '(Hi&Ho)|FALSE &...$range',
2843
+ 'has_attributes' => false,
2844
+ 'pass_by_reference' => true,
2845
+ 'reference_token' => 10,
2846
+ 'variable_length' => true,
2847
+ 'variadic_token' => 11,
2848
+ 'type_hint' => '(Hi&Ho)|FALSE',
2849
+ 'type_hint_token' => 2,
2850
+ 'type_hint_end_token' => 8,
2851
+ 'nullable_type' => false,
2852
+ 'comma_token' => false,
2853
+ ];
2854
+
2855
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2856
+
2857
+ }//end testPHP82DNFTypesInArrow()
2858
+
2859
+
2860
+ /**
2861
+ * Verify handling of a closure.
2862
+ *
2863
+ * @return void
2864
+ */
2865
+ public function testClosure()
2866
+ {
2867
+ // Offsets are relative to the T_FUNCTION token.
2868
+ $expected = [];
2869
+ $expected[0] = [
2870
+ 'token' => 3,
2871
+ 'name' => '$a',
2872
+ 'content' => '$a = \'test\'',
2873
+ 'default' => "'test'",
2874
+ 'default_token' => 7,
2875
+ 'default_equal_token' => 5,
2876
+ 'has_attributes' => false,
2877
+ 'pass_by_reference' => false,
2878
+ 'reference_token' => false,
2879
+ 'variable_length' => false,
2880
+ 'variadic_token' => false,
2881
+ 'type_hint' => '',
2882
+ 'type_hint_token' => false,
2883
+ 'type_hint_end_token' => false,
2884
+ 'nullable_type' => false,
2885
+ 'comma_token' => false,
2886
+ ];
2887
+
2888
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2889
+
2890
+ }//end testClosure()
2891
+
2892
+
2893
+ /**
2894
+ * Verify handling of a closure T_USE token correctly.
2895
+ *
2896
+ * @return void
2897
+ */
2898
+ public function testClosureUse()
2899
+ {
2900
+ // Offsets are relative to the T_USE token.
2901
+ $expected = [];
2902
+ $expected[0] = [
2903
+ 'token' => 3,
2904
+ 'name' => '$foo',
2905
+ 'content' => '$foo',
2906
+ 'has_attributes' => false,
2907
+ 'pass_by_reference' => false,
2908
+ 'reference_token' => false,
2909
+ 'variable_length' => false,
2910
+ 'variadic_token' => false,
2911
+ 'type_hint' => '',
2912
+ 'type_hint_token' => false,
2913
+ 'type_hint_end_token' => false,
2914
+ 'nullable_type' => false,
2915
+ 'comma_token' => 4,
2916
+ ];
2917
+ $expected[1] = [
2918
+ 'token' => 6,
2919
+ 'name' => '$bar',
2920
+ 'content' => '$bar',
2921
+ 'has_attributes' => false,
2922
+ 'pass_by_reference' => false,
2923
+ 'reference_token' => false,
2924
+ 'variable_length' => false,
2925
+ 'variadic_token' => false,
2926
+ 'type_hint' => '',
2927
+ 'type_hint_token' => false,
2928
+ 'type_hint_end_token' => false,
2929
+ 'nullable_type' => false,
2930
+ 'comma_token' => false,
2931
+ ];
2932
+
2933
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected, [T_USE]);
2934
+
2935
+ }//end testClosureUse()
2936
+
2937
+
2938
+ /**
2939
+ * Verify function declarations with trailing commas are handled correctly.
2940
+ *
2941
+ * @return void
2942
+ */
2943
+ public function testFunctionParamListWithTrailingComma()
2944
+ {
2945
+ // Offsets are relative to the T_FUNCTION token.
2946
+ $expected = [];
2947
+ $expected[0] = [
2948
+ 'token' => 9,
2949
+ 'name' => '$foo',
2950
+ 'content' => '?string $foo /*comment*/',
2951
+ 'has_attributes' => false,
2952
+ 'pass_by_reference' => false,
2953
+ 'reference_token' => false,
2954
+ 'variable_length' => false,
2955
+ 'variadic_token' => false,
2956
+ 'type_hint' => '?string',
2957
+ 'type_hint_token' => 7,
2958
+ 'type_hint_end_token' => 7,
2959
+ 'nullable_type' => true,
2960
+ 'comma_token' => 13,
2961
+ ];
2962
+ $expected[1] = [
2963
+ 'token' => 16,
2964
+ 'name' => '$bar',
2965
+ 'content' => '$bar = 0',
2966
+ 'default' => '0',
2967
+ 'default_token' => 20,
2968
+ 'default_equal_token' => 18,
2969
+ 'has_attributes' => false,
2970
+ 'pass_by_reference' => false,
2971
+ 'reference_token' => false,
2972
+ 'variable_length' => false,
2973
+ 'variadic_token' => false,
2974
+ 'type_hint' => '',
2975
+ 'type_hint_token' => false,
2976
+ 'type_hint_end_token' => false,
2977
+ 'nullable_type' => false,
2978
+ 'comma_token' => 21,
2979
+ ];
2980
+
2981
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
2982
+
2983
+ }//end testFunctionParamListWithTrailingComma()
2984
+
2985
+
2986
+ /**
2987
+ * Verify closure declarations with trailing commas are handled correctly.
2988
+ *
2989
+ * @return void
2990
+ */
2991
+ public function testClosureParamListWithTrailingComma()
2992
+ {
2993
+ // Offsets are relative to the T_FUNCTION token.
2994
+ $expected = [];
2995
+ $expected[0] = [
2996
+ 'token' => 4,
2997
+ 'name' => '$foo',
2998
+ 'content' => '$foo',
2999
+ 'has_attributes' => false,
3000
+ 'pass_by_reference' => false,
3001
+ 'reference_token' => false,
3002
+ 'variable_length' => false,
3003
+ 'variadic_token' => false,
3004
+ 'type_hint' => '',
3005
+ 'type_hint_token' => false,
3006
+ 'type_hint_end_token' => false,
3007
+ 'nullable_type' => false,
3008
+ 'comma_token' => 5,
3009
+ ];
3010
+ $expected[1] = [
3011
+ 'token' => 8,
3012
+ 'name' => '$bar',
3013
+ 'content' => '$bar',
3014
+ 'has_attributes' => false,
3015
+ 'pass_by_reference' => false,
3016
+ 'reference_token' => false,
3017
+ 'variable_length' => false,
3018
+ 'variadic_token' => false,
3019
+ 'type_hint' => '',
3020
+ 'type_hint_token' => false,
3021
+ 'type_hint_end_token' => false,
3022
+ 'nullable_type' => false,
3023
+ 'comma_token' => 9,
3024
+ ];
3025
+
3026
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
3027
+
3028
+ }//end testClosureParamListWithTrailingComma()
3029
+
3030
+
3031
+ /**
3032
+ * Verify arrow function declarations with trailing commas are handled correctly.
3033
+ *
3034
+ * @return void
3035
+ */
3036
+ public function testArrowFunctionParamListWithTrailingComma()
3037
+ {
3038
+ // Offsets are relative to the T_FN token.
3039
+ $expected = [];
3040
+ $expected[0] = [
3041
+ 'token' => 6,
3042
+ 'name' => '$a',
3043
+ 'content' => '?int $a',
3044
+ 'has_attributes' => false,
3045
+ 'pass_by_reference' => false,
3046
+ 'reference_token' => false,
3047
+ 'variable_length' => false,
3048
+ 'variadic_token' => false,
3049
+ 'type_hint' => '?int',
3050
+ 'type_hint_token' => 4,
3051
+ 'type_hint_end_token' => 4,
3052
+ 'nullable_type' => true,
3053
+ 'comma_token' => 8,
3054
+ ];
3055
+ $expected[1] = [
3056
+ 'token' => 11,
3057
+ 'name' => '$b',
3058
+ 'content' => '...$b',
3059
+ 'has_attributes' => false,
3060
+ 'pass_by_reference' => false,
3061
+ 'reference_token' => false,
3062
+ 'variable_length' => true,
3063
+ 'variadic_token' => 10,
3064
+ 'type_hint' => '',
3065
+ 'type_hint_token' => false,
3066
+ 'type_hint_end_token' => false,
3067
+ 'nullable_type' => false,
3068
+ 'comma_token' => 12,
3069
+ ];
3070
+
3071
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected);
3072
+
3073
+ }//end testArrowFunctionParamListWithTrailingComma()
3074
+
3075
+
3076
+ /**
3077
+ * Verify closure T_USE statements with trailing commas are handled correctly.
3078
+ *
3079
+ * @return void
3080
+ */
3081
+ public function testClosureUseWithTrailingComma()
3082
+ {
3083
+ // Offsets are relative to the T_USE token.
3084
+ $expected = [];
3085
+ $expected[0] = [
3086
+ 'token' => 4,
3087
+ 'name' => '$foo',
3088
+ 'content' => '$foo /*comment*/',
3089
+ 'has_attributes' => false,
3090
+ 'pass_by_reference' => false,
3091
+ 'reference_token' => false,
3092
+ 'variable_length' => false,
3093
+ 'variadic_token' => false,
3094
+ 'type_hint' => '',
3095
+ 'type_hint_token' => false,
3096
+ 'type_hint_end_token' => false,
3097
+ 'nullable_type' => false,
3098
+ 'comma_token' => 8,
3099
+ ];
3100
+ $expected[1] = [
3101
+ 'token' => 11,
3102
+ 'name' => '$bar',
3103
+ 'content' => '$bar',
3104
+ 'has_attributes' => false,
3105
+ 'pass_by_reference' => false,
3106
+ 'reference_token' => false,
3107
+ 'variable_length' => false,
3108
+ 'variadic_token' => false,
3109
+ 'type_hint' => '',
3110
+ 'type_hint_token' => false,
3111
+ 'type_hint_end_token' => false,
3112
+ 'nullable_type' => false,
3113
+ 'comma_token' => 12,
3114
+ ];
3115
+
3116
+ $this->getMethodParametersTestHelper('/* '.__FUNCTION__.' */', $expected, [T_USE]);
3117
+
3118
+ }//end testClosureUseWithTrailingComma()
3119
+
3120
+
3121
+ /**
3122
+ * Test helper.
3123
+ *
3124
+ * @param string $commentString The comment which preceeds the test.
3125
+ * @param array<int, array<string, int|string|bool>> $expected The expected function output.
3126
+ * @param int|string|array<int|string> $targetType Optional. The token type to search for after $marker.
3127
+ * Defaults to the function/closure/arrow tokens.
3128
+ *
3129
+ * @return void
3130
+ */
3131
+ private function getMethodParametersTestHelper($commentString, $expected, $targetType=[T_FUNCTION, T_CLOSURE, T_FN])
3132
+ {
3133
+ $target = $this->getTargetToken($commentString, $targetType);
3134
+ $found = self::$phpcsFile->getMethodParameters($target);
3135
+
3136
+ // Convert offsets to absolute positions in the token stream.
3137
+ foreach ($expected as $key => $param) {
3138
+ $expected[$key]['token'] += $target;
3139
+
3140
+ if (is_int($param['reference_token']) === true) {
3141
+ $expected[$key]['reference_token'] += $target;
3142
+ }
3143
+
3144
+ if (is_int($param['variadic_token']) === true) {
3145
+ $expected[$key]['variadic_token'] += $target;
3146
+ }
3147
+
3148
+ if (is_int($param['type_hint_token']) === true) {
3149
+ $expected[$key]['type_hint_token'] += $target;
3150
+ }
3151
+
3152
+ if (is_int($param['type_hint_end_token']) === true) {
3153
+ $expected[$key]['type_hint_end_token'] += $target;
3154
+ }
3155
+
3156
+ if (is_int($param['comma_token']) === true) {
3157
+ $expected[$key]['comma_token'] += $target;
3158
+ }
3159
+
3160
+ if (isset($param['default_token']) === true) {
3161
+ $expected[$key]['default_token'] += $target;
3162
+ }
3163
+
3164
+ if (isset($param['default_equal_token']) === true) {
3165
+ $expected[$key]['default_equal_token'] += $target;
3166
+ }
3167
+
3168
+ if (isset($param['visibility_token']) === true && is_int($param['visibility_token']) === true) {
3169
+ $expected[$key]['visibility_token'] += $target;
3170
+ }
3171
+
3172
+ if (isset($param['readonly_token']) === true) {
3173
+ $expected[$key]['readonly_token'] += $target;
3174
+ }
3175
+ }//end foreach
3176
+
3177
+ $this->assertSame($expected, $found);
3178
+
3179
+ }//end getMethodParametersTestHelper()
3180
+
3181
+
3182
+ }//end class