dependabot-composer 0.113.18 → 0.113.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2622) hide show
  1. checksums.yaml +4 -4
  2. data/helpers/.php_cs.cache +1 -0
  3. data/helpers/composer.lock +48 -48
  4. data/helpers/vendor/autoload.php +7 -0
  5. data/helpers/vendor/bin/composer +1 -0
  6. data/helpers/vendor/bin/jsonlint +1 -0
  7. data/helpers/vendor/bin/php-cs-fixer +1 -0
  8. data/helpers/vendor/bin/php-parse +1 -0
  9. data/helpers/vendor/bin/phpstan +1 -0
  10. data/helpers/vendor/bin/validate-json +1 -0
  11. data/helpers/vendor/composer/ClassLoader.php +445 -0
  12. data/helpers/vendor/composer/LICENSE +21 -0
  13. data/helpers/vendor/composer/autoload_classmap.php +180 -0
  14. data/helpers/vendor/composer/autoload_files.php +14 -0
  15. data/helpers/vendor/composer/autoload_namespaces.php +9 -0
  16. data/helpers/vendor/composer/autoload_psr4.php +39 -0
  17. data/helpers/vendor/composer/autoload_real.php +70 -0
  18. data/helpers/vendor/composer/autoload_static.php +371 -0
  19. data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
  20. data/helpers/vendor/composer/ca-bundle/README.md +85 -0
  21. data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
  22. data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3507 -0
  23. data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +310 -0
  24. data/helpers/vendor/composer/composer/.editorconfig +11 -0
  25. data/helpers/vendor/composer/composer/.gitattributes +17 -0
  26. data/helpers/vendor/composer/composer/.gitignore +11 -0
  27. data/helpers/vendor/composer/composer/CHANGELOG.md +828 -0
  28. data/helpers/vendor/composer/composer/LICENSE +19 -0
  29. data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
  30. data/helpers/vendor/composer/composer/README.md +62 -0
  31. data/helpers/vendor/composer/composer/bin/compile +31 -0
  32. data/helpers/vendor/composer/composer/bin/composer +62 -0
  33. data/helpers/vendor/composer/composer/composer.json +86 -0
  34. data/helpers/vendor/composer/composer/composer.lock +1800 -0
  35. data/helpers/vendor/composer/composer/doc/00-intro.md +156 -0
  36. data/helpers/vendor/composer/composer/doc/01-basic-usage.md +266 -0
  37. data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
  38. data/helpers/vendor/composer/composer/doc/03-cli.md +941 -0
  39. data/helpers/vendor/composer/composer/doc/04-schema.md +924 -0
  40. data/helpers/vendor/composer/composer/doc/05-repositories.md +717 -0
  41. data/helpers/vendor/composer/composer/doc/06-config.md +299 -0
  42. data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
  43. data/helpers/vendor/composer/composer/doc/articles/aliases.md +111 -0
  44. data/helpers/vendor/composer/composer/doc/articles/autoloader-optimization.md +111 -0
  45. data/helpers/vendor/composer/composer/doc/articles/custom-installers.md +204 -0
  46. data/helpers/vendor/composer/composer/doc/articles/handling-private-packages-with-satis.md +356 -0
  47. data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
  48. data/helpers/vendor/composer/composer/doc/articles/plugins.md +290 -0
  49. data/helpers/vendor/composer/composer/doc/articles/scripts.md +357 -0
  50. data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +309 -0
  51. data/helpers/vendor/composer/composer/doc/articles/vendor-binaries.md +110 -0
  52. data/helpers/vendor/composer/composer/doc/articles/versions.md +230 -0
  53. data/helpers/vendor/composer/composer/doc/dev/DefaultPolicy.md +55 -0
  54. data/helpers/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md +50 -0
  55. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md +42 -0
  56. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md +19 -0
  57. data/helpers/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +32 -0
  58. data/helpers/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md +4 -0
  59. data/helpers/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md +21 -0
  60. data/helpers/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md +21 -0
  61. data/helpers/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md +35 -0
  62. data/helpers/vendor/composer/composer/doc/fixtures/fixtures.md +22 -0
  63. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json +158 -0
  64. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json +50 -0
  65. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json +77 -0
  66. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json +50 -0
  67. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json +16 -0
  68. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json +22 -0
  69. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json +9 -0
  70. data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
  71. data/helpers/vendor/composer/composer/res/composer-schema.json +847 -0
  72. data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1013 -0
  73. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
  74. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +222 -0
  75. data/helpers/vendor/composer/composer/src/Composer/Cache.php +257 -0
  76. data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +46 -0
  77. data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +166 -0
  78. data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
  79. data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +255 -0
  80. data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +162 -0
  81. data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +74 -0
  82. data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +722 -0
  83. data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +387 -0
  84. data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +57 -0
  85. data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +729 -0
  86. data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +88 -0
  87. data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +97 -0
  88. data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +111 -0
  89. data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +168 -0
  90. data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +820 -0
  91. data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +124 -0
  92. data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +159 -0
  93. data/helpers/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php +95 -0
  94. data/helpers/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php +57 -0
  95. data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +163 -0
  96. data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +267 -0
  97. data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +142 -0
  98. data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +66 -0
  99. data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +83 -0
  100. data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +405 -0
  101. data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1015 -0
  102. data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +214 -0
  103. data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +152 -0
  104. data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +228 -0
  105. data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +172 -0
  106. data/helpers/vendor/composer/composer/src/Composer/Compiler.php +284 -0
  107. data/helpers/vendor/composer/composer/src/Composer/Composer.php +283 -0
  108. data/helpers/vendor/composer/composer/src/Composer/Config.php +479 -0
  109. data/helpers/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php +91 -0
  110. data/helpers/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php +271 -0
  111. data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +494 -0
  112. data/helpers/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php +90 -0
  113. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php +211 -0
  114. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php +285 -0
  115. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php +91 -0
  116. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php +66 -0
  117. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +67 -0
  118. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +67 -0
  119. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php +42 -0
  120. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php +50 -0
  121. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php +66 -0
  122. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php +80 -0
  123. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
  124. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +378 -0
  125. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +257 -0
  126. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Request.php +78 -0
  127. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php +268 -0
  128. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php +113 -0
  129. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php +176 -0
  130. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php +376 -0
  131. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php +94 -0
  132. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php +52 -0
  133. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php +144 -0
  134. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php +113 -0
  135. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php +874 -0
  136. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php +27 -0
  137. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php +88 -0
  138. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php +244 -0
  139. data/helpers/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php +135 -0
  140. data/helpers/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php +32 -0
  141. data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php +325 -0
  142. data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php +64 -0
  143. data/helpers/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php +32 -0
  144. data/helpers/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php +322 -0
  145. data/helpers/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php +26 -0
  146. data/helpers/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php +116 -0
  147. data/helpers/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php +517 -0
  148. data/helpers/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php +84 -0
  149. data/helpers/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php +100 -0
  150. data/helpers/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php +224 -0
  151. data/helpers/vendor/composer/composer/src/Composer/Downloader/PearPackageExtractor.php +266 -0
  152. data/helpers/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php +112 -0
  153. data/helpers/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php +36 -0
  154. data/helpers/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php +91 -0
  155. data/helpers/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php +225 -0
  156. data/helpers/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php +31 -0
  157. data/helpers/vendor/composer/composer/src/Composer/Downloader/TransportException.php +53 -0
  158. data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php +32 -0
  159. data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php +293 -0
  160. data/helpers/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php +60 -0
  161. data/helpers/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php +230 -0
  162. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/Event.php +103 -0
  163. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php +544 -0
  164. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php +48 -0
  165. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php +20 -0
  166. data/helpers/vendor/composer/composer/src/Composer/Exception/NoSslException.php +20 -0
  167. data/helpers/vendor/composer/composer/src/Composer/Factory.php +653 -0
  168. data/helpers/vendor/composer/composer/src/Composer/IO/BaseIO.php +263 -0
  169. data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +86 -0
  170. data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +322 -0
  171. data/helpers/vendor/composer/composer/src/Composer/IO/IOInterface.php +207 -0
  172. data/helpers/vendor/composer/composer/src/Composer/IO/NullIO.php +129 -0
  173. data/helpers/vendor/composer/composer/src/Composer/Installer.php +1803 -0
  174. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +214 -0
  175. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php +30 -0
  176. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallationManager.php +326 -0
  177. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php +161 -0
  178. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php +43 -0
  179. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php +79 -0
  180. data/helpers/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php +232 -0
  181. data/helpers/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php +100 -0
  182. data/helpers/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php +88 -0
  183. data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvent.php +65 -0
  184. data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvents.php +75 -0
  185. data/helpers/vendor/composer/composer/src/Composer/Installer/PearBinaryInstaller.php +144 -0
  186. data/helpers/vendor/composer/composer/src/Composer/Installer/PearInstaller.php +84 -0
  187. data/helpers/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php +84 -0
  188. data/helpers/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php +99 -0
  189. data/helpers/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php +151 -0
  190. data/helpers/vendor/composer/composer/src/Composer/Json/JsonFile.php +306 -0
  191. data/helpers/vendor/composer/composer/src/Composer/Json/JsonFormatter.php +134 -0
  192. data/helpers/vendor/composer/composer/src/Composer/Json/JsonManipulator.php +522 -0
  193. data/helpers/vendor/composer/composer/src/Composer/Json/JsonValidationException.php +34 -0
  194. data/helpers/vendor/composer/composer/src/Composer/Package/AliasPackage.php +414 -0
  195. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php +44 -0
  196. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php +105 -0
  197. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php +183 -0
  198. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php +43 -0
  199. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php +148 -0
  200. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php +31 -0
  201. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php +79 -0
  202. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php +107 -0
  203. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php +97 -0
  204. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php +74 -0
  205. data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +251 -0
  206. data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
  207. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +199 -0
  208. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +95 -0
  209. data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +151 -0
  210. data/helpers/vendor/composer/composer/src/Composer/Package/Link.php +128 -0
  211. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php +24 -0
  212. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php +24 -0
  213. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php +24 -0
  214. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php +24 -0
  215. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php +24 -0
  216. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php +290 -0
  217. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php +46 -0
  218. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php +45 -0
  219. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php +30 -0
  220. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php +264 -0
  221. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +499 -0
  222. data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +438 -0
  223. data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
  224. data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +389 -0
  225. data/helpers/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php +173 -0
  226. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackage.php +136 -0
  227. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php +142 -0
  228. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php +302 -0
  229. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php +81 -0
  230. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php +176 -0
  231. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php +23 -0
  232. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php +33 -0
  233. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capable.php +43 -0
  234. data/helpers/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php +88 -0
  235. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php +61 -0
  236. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php +39 -0
  237. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginManager.php +406 -0
  238. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php +68 -0
  239. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php +78 -0
  240. data/helpers/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php +94 -0
  241. data/helpers/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php +208 -0
  242. data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +107 -0
  243. data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +157 -0
  244. data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +833 -0
  245. data/helpers/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php +164 -0
  246. data/helpers/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php +23 -0
  247. data/helpers/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php +97 -0
  248. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php +24 -0
  249. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php +22 -0
  250. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php +24 -0
  251. data/helpers/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php +22 -0
  252. data/helpers/vendor/composer/composer/src/Composer/Repository/PackageRepository.php +61 -0
  253. data/helpers/vendor/composer/composer/src/Composer/Repository/PathRepository.php +190 -0
  254. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php +82 -0
  255. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php +67 -0
  256. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelReader.php +101 -0
  257. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php +164 -0
  258. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php +139 -0
  259. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php +60 -0
  260. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php +50 -0
  261. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php +317 -0
  262. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageInfo.php +94 -0
  263. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php +50 -0
  264. data/helpers/vendor/composer/composer/src/Composer/Repository/PearRepository.php +198 -0
  265. data/helpers/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php +342 -0
  266. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +169 -0
  267. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
  268. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +177 -0
  269. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
  270. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +452 -0
  271. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +243 -0
  272. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php +91 -0
  273. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php +226 -0
  274. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +476 -0
  275. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +518 -0
  276. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php +91 -0
  277. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php +236 -0
  278. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +186 -0
  279. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php +397 -0
  280. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php +175 -0
  281. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php +117 -0
  282. data/helpers/vendor/composer/composer/src/Composer/Repository/VcsRepository.php +410 -0
  283. data/helpers/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php +23 -0
  284. data/helpers/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php +66 -0
  285. data/helpers/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php +54 -0
  286. data/helpers/vendor/composer/composer/src/Composer/Script/CommandEvent.php +22 -0
  287. data/helpers/vendor/composer/composer/src/Composer/Script/Event.php +133 -0
  288. data/helpers/vendor/composer/composer/src/Composer/Script/PackageEvent.php +24 -0
  289. data/helpers/vendor/composer/composer/src/Composer/Script/ScriptEvents.php +193 -0
  290. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php +36 -0
  291. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php +75 -0
  292. data/helpers/vendor/composer/composer/src/Composer/Util/AuthHelper.php +63 -0
  293. data/helpers/vendor/composer/composer/src/Composer/Util/Bitbucket.php +245 -0
  294. data/helpers/vendor/composer/composer/src/Composer/Util/ComposerMirror.php +57 -0
  295. data/helpers/vendor/composer/composer/src/Composer/Util/ConfigValidator.php +191 -0
  296. data/helpers/vendor/composer/composer/src/Composer/Util/ErrorHandler.php +82 -0
  297. data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +715 -0
  298. data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +374 -0
  299. data/helpers/vendor/composer/composer/src/Composer/Util/GitHub.php +180 -0
  300. data/helpers/vendor/composer/composer/src/Composer/Util/GitLab.php +172 -0
  301. data/helpers/vendor/composer/composer/src/Composer/Util/Hg.php +94 -0
  302. data/helpers/vendor/composer/composer/src/Composer/Util/IniHelper.php +64 -0
  303. data/helpers/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php +147 -0
  304. data/helpers/vendor/composer/composer/src/Composer/Util/PackageSorter.php +92 -0
  305. data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +579 -0
  306. data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
  307. data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +193 -0
  308. data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1126 -0
  309. data/helpers/vendor/composer/composer/src/Composer/Util/Silencer.php +78 -0
  310. data/helpers/vendor/composer/composer/src/Composer/Util/SpdxLicense.php +24 -0
  311. data/helpers/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php +177 -0
  312. data/helpers/vendor/composer/composer/src/Composer/Util/Svn.php +381 -0
  313. data/helpers/vendor/composer/composer/src/Composer/Util/TlsHelper.php +202 -0
  314. data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -0
  315. data/helpers/vendor/composer/composer/src/Composer/Util/Zip.php +108 -0
  316. data/helpers/vendor/composer/composer/src/Composer/XdebugHandler.php +31 -0
  317. data/helpers/vendor/composer/composer/src/bootstrap.php +24 -0
  318. data/helpers/vendor/composer/installed.json +2375 -0
  319. data/helpers/vendor/composer/semver/CHANGELOG.md +72 -0
  320. data/helpers/vendor/composer/semver/LICENSE +19 -0
  321. data/helpers/vendor/composer/semver/README.md +70 -0
  322. data/helpers/vendor/composer/semver/composer.json +58 -0
  323. data/helpers/vendor/composer/semver/src/Comparator.php +111 -0
  324. data/helpers/vendor/composer/semver/src/Constraint/AbstractConstraint.php +63 -0
  325. data/helpers/vendor/composer/semver/src/Constraint/Constraint.php +219 -0
  326. data/helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php +32 -0
  327. data/helpers/vendor/composer/semver/src/Constraint/EmptyConstraint.php +59 -0
  328. data/helpers/vendor/composer/semver/src/Constraint/MultiConstraint.php +120 -0
  329. data/helpers/vendor/composer/semver/src/Semver.php +127 -0
  330. data/helpers/vendor/composer/semver/src/VersionParser.php +540 -0
  331. data/helpers/vendor/composer/spdx-licenses/.php_cs.dist +59 -0
  332. data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +94 -0
  333. data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
  334. data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
  335. data/helpers/vendor/composer/spdx-licenses/composer.json +56 -0
  336. data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +110 -0
  337. data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +1982 -0
  338. data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
  339. data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +59 -0
  340. data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
  341. data/helpers/vendor/composer/xdebug-handler/README.md +288 -0
  342. data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
  343. data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
  344. data/helpers/vendor/composer/xdebug-handler/src/Process.php +170 -0
  345. data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
  346. data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +565 -0
  347. data/helpers/vendor/doctrine/annotations/CHANGELOG.md +162 -0
  348. data/helpers/vendor/doctrine/annotations/LICENSE +19 -0
  349. data/helpers/vendor/doctrine/annotations/README.md +17 -0
  350. data/helpers/vendor/doctrine/annotations/composer.json +43 -0
  351. data/helpers/vendor/doctrine/annotations/docs/en/annotations.rst +223 -0
  352. data/helpers/vendor/doctrine/annotations/docs/en/custom.rst +341 -0
  353. data/helpers/vendor/doctrine/annotations/docs/en/index.rst +90 -0
  354. data/helpers/vendor/doctrine/annotations/docs/en/sidebar.rst +6 -0
  355. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php +79 -0
  356. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php +47 -0
  357. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php +37 -0
  358. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php +84 -0
  359. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php +54 -0
  360. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php +33 -0
  361. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php +107 -0
  362. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php +197 -0
  363. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php +409 -0
  364. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +174 -0
  365. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php +262 -0
  366. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php +147 -0
  367. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php +1197 -0
  368. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php +290 -0
  369. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php +119 -0
  370. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php +91 -0
  371. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php +89 -0
  372. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php +127 -0
  373. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php +194 -0
  374. data/helpers/vendor/doctrine/annotations/phpbench.json.dist +4 -0
  375. data/helpers/vendor/doctrine/annotations/phpstan.neon +14 -0
  376. data/helpers/vendor/doctrine/lexer/.doctrine-project.json +17 -0
  377. data/helpers/vendor/doctrine/lexer/.github/FUNDING.yml +3 -0
  378. data/helpers/vendor/doctrine/lexer/.gitignore +2 -0
  379. data/helpers/vendor/doctrine/lexer/LICENSE +19 -0
  380. data/helpers/vendor/doctrine/lexer/README.md +7 -0
  381. data/helpers/vendor/doctrine/lexer/composer.json +36 -0
  382. data/helpers/vendor/doctrine/lexer/docs/en/dql-parser.rst +294 -0
  383. data/helpers/vendor/doctrine/lexer/docs/en/index.rst +53 -0
  384. data/helpers/vendor/doctrine/lexer/docs/en/sidebar.rst +6 -0
  385. data/helpers/vendor/doctrine/lexer/docs/en/simple-parser-example.rst +102 -0
  386. data/helpers/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php +332 -0
  387. data/helpers/vendor/doctrine/lexer/phpunit.xml.dist +26 -0
  388. data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/AbstractLexerTest.php +268 -0
  389. data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/ConcreteLexer.php +49 -0
  390. data/helpers/vendor/friendsofphp/php-cs-fixer/.php_cs.dist +48 -0
  391. data/helpers/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +2844 -0
  392. data/helpers/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +41 -0
  393. data/helpers/vendor/friendsofphp/php-cs-fixer/LICENSE +20 -0
  394. data/helpers/vendor/friendsofphp/php-cs-fixer/README.rst +2079 -0
  395. data/helpers/vendor/friendsofphp/php-cs-fixer/UPGRADE.md +184 -0
  396. data/helpers/vendor/friendsofphp/php-cs-fixer/box.json.dist +34 -0
  397. data/helpers/vendor/friendsofphp/php-cs-fixer/composer.json +81 -0
  398. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/bin-download.sh +23 -0
  399. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/build.sh +22 -0
  400. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/check-shell-scripts.sh +21 -0
  401. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/ci-integration.sh +8 -0
  402. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/composer.json +19 -0
  403. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/info-extractor.php +14 -0
  404. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/trigger-website.sh +28 -0
  405. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/COOKBOOK-FIXERS.md +523 -0
  406. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/checkstyle.xsd +44 -0
  407. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/junit-10.xsd +135 -0
  408. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/schema.json +47 -0
  409. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/xml.xsd +83 -0
  410. data/helpers/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +79 -0
  411. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractAlignFixerHelper.php +125 -0
  412. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +224 -0
  413. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +227 -0
  414. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +127 -0
  415. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +68 -0
  416. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractLinesBeforeNamespaceFixer.php +110 -0
  417. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +211 -0
  418. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +137 -0
  419. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +122 -0
  420. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPsrAutoloadingFixer.php +87 -0
  421. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +145 -0
  422. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +56 -0
  423. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +35 -0
  424. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +53 -0
  425. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +26 -0
  426. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +125 -0
  427. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +99 -0
  428. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +36 -0
  429. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +30 -0
  430. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +111 -0
  431. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +53 -0
  432. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Config.php +280 -0
  433. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +196 -0
  434. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +40 -0
  435. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +54 -0
  436. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
  437. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
  438. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +114 -0
  439. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +408 -0
  440. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +57 -0
  441. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +270 -0
  442. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +57 -0
  443. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +622 -0
  444. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ReadmeCommand.php +294 -0
  445. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +176 -0
  446. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +936 -0
  447. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +154 -0
  448. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php +23 -0
  449. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutput.php +147 -0
  450. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php +21 -0
  451. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +52 -0
  452. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +24 -0
  453. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +117 -0
  454. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +46 -0
  455. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +74 -0
  456. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +102 -0
  457. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +31 -0
  458. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +48 -0
  459. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +27 -0
  460. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannDiffer.php +39 -0
  461. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannShortDiffer.php +39 -0
  462. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +43 -0
  463. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +307 -0
  464. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +187 -0
  465. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +144 -0
  466. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +63 -0
  467. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +113 -0
  468. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +60 -0
  469. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +99 -0
  470. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +379 -0
  471. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +119 -0
  472. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +82 -0
  473. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +87 -0
  474. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +80 -0
  475. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Finder.php +36 -0
  476. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +147 -0
  477. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +184 -0
  478. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +112 -0
  479. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +217 -0
  480. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +163 -0
  481. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +214 -0
  482. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +167 -0
  483. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +255 -0
  484. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +150 -0
  485. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +86 -0
  486. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +90 -0
  487. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +154 -0
  488. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +59 -0
  489. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrailingCommaInMultilineArrayFixer.php +138 -0
  490. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +104 -0
  491. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +106 -0
  492. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +1057 -0
  493. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +93 -0
  494. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +171 -0
  495. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr0Fixer.php +169 -0
  496. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr4Fixer.php +100 -0
  497. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseConstantsFixer.php +102 -0
  498. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +75 -0
  499. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +105 -0
  500. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +98 -0
  501. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +232 -0
  502. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +107 -0
  503. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +179 -0
  504. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +128 -0
  505. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +76 -0
  506. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +159 -0
  507. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +107 -0
  508. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +91 -0
  509. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +76 -0
  510. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +394 -0
  511. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +448 -0
  512. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +60 -0
  513. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +198 -0
  514. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/MethodSeparationFixer.php +73 -0
  515. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +92 -0
  516. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +98 -0
  517. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +389 -0
  518. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +139 -0
  519. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +502 -0
  520. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +231 -0
  521. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +137 -0
  522. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +194 -0
  523. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +226 -0
  524. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +104 -0
  525. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +193 -0
  526. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +164 -0
  527. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +191 -0
  528. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HashToSlashCommentFixer.php +58 -0
  529. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +356 -0
  530. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +95 -0
  531. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +168 -0
  532. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +75 -0
  533. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +168 -0
  534. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +51 -0
  535. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurationDefinitionFixerInterface.php +28 -0
  536. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +275 -0
  537. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +91 -0
  538. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +151 -0
  539. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +226 -0
  540. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +366 -0
  541. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +101 -0
  542. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +74 -0
  543. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +189 -0
  544. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +110 -0
  545. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +118 -0
  546. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +104 -0
  547. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +92 -0
  548. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +731 -0
  549. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DefinedFixerInterface.php +29 -0
  550. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +26 -0
  551. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +103 -0
  552. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +129 -0
  553. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +202 -0
  554. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +347 -0
  555. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +81 -0
  556. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +240 -0
  557. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +131 -0
  558. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +112 -0
  559. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +200 -0
  560. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +87 -0
  561. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +150 -0
  562. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +512 -0
  563. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +415 -0
  564. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +182 -0
  565. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +205 -0
  566. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +326 -0
  567. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +123 -0
  568. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +134 -0
  569. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +263 -0
  570. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +178 -0
  571. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +98 -0
  572. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +255 -0
  573. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +527 -0
  574. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +252 -0
  575. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +145 -0
  576. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +252 -0
  577. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +164 -0
  578. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +192 -0
  579. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +132 -0
  580. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +130 -0
  581. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +176 -0
  582. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +91 -0
  583. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +238 -0
  584. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +202 -0
  585. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +232 -0
  586. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SilencedDeprecationErrorFixer.php +55 -0
  587. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +150 -0
  588. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +144 -0
  589. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +63 -0
  590. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +101 -0
  591. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +69 -0
  592. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +244 -0
  593. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignDoubleArrowFixerHelper.php +152 -0
  594. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignEqualsFixerHelper.php +78 -0
  595. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +839 -0
  596. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +154 -0
  597. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +208 -0
  598. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +76 -0
  599. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +151 -0
  600. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +80 -0
  601. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +78 -0
  602. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +67 -0
  603. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/PreIncrementFixer.php +56 -0
  604. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +169 -0
  605. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +56 -0
  606. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +112 -0
  607. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +218 -0
  608. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +68 -0
  609. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +96 -0
  610. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +134 -0
  611. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +73 -0
  612. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +73 -0
  613. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoShortEchoTagFixer.php +70 -0
  614. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +223 -0
  615. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +454 -0
  616. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +200 -0
  617. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +273 -0
  618. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +104 -0
  619. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +280 -0
  620. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +274 -0
  621. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +150 -0
  622. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +146 -0
  623. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +220 -0
  624. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +300 -0
  625. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitOrderedCoversFixer.php +106 -0
  626. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +142 -0
  627. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +279 -0
  628. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +158 -0
  629. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +61 -0
  630. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +561 -0
  631. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +474 -0
  632. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +152 -0
  633. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +170 -0
  634. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +117 -0
  635. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +112 -0
  636. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +70 -0
  637. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +330 -0
  638. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +286 -0
  639. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +431 -0
  640. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +117 -0
  641. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +144 -0
  642. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagFixer.php +96 -0
  643. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +59 -0
  644. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +176 -0
  645. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +125 -0
  646. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +59 -0
  647. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +195 -0
  648. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +175 -0
  649. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +227 -0
  650. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +103 -0
  651. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +181 -0
  652. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +106 -0
  653. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +93 -0
  654. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +94 -0
  655. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +215 -0
  656. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +131 -0
  657. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +147 -0
  658. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +212 -0
  659. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +67 -0
  660. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +101 -0
  661. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/BlankLineBeforeReturnFixer.php +61 -0
  662. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +111 -0
  663. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +362 -0
  664. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +173 -0
  665. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +293 -0
  666. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +163 -0
  667. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoMultilineWhitespaceBeforeSemicolonsFixer.php +68 -0
  668. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +65 -0
  669. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +63 -0
  670. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +143 -0
  671. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +166 -0
  672. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +76 -0
  673. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +154 -0
  674. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +166 -0
  675. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +159 -0
  676. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +107 -0
  677. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +65 -0
  678. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +112 -0
  679. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +106 -0
  680. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +85 -0
  681. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +376 -0
  682. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +330 -0
  683. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +79 -0
  684. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +150 -0
  685. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +147 -0
  686. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +92 -0
  687. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +205 -0
  688. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +465 -0
  689. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraConsecutiveBlankLinesFixer.php +73 -0
  690. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +107 -0
  691. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +109 -0
  692. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +113 -0
  693. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +103 -0
  694. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +70 -0
  695. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +23 -0
  696. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +103 -0
  697. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +98 -0
  698. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +53 -0
  699. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +100 -0
  700. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +21 -0
  701. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +129 -0
  702. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +28 -0
  703. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverRootless.php +99 -0
  704. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +176 -0
  705. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +149 -0
  706. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +53 -0
  707. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
  708. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +55 -0
  709. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +29 -0
  710. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +69 -0
  711. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +26 -0
  712. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +93 -0
  713. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +55 -0
  714. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +67 -0
  715. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +26 -0
  716. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +75 -0
  717. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +26 -0
  718. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +259 -0
  719. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFileProcessedEvent.php +59 -0
  720. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +36 -0
  721. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +76 -0
  722. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +75 -0
  723. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +64 -0
  724. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +44 -0
  725. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +20 -0
  726. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +24 -0
  727. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
  728. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +50 -0
  729. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +59 -0
  730. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +70 -0
  731. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +48 -0
  732. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +22 -0
  733. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +39 -0
  734. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
  735. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Preg.php +189 -0
  736. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
  737. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/CheckstyleReporter.php +75 -0
  738. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/GitlabReporter.php +56 -0
  739. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JsonReporter.php +71 -0
  740. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JunitReporter.php +148 -0
  741. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReportSummary.php +123 -0
  742. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterFactory.php +102 -0
  743. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterInterface.php +33 -0
  744. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/TextReporter.php +110 -0
  745. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/XmlReporter.php +146 -0
  746. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSet.php +531 -0
  747. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSetInterface.php +59 -0
  748. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingIterator.php +80 -0
  749. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +119 -0
  750. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileLintingIterator.php +68 -0
  751. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +308 -0
  752. data/helpers/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +172 -0
  753. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractFixerTestCase.php +36 -0
  754. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractIntegrationTestCase.php +36 -0
  755. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AccessibleObject.php +93 -0
  756. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/IntegrationCase.php +140 -0
  757. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +42 -0
  758. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +109 -0
  759. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +127 -0
  760. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +147 -0
  761. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +30 -0
  762. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +125 -0
  763. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +143 -0
  764. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +305 -0
  765. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +99 -0
  766. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +111 -0
  767. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +73 -0
  768. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +95 -0
  769. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CodeHasher.php +38 -0
  770. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Generator/NamespacedStringTokenGenerator.php +43 -0
  771. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Resolver/TypeShortNameResolver.php +99 -0
  772. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +618 -0
  773. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1452 -0
  774. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +695 -0
  775. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +61 -0
  776. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +88 -0
  777. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +64 -0
  778. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/CurlyBraceTransformer.php +223 -0
  779. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +67 -0
  780. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +61 -0
  781. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +70 -0
  782. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +57 -0
  783. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +200 -0
  784. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +86 -0
  785. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +83 -0
  786. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +111 -0
  787. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +71 -0
  788. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +74 -0
  789. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +113 -0
  790. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +109 -0
  791. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +31 -0
  792. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Utils.php +193 -0
  793. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +56 -0
  794. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +57 -0
  795. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractFixerTestCase.php +232 -0
  796. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationCaseFactory.php +263 -0
  797. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationTestCase.php +431 -0
  798. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/Assert/AssertTokensTrait.php +48 -0
  799. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCase.php +164 -0
  800. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactory.php +22 -0
  801. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactoryInterface.php +30 -0
  802. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/InternalIntegrationCaseFactory.php +35 -0
  803. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/TestCase.php +49 -0
  804. data/helpers/vendor/jean85/pretty-package-versions/composer.json +43 -0
  805. data/helpers/vendor/jean85/pretty-package-versions/src/PrettyVersions.php +15 -0
  806. data/helpers/vendor/jean85/pretty-package-versions/src/Version.php +78 -0
  807. data/helpers/vendor/justinrainbow/json-schema/.gitattributes +5 -0
  808. data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +30 -0
  809. data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
  810. data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
  811. data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
  812. data/helpers/vendor/justinrainbow/json-schema/composer.json +76 -0
  813. data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
  814. data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
  815. data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
  816. data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
  817. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
  818. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
  819. data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
  820. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
  821. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +121 -0
  822. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
  823. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
  824. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
  825. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
  826. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
  827. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +81 -0
  828. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
  829. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
  830. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
  831. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
  832. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +40 -0
  833. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
  834. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
  835. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +413 -0
  836. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
  837. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
  838. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
  839. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
  840. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
  841. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
  842. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
  843. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
  844. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
  845. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
  846. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
  847. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
  848. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
  849. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
  850. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
  851. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
  852. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
  853. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
  854. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
  855. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
  856. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
  857. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
  858. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
  859. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +349 -0
  860. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
  861. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
  862. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +90 -0
  863. data/helpers/vendor/nette/bootstrap/composer.json +52 -0
  864. data/helpers/vendor/nette/bootstrap/contributing.md +33 -0
  865. data/helpers/vendor/nette/bootstrap/license.md +60 -0
  866. data/helpers/vendor/nette/bootstrap/readme.md +30 -0
  867. data/helpers/vendor/nette/bootstrap/src/Bootstrap/Configurator.php +327 -0
  868. data/helpers/vendor/nette/di/.phpstorm.meta.php +8 -0
  869. data/helpers/vendor/nette/di/composer.json +43 -0
  870. data/helpers/vendor/nette/di/contributing.md +33 -0
  871. data/helpers/vendor/nette/di/license.md +60 -0
  872. data/helpers/vendor/nette/di/readme.md +348 -0
  873. data/helpers/vendor/nette/di/src/Bridges/DITracy/ContainerPanel.php +90 -0
  874. data/helpers/vendor/nette/di/src/Bridges/DITracy/templates/ContainerPanel.panel.phtml +81 -0
  875. data/helpers/vendor/nette/di/src/Bridges/DITracy/templates/ContainerPanel.tab.phtml +11 -0
  876. data/helpers/vendor/nette/di/src/DI/Autowiring.php +151 -0
  877. data/helpers/vendor/nette/di/src/DI/Compiler.php +326 -0
  878. data/helpers/vendor/nette/di/src/DI/CompilerExtension.php +171 -0
  879. data/helpers/vendor/nette/di/src/DI/Config/Adapter.php +28 -0
  880. data/helpers/vendor/nette/di/src/DI/Config/Adapters/NeonAdapter.php +130 -0
  881. data/helpers/vendor/nette/di/src/DI/Config/Adapters/PhpAdapter.php +38 -0
  882. data/helpers/vendor/nette/di/src/DI/Config/DefinitionSchema.php +254 -0
  883. data/helpers/vendor/nette/di/src/DI/Config/Helpers.php +47 -0
  884. data/helpers/vendor/nette/di/src/DI/Config/Loader.php +135 -0
  885. data/helpers/vendor/nette/di/src/DI/Container.php +312 -0
  886. data/helpers/vendor/nette/di/src/DI/ContainerBuilder.php +415 -0
  887. data/helpers/vendor/nette/di/src/DI/ContainerLoader.php +125 -0
  888. data/helpers/vendor/nette/di/src/DI/Definitions/AccessorDefinition.php +122 -0
  889. data/helpers/vendor/nette/di/src/DI/Definitions/Definition.php +227 -0
  890. data/helpers/vendor/nette/di/src/DI/Definitions/FactoryDefinition.php +303 -0
  891. data/helpers/vendor/nette/di/src/DI/Definitions/ImportedDefinition.php +57 -0
  892. data/helpers/vendor/nette/di/src/DI/Definitions/LocatorDefinition.php +171 -0
  893. data/helpers/vendor/nette/di/src/DI/Definitions/Reference.php +65 -0
  894. data/helpers/vendor/nette/di/src/DI/Definitions/ServiceDefinition.php +274 -0
  895. data/helpers/vendor/nette/di/src/DI/Definitions/Statement.php +72 -0
  896. data/helpers/vendor/nette/di/src/DI/DependencyChecker.php +176 -0
  897. data/helpers/vendor/nette/di/src/DI/DynamicParameter.php +20 -0
  898. data/helpers/vendor/nette/di/src/DI/Extensions/ConstantsExtension.php +26 -0
  899. data/helpers/vendor/nette/di/src/DI/Extensions/DIExtension.php +134 -0
  900. data/helpers/vendor/nette/di/src/DI/Extensions/DecoratorExtension.php +77 -0
  901. data/helpers/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php +42 -0
  902. data/helpers/vendor/nette/di/src/DI/Extensions/InjectExtension.php +157 -0
  903. data/helpers/vendor/nette/di/src/DI/Extensions/ParametersExtension.php +64 -0
  904. data/helpers/vendor/nette/di/src/DI/Extensions/PhpExtension.php +53 -0
  905. data/helpers/vendor/nette/di/src/DI/Extensions/SearchExtension.php +144 -0
  906. data/helpers/vendor/nette/di/src/DI/Extensions/ServicesExtension.php +244 -0
  907. data/helpers/vendor/nette/di/src/DI/Helpers.php +190 -0
  908. data/helpers/vendor/nette/di/src/DI/PhpGenerator.php +204 -0
  909. data/helpers/vendor/nette/di/src/DI/Resolver.php +530 -0
  910. data/helpers/vendor/nette/di/src/DI/exceptions.php +49 -0
  911. data/helpers/vendor/nette/di/src/compatibility.php +12 -0
  912. data/helpers/vendor/nette/finder/composer.json +37 -0
  913. data/helpers/vendor/nette/finder/contributing.md +33 -0
  914. data/helpers/vendor/nette/finder/license.md +60 -0
  915. data/helpers/vendor/nette/finder/readme.md +181 -0
  916. data/helpers/vendor/nette/finder/src/Utils/Finder.php +380 -0
  917. data/helpers/vendor/nette/neon/composer.json +35 -0
  918. data/helpers/vendor/nette/neon/contributing.md +33 -0
  919. data/helpers/vendor/nette/neon/license.md +60 -0
  920. data/helpers/vendor/nette/neon/readme.md +96 -0
  921. data/helpers/vendor/nette/neon/src/Neon/Decoder.php +358 -0
  922. data/helpers/vendor/nette/neon/src/Neon/Encoder.php +84 -0
  923. data/helpers/vendor/nette/neon/src/Neon/Entity.php +36 -0
  924. data/helpers/vendor/nette/neon/src/Neon/Exception.php +18 -0
  925. data/helpers/vendor/nette/neon/src/Neon/Neon.php +42 -0
  926. data/helpers/vendor/nette/neon/src/neon.php +9 -0
  927. data/helpers/vendor/nette/neon/syntax.txt +32 -0
  928. data/helpers/vendor/nette/php-generator/composer.json +34 -0
  929. data/helpers/vendor/nette/php-generator/contributing.md +33 -0
  930. data/helpers/vendor/nette/php-generator/license.md +60 -0
  931. data/helpers/vendor/nette/php-generator/readme.md +521 -0
  932. data/helpers/vendor/nette/php-generator/src/PhpGenerator/ClassType.php +507 -0
  933. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Closure.php +70 -0
  934. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Constant.php +43 -0
  935. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Factory.php +134 -0
  936. data/helpers/vendor/nette/php-generator/src/PhpGenerator/GlobalFunction.php +44 -0
  937. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Helpers.php +269 -0
  938. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Method.php +134 -0
  939. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Parameter.php +122 -0
  940. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PhpFile.php +115 -0
  941. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PhpLiteral.php +32 -0
  942. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PhpNamespace.php +199 -0
  943. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Printer.php +252 -0
  944. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Property.php +64 -0
  945. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PsrPrinter.php +29 -0
  946. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/CommentAware.php +46 -0
  947. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/FunctionLike.php +189 -0
  948. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/NameAware.php +49 -0
  949. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/VisibilityAware.php +43 -0
  950. data/helpers/vendor/nette/robot-loader/composer.json +36 -0
  951. data/helpers/vendor/nette/robot-loader/contributing.md +33 -0
  952. data/helpers/vendor/nette/robot-loader/license.md +60 -0
  953. data/helpers/vendor/nette/robot-loader/readme.md +113 -0
  954. data/helpers/vendor/nette/robot-loader/src/RobotLoader/RobotLoader.php +474 -0
  955. data/helpers/vendor/nette/schema/composer.json +34 -0
  956. data/helpers/vendor/nette/schema/contributing.md +33 -0
  957. data/helpers/vendor/nette/schema/license.md +60 -0
  958. data/helpers/vendor/nette/schema/readme.md +304 -0
  959. data/helpers/vendor/nette/schema/src/Schema/Context.php +39 -0
  960. data/helpers/vendor/nette/schema/src/Schema/DynamicParameter.php +15 -0
  961. data/helpers/vendor/nette/schema/src/Schema/Elements/AnyOf.php +102 -0
  962. data/helpers/vendor/nette/schema/src/Schema/Elements/Base.php +137 -0
  963. data/helpers/vendor/nette/schema/src/Schema/Elements/Structure.php +175 -0
  964. data/helpers/vendor/nette/schema/src/Schema/Elements/Type.php +152 -0
  965. data/helpers/vendor/nette/schema/src/Schema/Expect.php +115 -0
  966. data/helpers/vendor/nette/schema/src/Schema/Helpers.php +86 -0
  967. data/helpers/vendor/nette/schema/src/Schema/Processor.php +93 -0
  968. data/helpers/vendor/nette/schema/src/Schema/Schema.php +37 -0
  969. data/helpers/vendor/nette/schema/src/Schema/ValidationException.php +35 -0
  970. data/helpers/vendor/nette/utils/.phpstorm.meta.php +19 -0
  971. data/helpers/vendor/nette/utils/composer.json +42 -0
  972. data/helpers/vendor/nette/utils/contributing.md +33 -0
  973. data/helpers/vendor/nette/utils/license.md +60 -0
  974. data/helpers/vendor/nette/utils/readme.md +41 -0
  975. data/helpers/vendor/nette/utils/src/Iterators/CachingIterator.php +166 -0
  976. data/helpers/vendor/nette/utils/src/Iterators/Mapper.php +34 -0
  977. data/helpers/vendor/nette/utils/src/Utils/ArrayHash.php +94 -0
  978. data/helpers/vendor/nette/utils/src/Utils/ArrayList.php +110 -0
  979. data/helpers/vendor/nette/utils/src/Utils/Arrays.php +300 -0
  980. data/helpers/vendor/nette/utils/src/Utils/Callback.php +164 -0
  981. data/helpers/vendor/nette/utils/src/Utils/DateTime.php +124 -0
  982. data/helpers/vendor/nette/utils/src/Utils/FileSystem.php +159 -0
  983. data/helpers/vendor/nette/utils/src/Utils/Html.php +614 -0
  984. data/helpers/vendor/nette/utils/src/Utils/IHtmlString.php +20 -0
  985. data/helpers/vendor/nette/utils/src/Utils/ITranslator.php +23 -0
  986. data/helpers/vendor/nette/utils/src/Utils/Image.php +623 -0
  987. data/helpers/vendor/nette/utils/src/Utils/Json.php +60 -0
  988. data/helpers/vendor/nette/utils/src/Utils/ObjectHelpers.php +186 -0
  989. data/helpers/vendor/nette/utils/src/Utils/ObjectMixin.php +43 -0
  990. data/helpers/vendor/nette/utils/src/Utils/Paginator.php +212 -0
  991. data/helpers/vendor/nette/utils/src/Utils/Random.php +44 -0
  992. data/helpers/vendor/nette/utils/src/Utils/Reflection.php +303 -0
  993. data/helpers/vendor/nette/utils/src/Utils/SmartObject.php +121 -0
  994. data/helpers/vendor/nette/utils/src/Utils/StaticClass.php +36 -0
  995. data/helpers/vendor/nette/utils/src/Utils/Strings.php +508 -0
  996. data/helpers/vendor/nette/utils/src/Utils/Validators.php +344 -0
  997. data/helpers/vendor/nette/utils/src/Utils/exceptions.php +159 -0
  998. data/helpers/vendor/nikic/php-parser/.gitignore +5 -0
  999. data/helpers/vendor/nikic/php-parser/.travis.yml +36 -0
  1000. data/helpers/vendor/nikic/php-parser/CHANGELOG.md +683 -0
  1001. data/helpers/vendor/nikic/php-parser/LICENSE +31 -0
  1002. data/helpers/vendor/nikic/php-parser/README.md +225 -0
  1003. data/helpers/vendor/nikic/php-parser/UPGRADE-1.0.md +121 -0
  1004. data/helpers/vendor/nikic/php-parser/UPGRADE-2.0.md +74 -0
  1005. data/helpers/vendor/nikic/php-parser/UPGRADE-3.0.md +160 -0
  1006. data/helpers/vendor/nikic/php-parser/UPGRADE-4.0.md +77 -0
  1007. data/helpers/vendor/nikic/php-parser/bin/php-parse +205 -0
  1008. data/helpers/vendor/nikic/php-parser/composer.json +40 -0
  1009. data/helpers/vendor/nikic/php-parser/doc/0_Introduction.markdown +80 -0
  1010. data/helpers/vendor/nikic/php-parser/doc/2_Usage_of_basic_components.markdown +516 -0
  1011. data/helpers/vendor/nikic/php-parser/doc/README.md +46 -0
  1012. data/helpers/vendor/nikic/php-parser/doc/component/AST_builders.markdown +138 -0
  1013. data/helpers/vendor/nikic/php-parser/doc/component/Constant_expression_evaluation.markdown +115 -0
  1014. data/helpers/vendor/nikic/php-parser/doc/component/Error_handling.markdown +75 -0
  1015. data/helpers/vendor/nikic/php-parser/doc/component/FAQ.markdown +68 -0
  1016. data/helpers/vendor/nikic/php-parser/doc/component/JSON_representation.markdown +131 -0
  1017. data/helpers/vendor/nikic/php-parser/doc/component/Lexer.markdown +159 -0
  1018. data/helpers/vendor/nikic/php-parser/doc/component/Name_resolution.markdown +87 -0
  1019. data/helpers/vendor/nikic/php-parser/doc/component/Performance.markdown +65 -0
  1020. data/helpers/vendor/nikic/php-parser/doc/component/Pretty_printing.markdown +96 -0
  1021. data/helpers/vendor/nikic/php-parser/doc/component/Walking_the_AST.markdown +337 -0
  1022. data/helpers/vendor/nikic/php-parser/grammar/README.md +28 -0
  1023. data/helpers/vendor/nikic/php-parser/grammar/parser.template +106 -0
  1024. data/helpers/vendor/nikic/php-parser/grammar/php5.y +1026 -0
  1025. data/helpers/vendor/nikic/php-parser/grammar/php7.y +1023 -0
  1026. data/helpers/vendor/nikic/php-parser/grammar/rebuildParsers.php +257 -0
  1027. data/helpers/vendor/nikic/php-parser/grammar/tokens.template +17 -0
  1028. data/helpers/vendor/nikic/php-parser/grammar/tokens.y +114 -0
  1029. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder.php +13 -0
  1030. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Class_.php +122 -0
  1031. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Declaration.php +43 -0
  1032. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php +74 -0
  1033. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Function_.php +50 -0
  1034. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Interface_.php +75 -0
  1035. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Method.php +129 -0
  1036. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php +45 -0
  1037. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Param.php +106 -0
  1038. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Property.php +132 -0
  1039. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php +64 -0
  1040. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php +148 -0
  1041. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Trait_.php +60 -0
  1042. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Use_.php +49 -0
  1043. data/helpers/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php +348 -0
  1044. data/helpers/vendor/nikic/php-parser/lib/PhpParser/BuilderHelpers.php +277 -0
  1045. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Comment.php +167 -0
  1046. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Comment/Doc.php +7 -0
  1047. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php +6 -0
  1048. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php +226 -0
  1049. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Error.php +180 -0
  1050. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler.php +13 -0
  1051. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php +46 -0
  1052. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php +18 -0
  1053. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php +27 -0
  1054. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/Differ.php +164 -0
  1055. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php +57 -0
  1056. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php +256 -0
  1057. data/helpers/vendor/nikic/php-parser/lib/PhpParser/JsonDecoder.php +101 -0
  1058. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer.php +406 -0
  1059. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php +250 -0
  1060. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php +41 -0
  1061. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php +53 -0
  1062. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php +98 -0
  1063. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulatorInterface.php +14 -0
  1064. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NameContext.php +285 -0
  1065. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node.php +153 -0
  1066. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Arg.php +38 -0
  1067. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Const_.php +37 -0
  1068. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr.php +9 -0
  1069. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php +34 -0
  1070. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php +41 -0
  1071. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php +34 -0
  1072. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php +71 -0
  1073. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php +34 -0
  1074. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php +30 -0
  1075. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php +12 -0
  1076. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php +12 -0
  1077. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php +12 -0
  1078. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php +12 -0
  1079. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php +12 -0
  1080. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php +12 -0
  1081. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php +12 -0
  1082. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php +12 -0
  1083. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php +12 -0
  1084. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php +12 -0
  1085. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php +12 -0
  1086. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php +12 -0
  1087. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php +12 -0
  1088. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php +34 -0
  1089. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php +40 -0
  1090. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php +16 -0
  1091. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php +16 -0
  1092. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php +16 -0
  1093. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php +16 -0
  1094. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php +16 -0
  1095. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php +16 -0
  1096. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php +16 -0
  1097. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php +16 -0
  1098. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php +16 -0
  1099. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php +16 -0
  1100. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php +16 -0
  1101. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php +16 -0
  1102. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php +16 -0
  1103. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php +16 -0
  1104. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php +16 -0
  1105. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php +16 -0
  1106. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php +16 -0
  1107. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php +16 -0
  1108. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php +16 -0
  1109. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php +16 -0
  1110. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php +16 -0
  1111. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php +16 -0
  1112. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php +16 -0
  1113. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php +16 -0
  1114. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php +16 -0
  1115. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php +16 -0
  1116. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php +16 -0
  1117. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php +30 -0
  1118. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php +30 -0
  1119. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php +26 -0
  1120. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php +12 -0
  1121. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php +12 -0
  1122. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php +17 -0
  1123. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php +12 -0
  1124. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php +12 -0
  1125. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php +12 -0
  1126. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php +12 -0
  1127. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php +36 -0
  1128. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php +30 -0
  1129. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php +71 -0
  1130. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php +34 -0
  1131. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php +31 -0
  1132. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php +30 -0
  1133. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php +31 -0
  1134. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php +30 -0
  1135. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php +30 -0
  1136. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php +34 -0
  1137. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php +35 -0
  1138. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php +39 -0
  1139. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php +35 -0
  1140. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php +30 -0
  1141. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php +30 -0
  1142. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php +40 -0
  1143. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php +35 -0
  1144. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php +30 -0
  1145. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php +30 -0
  1146. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php +30 -0
  1147. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php +30 -0
  1148. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php +30 -0
  1149. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php +35 -0
  1150. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php +30 -0
  1151. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php +40 -0
  1152. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php +36 -0
  1153. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php +38 -0
  1154. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php +30 -0
  1155. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php +30 -0
  1156. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php +30 -0
  1157. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php +30 -0
  1158. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php +34 -0
  1159. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php +36 -0
  1160. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Identifier.php +75 -0
  1161. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Name.php +242 -0
  1162. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php +50 -0
  1163. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php +50 -0
  1164. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/NullableType.php +30 -0
  1165. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php +49 -0
  1166. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php +7 -0
  1167. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php +70 -0
  1168. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php +31 -0
  1169. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php +30 -0
  1170. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php +73 -0
  1171. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php +28 -0
  1172. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php +16 -0
  1173. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php +16 -0
  1174. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php +16 -0
  1175. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php +16 -0
  1176. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php +16 -0
  1177. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php +16 -0
  1178. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php +16 -0
  1179. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php +16 -0
  1180. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php +141 -0
  1181. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt.php +9 -0
  1182. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php +30 -0
  1183. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php +34 -0
  1184. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php +41 -0
  1185. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php +62 -0
  1186. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php +87 -0
  1187. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php +151 -0
  1188. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php +105 -0
  1189. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php +30 -0
  1190. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php +30 -0
  1191. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php +34 -0
  1192. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php +34 -0
  1193. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php +34 -0
  1194. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php +30 -0
  1195. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php +34 -0
  1196. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php +30 -0
  1197. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php +33 -0
  1198. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php +30 -0
  1199. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php +43 -0
  1200. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php +47 -0
  1201. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php +69 -0
  1202. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php +30 -0
  1203. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php +31 -0
  1204. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php +39 -0
  1205. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php +30 -0
  1206. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php +43 -0
  1207. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php +30 -0
  1208. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php +35 -0
  1209. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php +31 -0
  1210. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php +38 -0
  1211. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php +17 -0
  1212. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php +78 -0
  1213. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php +34 -0
  1214. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php +30 -0
  1215. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php +37 -0
  1216. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php +30 -0
  1217. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php +34 -0
  1218. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php +30 -0
  1219. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php +34 -0
  1220. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php +13 -0
  1221. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php +38 -0
  1222. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php +34 -0
  1223. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php +30 -0
  1224. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php +38 -0
  1225. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php +30 -0
  1226. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php +52 -0
  1227. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php +47 -0
  1228. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php +34 -0
  1229. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php +17 -0
  1230. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeAbstract.php +181 -0
  1231. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeDumper.php +203 -0
  1232. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeFinder.php +81 -0
  1233. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeTraverser.php +291 -0
  1234. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php +29 -0
  1235. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php +72 -0
  1236. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php +20 -0
  1237. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php +48 -0
  1238. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php +50 -0
  1239. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php +222 -0
  1240. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php +25 -0
  1241. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser.php +18 -0
  1242. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Multiple.php +55 -0
  1243. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Php5.php +2640 -0
  1244. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php +2475 -0
  1245. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Tokens.php +146 -0
  1246. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php +1014 -0
  1247. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ParserFactory.php +44 -0
  1248. data/helpers/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php +999 -0
  1249. data/helpers/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php +1430 -0
  1250. data/helpers/vendor/nikic/php-parser/phpunit.xml.dist +20 -0
  1251. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/ClassTest.php +153 -0
  1252. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/FunctionTest.php +114 -0
  1253. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/InterfaceTest.php +100 -0
  1254. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/MethodTest.php +162 -0
  1255. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/NamespaceTest.php +46 -0
  1256. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/ParamTest.php +166 -0
  1257. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php +147 -0
  1258. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/TraitTest.php +91 -0
  1259. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/TraitUseAdaptationTest.php +106 -0
  1260. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/TraitUseTest.php +52 -0
  1261. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/UseTest.php +36 -0
  1262. data/helpers/vendor/nikic/php-parser/test/PhpParser/BuilderFactoryTest.php +327 -0
  1263. data/helpers/vendor/nikic/php-parser/test/PhpParser/CodeParsingTest.php +119 -0
  1264. data/helpers/vendor/nikic/php-parser/test/PhpParser/CodeTestAbstract.php +26 -0
  1265. data/helpers/vendor/nikic/php-parser/test/PhpParser/CodeTestParser.php +68 -0
  1266. data/helpers/vendor/nikic/php-parser/test/PhpParser/CommentTest.php +74 -0
  1267. data/helpers/vendor/nikic/php-parser/test/PhpParser/ConstExprEvaluatorTest.php +130 -0
  1268. data/helpers/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/CollectingTest.php +23 -0
  1269. data/helpers/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/ThrowingTest.php +15 -0
  1270. data/helpers/vendor/nikic/php-parser/test/PhpParser/ErrorTest.php +104 -0
  1271. data/helpers/vendor/nikic/php-parser/test/PhpParser/Internal/DifferTest.php +65 -0
  1272. data/helpers/vendor/nikic/php-parser/test/PhpParser/JsonDecoderTest.php +43 -0
  1273. data/helpers/vendor/nikic/php-parser/test/PhpParser/Lexer/EmulativeTest.php +258 -0
  1274. data/helpers/vendor/nikic/php-parser/test/PhpParser/LexerTest.php +263 -0
  1275. data/helpers/vendor/nikic/php-parser/test/PhpParser/NameContextTest.php +65 -0
  1276. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/IdentifierTest.php +29 -0
  1277. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/NameTest.php +157 -0
  1278. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php +26 -0
  1279. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/StringTest.php +61 -0
  1280. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php +34 -0
  1281. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassMethodTest.php +123 -0
  1282. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassTest.php +113 -0
  1283. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/InterfaceTest.php +44 -0
  1284. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/PropertyTest.php +44 -0
  1285. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeAbstractTest.php +325 -0
  1286. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeDumperTest.php +106 -0
  1287. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeFinderTest.php +59 -0
  1288. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeTraverserTest.php +348 -0
  1289. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeVisitor/FindingVisitorTest.php +53 -0
  1290. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeVisitor/FirstFindingVisitorTest.php +38 -0
  1291. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeVisitor/NameResolverTest.php +512 -0
  1292. data/helpers/vendor/nikic/php-parser/test/PhpParser/Parser/MultipleTest.php +94 -0
  1293. data/helpers/vendor/nikic/php-parser/test/PhpParser/Parser/Php5Test.php +13 -0
  1294. data/helpers/vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php +13 -0
  1295. data/helpers/vendor/nikic/php-parser/test/PhpParser/ParserFactoryTest.php +36 -0
  1296. data/helpers/vendor/nikic/php-parser/test/PhpParser/ParserTest.php +183 -0
  1297. data/helpers/vendor/nikic/php-parser/test/PhpParser/PrettyPrinterTest.php +307 -0
  1298. data/helpers/vendor/nikic/php-parser/test/bootstrap.php +31 -0
  1299. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/addingPropertyType.test +39 -0
  1300. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/anonClasses.test +28 -0
  1301. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/array_spread.test +29 -0
  1302. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/arrow_function.test +97 -0
  1303. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/basic.test +190 -0
  1304. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/blockConversion.test +29 -0
  1305. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/comments.test +52 -0
  1306. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/emptyListInsertion.test +110 -0
  1307. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/fixup.test +67 -0
  1308. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/inlineHtml.test +54 -0
  1309. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/insertionOfNullable.test +176 -0
  1310. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/listInsertion.test +309 -0
  1311. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/listInsertionIndentation.test +17 -0
  1312. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/listRemoval.test +41 -0
  1313. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/modifierChange.test +33 -0
  1314. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/nopCommentAtEnd.test +11 -0
  1315. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/removalViaNull.test +194 -0
  1316. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/removingPropertyType.test +22 -0
  1317. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/traitAlias.test +19 -0
  1318. data/helpers/vendor/nikic/php-parser/test/code/parser/blockComments.test +36 -0
  1319. data/helpers/vendor/nikic/php-parser/test/code/parser/commentAtEndOfClass.test +38 -0
  1320. data/helpers/vendor/nikic/php-parser/test/code/parser/comments.test +108 -0
  1321. data/helpers/vendor/nikic/php-parser/test/code/parser/errorHandling/eofError.test +36 -0
  1322. data/helpers/vendor/nikic/php-parser/test/code/parser/errorHandling/lexerErrors.test +143 -0
  1323. data/helpers/vendor/nikic/php-parser/test/code/parser/errorHandling/recovery.test +1417 -0
  1324. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arrayDef.test +173 -0
  1325. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arrayDestructuring.test +164 -0
  1326. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arraySpread.test +432 -0
  1327. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arrow_function.test +145 -0
  1328. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/assign.test +381 -0
  1329. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/assignNewByRef.test +43 -0
  1330. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/cast.test +94 -0
  1331. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/clone.test +15 -0
  1332. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/closure.test +176 -0
  1333. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/comparison.test +129 -0
  1334. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/constant_expr.test +694 -0
  1335. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/errorSuppress.test +14 -0
  1336. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/exit.test +46 -0
  1337. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/args.test +109 -0
  1338. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/constFetch.test +43 -0
  1339. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/constantDeref.test +265 -0
  1340. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/funcCall.test +158 -0
  1341. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/newDeref.test +82 -0
  1342. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/objectAccess.test +184 -0
  1343. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/simpleArrayAccess.test +72 -0
  1344. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticCall.test +214 -0
  1345. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test +113 -0
  1346. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test +50 -0
  1347. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/issetAndEmpty.test +88 -0
  1348. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/listReferences.test +92 -0
  1349. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/listWithKeys.test +84 -0
  1350. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/logic.test +190 -0
  1351. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/math.test +313 -0
  1352. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/new.test +187 -0
  1353. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/newWithoutClass.test +25 -0
  1354. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/print.test +14 -0
  1355. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/shellExec.test +56 -0
  1356. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/ternaryAndCoalesce.test +174 -0
  1357. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/trailingCommas.test +140 -0
  1358. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/globalNonSimpleVarError.test +27 -0
  1359. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/indirectCall.test +511 -0
  1360. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/isset.test +87 -0
  1361. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/misc.test +129 -0
  1362. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/new.test +119 -0
  1363. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/staticProperty.test +123 -0
  1364. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/variable.test +67 -0
  1365. data/helpers/vendor/nikic/php-parser/test/code/parser/nopPositions.test +13 -0
  1366. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/constantString.test +86 -0
  1367. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/docString.test +115 -0
  1368. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/docStringNewlines.test +77 -0
  1369. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/encapsedNegVarOffset.test +82 -0
  1370. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/encapsedString.test +344 -0
  1371. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/flexibleDocString.test +361 -0
  1372. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/flexibleDocStringErrors.test +117 -0
  1373. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/float.test +108 -0
  1374. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/int.test +61 -0
  1375. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/invalidOctal.test +26 -0
  1376. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/magicConst.test +47 -0
  1377. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/numberSeparators.test +199 -0
  1378. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/unicodeEscape.test +26 -0
  1379. data/helpers/vendor/nikic/php-parser/test/code/parser/semiReserved.test +490 -0
  1380. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/blocklessStatement.test +130 -0
  1381. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/abstract.test +45 -0
  1382. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/anonymous.test +214 -0
  1383. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/conditional.test +35 -0
  1384. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/constModifierErrors.test +137 -0
  1385. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/constModifiers.test +77 -0
  1386. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/final.test +19 -0
  1387. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/implicitPublic.test +110 -0
  1388. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/interface.test +40 -0
  1389. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/modifier.test +254 -0
  1390. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/name.test +266 -0
  1391. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/php4Style.test +59 -0
  1392. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/propertyTypes.test +70 -0
  1393. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/simple.test +185 -0
  1394. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/staticMethod.test +175 -0
  1395. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/trait.test +188 -0
  1396. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/const.test +48 -0
  1397. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/controlFlow.test +59 -0
  1398. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/declare.test +70 -0
  1399. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/echo.test +32 -0
  1400. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/builtinTypeDeclarations.test +87 -0
  1401. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/byRef.test +49 -0
  1402. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/conditional.test +35 -0
  1403. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/defaultValues.test +173 -0
  1404. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/nullableTypes.test +55 -0
  1405. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/returnTypes.test +64 -0
  1406. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/specialVars.test +57 -0
  1407. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/typeDeclarations.test +63 -0
  1408. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/variadic.test +134 -0
  1409. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/variadicDefaultValue.test +31 -0
  1410. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/generator/basic.test +319 -0
  1411. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/generator/yieldPrecedence.test +253 -0
  1412. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/generator/yieldUnaryPrecedence.test +56 -0
  1413. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompiler.test +61 -0
  1414. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerInvalidSyntax.test +6 -0
  1415. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOffset.test +36 -0
  1416. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOutermostScope.test +8 -0
  1417. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/hashbang.test +26 -0
  1418. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/if.test +103 -0
  1419. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/inlineHTML.test +33 -0
  1420. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/do.test +17 -0
  1421. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/for.test +110 -0
  1422. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/foreach.test +168 -0
  1423. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/while.test +25 -0
  1424. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/multiCatch.test +75 -0
  1425. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/alias.test +178 -0
  1426. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/braced.test +46 -0
  1427. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/commentAfterNamespace.test +22 -0
  1428. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUse.test +188 -0
  1429. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUseErrors.test +113 -0
  1430. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUsePositions.test +28 -0
  1431. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUseTrailingComma.test +47 -0
  1432. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/invalidName.test +87 -0
  1433. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/mix.test +103 -0
  1434. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/name.test +50 -0
  1435. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/nested.test +30 -0
  1436. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/notBraced.test +49 -0
  1437. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/nsAfterHashbang.test +22 -0
  1438. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test +60 -0
  1439. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmtInvalid.test +109 -0
  1440. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/switch.test +81 -0
  1441. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/tryCatch.test +144 -0
  1442. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/tryWithoutCatch.test +29 -0
  1443. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/unset.test +26 -0
  1444. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/comments.test +67 -0
  1445. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/commentsInCommaList.test +53 -0
  1446. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/anonymousClass.test +27 -0
  1447. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arrayDestructuring.test +14 -0
  1448. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arraySpread.test +8 -0
  1449. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arrow_function.test +18 -0
  1450. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/call.test +13 -0
  1451. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/closure.test +18 -0
  1452. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/constant_deref.test +13 -0
  1453. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/docStrings.test +86 -0
  1454. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/include.test +7 -0
  1455. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/intrinsics.test +29 -0
  1456. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/list.test +19 -0
  1457. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/literals.test +158 -0
  1458. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/numbers.test +35 -0
  1459. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/operators.test +151 -0
  1460. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/parentheses.test +86 -0
  1461. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/shortArraySyntax.test +11 -0
  1462. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/stringEscaping.test +23 -0
  1463. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/uvs.test +23 -0
  1464. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/variables.test +73 -0
  1465. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/yield.test +46 -0
  1466. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/inlineHTMLandPHPtest.file-test +58 -0
  1467. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/nestedInlineHTML.test +16 -0
  1468. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/onlyInlineHTML.file-test +19 -0
  1469. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/onlyPHP.file-test +16 -0
  1470. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/alias.test +20 -0
  1471. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/break_continue.test +13 -0
  1472. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/class.test +53 -0
  1473. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/class_const.test +20 -0
  1474. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/const.test +11 -0
  1475. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/declare.test +17 -0
  1476. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/do_while.test +10 -0
  1477. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/for.test +28 -0
  1478. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/foreach.test +28 -0
  1479. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/function_signatures.test +43 -0
  1480. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/global_static_variables.test +11 -0
  1481. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/goto.test +9 -0
  1482. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/groupUse.test +16 -0
  1483. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/haltCompiler.file-test +27 -0
  1484. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/if.test +16 -0
  1485. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/multiCatch.test +19 -0
  1486. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/namespaces.test +50 -0
  1487. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/nullable_types.test +11 -0
  1488. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/properties.test +20 -0
  1489. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/switch.test +37 -0
  1490. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/throw.test +7 -0
  1491. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/traitUse.test +25 -0
  1492. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/tryCatch.test +24 -0
  1493. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/while.test +10 -0
  1494. data/helpers/vendor/nikic/php-parser/test/updateTests.php +32 -0
  1495. data/helpers/vendor/nikic/php-parser/test_old/run-php-src.sh +4 -0
  1496. data/helpers/vendor/nikic/php-parser/test_old/run.php +273 -0
  1497. data/helpers/vendor/ocramius/package-versions/CHANGELOG.md +120 -0
  1498. data/helpers/vendor/ocramius/package-versions/CONTRIBUTING.md +39 -0
  1499. data/helpers/vendor/ocramius/package-versions/LICENSE +19 -0
  1500. data/helpers/vendor/ocramius/package-versions/README.md +60 -0
  1501. data/helpers/vendor/ocramius/package-versions/composer.json +43 -0
  1502. data/helpers/vendor/ocramius/package-versions/composer.lock +2869 -0
  1503. data/helpers/vendor/ocramius/package-versions/infection.json.dist +11 -0
  1504. data/helpers/vendor/ocramius/package-versions/phpcs.xml.dist +21 -0
  1505. data/helpers/vendor/ocramius/package-versions/src/PackageVersions/FallbackVersions.php +88 -0
  1506. data/helpers/vendor/ocramius/package-versions/src/PackageVersions/Installer.php +201 -0
  1507. data/helpers/vendor/ocramius/package-versions/src/PackageVersions/Versions.php +76 -0
  1508. data/helpers/vendor/paragonie/random_compat/LICENSE +22 -0
  1509. data/helpers/vendor/paragonie/random_compat/build-phar.sh +5 -0
  1510. data/helpers/vendor/paragonie/random_compat/composer.json +34 -0
  1511. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
  1512. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
  1513. data/helpers/vendor/paragonie/random_compat/lib/random.php +32 -0
  1514. data/helpers/vendor/paragonie/random_compat/other/build_phar.php +57 -0
  1515. data/helpers/vendor/paragonie/random_compat/psalm-autoload.php +9 -0
  1516. data/helpers/vendor/paragonie/random_compat/psalm.xml +19 -0
  1517. data/helpers/vendor/php-cs-fixer/diff/ChangeLog.md +7 -0
  1518. data/helpers/vendor/php-cs-fixer/diff/LICENSE +5 -0
  1519. data/helpers/vendor/php-cs-fixer/diff/LICENSE_DIFF +31 -0
  1520. data/helpers/vendor/php-cs-fixer/diff/LICENSE_GECKO +19 -0
  1521. data/helpers/vendor/php-cs-fixer/diff/README.md +13 -0
  1522. data/helpers/vendor/php-cs-fixer/diff/composer.json +41 -0
  1523. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/ConfigurationException.php +36 -0
  1524. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/UnifiedDiffOutputBuilder.php +295 -0
  1525. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Chunk.php +103 -0
  1526. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Diff.php +73 -0
  1527. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Differ.php +399 -0
  1528. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/LongestCommonSubsequence.php +27 -0
  1529. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +95 -0
  1530. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php +74 -0
  1531. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Line.php +54 -0
  1532. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Parser.php +110 -0
  1533. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Chunk.php +78 -0
  1534. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Diff.php +67 -0
  1535. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Differ.php +321 -0
  1536. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php +15 -0
  1537. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php +15 -0
  1538. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Line.php +44 -0
  1539. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/LongestCommonSubsequenceCalculator.php +24 -0
  1540. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  1541. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/AbstractChunkOutputBuilder.php +56 -0
  1542. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOnlyOutputBuilder.php +63 -0
  1543. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOutputBuilderInterface.php +19 -0
  1544. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/UnifiedDiffOutputBuilder.php +165 -0
  1545. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Parser.php +106 -0
  1546. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  1547. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Chunk.php +78 -0
  1548. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Diff.php +67 -0
  1549. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Differ.php +329 -0
  1550. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/ConfigurationException.php +40 -0
  1551. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php +15 -0
  1552. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php +15 -0
  1553. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Line.php +44 -0
  1554. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/LongestCommonSubsequenceCalculator.php +24 -0
  1555. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  1556. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/AbstractChunkOutputBuilder.php +56 -0
  1557. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOnlyOutputBuilder.php +66 -0
  1558. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOutputBuilderInterface.php +20 -0
  1559. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/StrictUnifiedDiffOutputBuilder.php +315 -0
  1560. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/UnifiedDiffOutputBuilder.php +259 -0
  1561. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Parser.php +106 -0
  1562. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  1563. data/helpers/vendor/phpstan/phpdoc-parser/build-abnfgen.sh +25 -0
  1564. data/helpers/vendor/phpstan/phpdoc-parser/composer.json +29 -0
  1565. data/helpers/vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-method.peg +41 -0
  1566. data/helpers/vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-param.peg +14 -0
  1567. data/helpers/vendor/phpstan/phpdoc-parser/doc/grammars/type.abnf +243 -0
  1568. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayItemNode.php +31 -0
  1569. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayNode.php +25 -0
  1570. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFalseNode.php +13 -0
  1571. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFloatNode.php +22 -0
  1572. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php +22 -0
  1573. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNode.php +10 -0
  1574. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNullNode.php +13 -0
  1575. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprStringNode.php +22 -0
  1576. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprTrueNode.php +13 -0
  1577. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstFetchNode.php +31 -0
  1578. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Node.php +10 -0
  1579. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/DeprecatedTagValueNode.php +22 -0
  1580. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/GenericTagValueNode.php +22 -0
  1581. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/InvalidTagValueNode.php +26 -0
  1582. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueNode.php +44 -0
  1583. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueParameterNode.php +46 -0
  1584. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamTagValueNode.php +37 -0
  1585. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocChildNode.php +10 -0
  1586. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocNode.php +190 -0
  1587. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagNode.php +26 -0
  1588. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagValueNode.php +10 -0
  1589. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php +22 -0
  1590. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PropertyTagValueNode.php +32 -0
  1591. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ReturnTagValueNode.php +28 -0
  1592. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TemplateTagValueNode.php +32 -0
  1593. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ThrowsTagValueNode.php +28 -0
  1594. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/VarTagValueNode.php +32 -0
  1595. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeItemNode.php +44 -0
  1596. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeNode.php +22 -0
  1597. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayTypeNode.php +22 -0
  1598. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeNode.php +31 -0
  1599. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeParameterNode.php +44 -0
  1600. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/GenericTypeNode.php +26 -0
  1601. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php +22 -0
  1602. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/IntersectionTypeNode.php +22 -0
  1603. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php +22 -0
  1604. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php +13 -0
  1605. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/TypeNode.php +10 -0
  1606. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/UnionTypeNode.php +22 -0
  1607. data/helpers/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php +164 -0
  1608. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php +97 -0
  1609. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/ParserException.php +69 -0
  1610. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php +333 -0
  1611. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/TokenIterator.php +191 -0
  1612. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php +272 -0
  1613. data/helpers/vendor/phpstan/phpstan/.editorconfig +27 -0
  1614. data/helpers/vendor/phpstan/phpstan/.gitattributes +2 -0
  1615. data/helpers/vendor/phpstan/phpstan/.github/FUNDING.yml +4 -0
  1616. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Bug_report.md +18 -0
  1617. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Feature_request.md +8 -0
  1618. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Function_signature_mismatch.md +6 -0
  1619. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Support_question.md +8 -0
  1620. data/helpers/vendor/phpstan/phpstan/.github/mergeable.yml +20 -0
  1621. data/helpers/vendor/phpstan/phpstan/.gitignore +6 -0
  1622. data/helpers/vendor/phpstan/phpstan/.travis.yml +64 -0
  1623. data/helpers/vendor/phpstan/phpstan/BACKERS.md +65 -0
  1624. data/helpers/vendor/phpstan/phpstan/CODE_OF_CONDUCT.md +74 -0
  1625. data/helpers/vendor/phpstan/phpstan/LICENSE +21 -0
  1626. data/helpers/vendor/phpstan/phpstan/README.md +740 -0
  1627. data/helpers/vendor/phpstan/phpstan/appveyor.yml +70 -0
  1628. data/helpers/vendor/phpstan/phpstan/bin/phpstan +57 -0
  1629. data/helpers/vendor/phpstan/phpstan/build.xml +250 -0
  1630. data/helpers/vendor/phpstan/phpstan/composer.json +75 -0
  1631. data/helpers/vendor/phpstan/phpstan/conf/bleedingEdge.neon +13 -0
  1632. data/helpers/vendor/phpstan/phpstan/conf/config.level0.neon +170 -0
  1633. data/helpers/vendor/phpstan/phpstan/conf/config.level1.neon +11 -0
  1634. data/helpers/vendor/phpstan/phpstan/conf/config.level2.neon +45 -0
  1635. data/helpers/vendor/phpstan/phpstan/conf/config.level3.neon +78 -0
  1636. data/helpers/vendor/phpstan/phpstan/conf/config.level4.neon +88 -0
  1637. data/helpers/vendor/phpstan/phpstan/conf/config.level5.neon +6 -0
  1638. data/helpers/vendor/phpstan/phpstan/conf/config.level6.neon +6 -0
  1639. data/helpers/vendor/phpstan/phpstan/conf/config.level7.neon +5 -0
  1640. data/helpers/vendor/phpstan/phpstan/conf/config.levelmax.neon +2 -0
  1641. data/helpers/vendor/phpstan/phpstan/conf/config.neon +759 -0
  1642. data/helpers/vendor/phpstan/phpstan/phpcs.xml +72 -0
  1643. data/helpers/vendor/phpstan/phpstan/phpstan-baseline.neon +85 -0
  1644. data/helpers/vendor/phpstan/phpstan/src/AnalysedCodeException.php +8 -0
  1645. data/helpers/vendor/phpstan/phpstan/src/Analyser/Analyser.php +409 -0
  1646. data/helpers/vendor/phpstan/phpstan/src/Analyser/EnsuredNonNullabilityResult.php +37 -0
  1647. data/helpers/vendor/phpstan/phpstan/src/Analyser/EnsuredNonNullabilityResultExpression.php +33 -0
  1648. data/helpers/vendor/phpstan/phpstan/src/Analyser/Error.php +77 -0
  1649. data/helpers/vendor/phpstan/phpstan/src/Analyser/ExpressionContext.php +69 -0
  1650. data/helpers/vendor/phpstan/phpstan/src/Analyser/ExpressionResult.php +85 -0
  1651. data/helpers/vendor/phpstan/phpstan/src/Analyser/IgnoredError.php +69 -0
  1652. data/helpers/vendor/phpstan/phpstan/src/Analyser/NameScope.php +57 -0
  1653. data/helpers/vendor/phpstan/phpstan/src/Analyser/NodeScopeResolver.php +2533 -0
  1654. data/helpers/vendor/phpstan/phpstan/src/Analyser/OutOfClassScope.php +39 -0
  1655. data/helpers/vendor/phpstan/phpstan/src/Analyser/Scope.php +3210 -0
  1656. data/helpers/vendor/phpstan/phpstan/src/Analyser/ScopeContext.php +103 -0
  1657. data/helpers/vendor/phpstan/phpstan/src/Analyser/ScopeFactory.php +107 -0
  1658. data/helpers/vendor/phpstan/phpstan/src/Analyser/SpecifiedTypes.php +116 -0
  1659. data/helpers/vendor/phpstan/phpstan/src/Analyser/StatementExitPoint.php +32 -0
  1660. data/helpers/vendor/phpstan/phpstan/src/Analyser/StatementResult.php +101 -0
  1661. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifier.php +660 -0
  1662. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifierAwareExtension.php +10 -0
  1663. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifierContext.php +90 -0
  1664. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifierFactory.php +52 -0
  1665. data/helpers/vendor/phpstan/phpstan/src/Analyser/UndefinedVariableException.php +31 -0
  1666. data/helpers/vendor/phpstan/phpstan/src/Analyser/VariableTypeHolder.php +60 -0
  1667. data/helpers/vendor/phpstan/phpstan/src/Broker/AnonymousClassNameHelper.php +45 -0
  1668. data/helpers/vendor/phpstan/phpstan/src/Broker/Broker.php +613 -0
  1669. data/helpers/vendor/phpstan/phpstan/src/Broker/BrokerFactory.php +62 -0
  1670. data/helpers/vendor/phpstan/phpstan/src/Broker/ClassAutoloadingException.php +38 -0
  1671. data/helpers/vendor/phpstan/phpstan/src/Broker/ClassNotFoundException.php +22 -0
  1672. data/helpers/vendor/phpstan/phpstan/src/Broker/FunctionNotFoundException.php +22 -0
  1673. data/helpers/vendor/phpstan/phpstan/src/Cache/Cache.php +35 -0
  1674. data/helpers/vendor/phpstan/phpstan/src/Cache/CacheStorage.php +21 -0
  1675. data/helpers/vendor/phpstan/phpstan/src/Cache/FileCacheStorage.php +51 -0
  1676. data/helpers/vendor/phpstan/phpstan/src/Cache/MemoryCacheStorage.php +31 -0
  1677. data/helpers/vendor/phpstan/phpstan/src/Command/AnalyseApplication.php +161 -0
  1678. data/helpers/vendor/phpstan/phpstan/src/Command/AnalyseCommand.php +141 -0
  1679. data/helpers/vendor/phpstan/phpstan/src/Command/AnalysisResult.php +118 -0
  1680. data/helpers/vendor/phpstan/phpstan/src/Command/CommandHelper.php +407 -0
  1681. data/helpers/vendor/phpstan/phpstan/src/Command/DumpDependenciesCommand.php +99 -0
  1682. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/BaselineNeonErrorFormatter.php +75 -0
  1683. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php +102 -0
  1684. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/ErrorFormatter.php +22 -0
  1685. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/GitlabErrorFormatter.php +67 -0
  1686. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/JsonErrorFormatter.php +59 -0
  1687. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/RawErrorFormatter.php +38 -0
  1688. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/TableErrorFormatter.php +107 -0
  1689. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorsConsoleStyle.php +116 -0
  1690. data/helpers/vendor/phpstan/phpstan/src/Command/InceptionNotSuccessfulException.php +8 -0
  1691. data/helpers/vendor/phpstan/phpstan/src/Command/InceptionResult.php +111 -0
  1692. data/helpers/vendor/phpstan/phpstan/src/Dependency/DependencyDumper.php +143 -0
  1693. data/helpers/vendor/phpstan/phpstan/src/Dependency/DependencyResolver.php +256 -0
  1694. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/ConditionalTagsExtension.php +55 -0
  1695. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/Configurator.php +33 -0
  1696. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/Container.php +32 -0
  1697. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/ContainerFactory.php +102 -0
  1698. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/LoaderFactory.php +38 -0
  1699. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/Nette/NetteContainer.php +65 -0
  1700. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/ParametersSchemaExtension.php +94 -0
  1701. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/RulesExtension.php +30 -0
  1702. data/helpers/vendor/phpstan/phpstan/src/File/FileExcluder.php +69 -0
  1703. data/helpers/vendor/phpstan/phpstan/src/File/FileFinder.php +65 -0
  1704. data/helpers/vendor/phpstan/phpstan/src/File/FileFinderResult.php +37 -0
  1705. data/helpers/vendor/phpstan/phpstan/src/File/FileHelper.php +77 -0
  1706. data/helpers/vendor/phpstan/phpstan/src/File/FuzzyRelativePathHelper.php +105 -0
  1707. data/helpers/vendor/phpstan/phpstan/src/File/PathNotFoundException.php +22 -0
  1708. data/helpers/vendor/phpstan/phpstan/src/File/RelativePathHelper.php +10 -0
  1709. data/helpers/vendor/phpstan/phpstan/src/File/SimpleRelativePathHelper.php +25 -0
  1710. data/helpers/vendor/phpstan/phpstan/src/Internal/ContainerDynamicReturnTypeExtension.php +52 -0
  1711. data/helpers/vendor/phpstan/phpstan/src/Internal/ScopeIsInClassTypeSpecifyingExtension.php +85 -0
  1712. data/helpers/vendor/phpstan/phpstan/src/Internal/UnionTypeGetInternalDynamicReturnTypeExtension.php +40 -0
  1713. data/helpers/vendor/phpstan/phpstan/src/Node/ClosureReturnStatementsNode.php +66 -0
  1714. data/helpers/vendor/phpstan/phpstan/src/Node/ExecutionEndNode.php +58 -0
  1715. data/helpers/vendor/phpstan/phpstan/src/Node/FileNode.php +41 -0
  1716. data/helpers/vendor/phpstan/phpstan/src/Node/FunctionReturnStatementsNode.php +57 -0
  1717. data/helpers/vendor/phpstan/phpstan/src/Node/InArrowFunctionNode.php +35 -0
  1718. data/helpers/vendor/phpstan/phpstan/src/Node/InClassMethodNode.php +32 -0
  1719. data/helpers/vendor/phpstan/phpstan/src/Node/LiteralArrayItem.php +33 -0
  1720. data/helpers/vendor/phpstan/phpstan/src/Node/LiteralArrayNode.php +42 -0
  1721. data/helpers/vendor/phpstan/phpstan/src/Node/MethodReturnStatementsNode.php +57 -0
  1722. data/helpers/vendor/phpstan/phpstan/src/Node/ReturnStatement.php +33 -0
  1723. data/helpers/vendor/phpstan/phpstan/src/Node/UnreachableStatementNode.php +34 -0
  1724. data/helpers/vendor/phpstan/phpstan/src/Node/VirtualNode.php +10 -0
  1725. data/helpers/vendor/phpstan/phpstan/src/Parser/CachedParser.php +120 -0
  1726. data/helpers/vendor/phpstan/phpstan/src/Parser/DirectParser.php +53 -0
  1727. data/helpers/vendor/phpstan/phpstan/src/Parser/FunctionCallStatementFinder.php +45 -0
  1728. data/helpers/vendor/phpstan/phpstan/src/Parser/Parser.php +20 -0
  1729. data/helpers/vendor/phpstan/phpstan/src/Parser/ParserErrorsException.php +32 -0
  1730. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/PhpDocBlock.php +270 -0
  1731. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/PhpDocNodeResolver.php +248 -0
  1732. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/PhpDocStringResolver.php +38 -0
  1733. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/ResolvedPhpDocBlock.php +206 -0
  1734. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/DeprecatedTag.php +32 -0
  1735. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/MethodTag.php +66 -0
  1736. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/MethodTagParameter.php +70 -0
  1737. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/ParamTag.php +44 -0
  1738. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/PropertyTag.php +58 -0
  1739. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/ReturnTag.php +34 -0
  1740. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/ThrowsTag.php +34 -0
  1741. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/VarTag.php +34 -0
  1742. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolver.php +415 -0
  1743. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolverAwareExtension.php +10 -0
  1744. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtension.php +16 -0
  1745. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolverFactory.php +27 -0
  1746. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeStringResolver.php +39 -0
  1747. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationMethodReflection.php +107 -0
  1748. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationPropertyReflection.php +72 -0
  1749. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodParameterReflection.php +61 -0
  1750. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php +113 -0
  1751. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php +86 -0
  1752. data/helpers/vendor/phpstan/phpstan/src/Reflection/BrokerAwareClassReflectionExtension.php +11 -0
  1753. data/helpers/vendor/phpstan/phpstan/src/Reflection/BrokerAwareExtension.php +12 -0
  1754. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassConstantReflection.php +90 -0
  1755. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassMemberAccessAnswerer.php +18 -0
  1756. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassMemberReflection.php +16 -0
  1757. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassReflection.php +507 -0
  1758. data/helpers/vendor/phpstan/phpstan/src/Reflection/ConstantReflection.php +15 -0
  1759. data/helpers/vendor/phpstan/phpstan/src/Reflection/DeprecatableReflection.php +10 -0
  1760. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyConstantReflection.php +56 -0
  1761. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyConstructorReflection.php +63 -0
  1762. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyMethodReflection.php +64 -0
  1763. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyPropertyReflection.php +51 -0
  1764. data/helpers/vendor/phpstan/phpstan/src/Reflection/ExtendedPropertyReflection.php +14 -0
  1765. data/helpers/vendor/phpstan/phpstan/src/Reflection/FinalizableReflection.php +10 -0
  1766. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionReflection.php +15 -0
  1767. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionReflectionFactory.php +35 -0
  1768. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionVariant.php +53 -0
  1769. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionVariantWithPhpDocs.php +61 -0
  1770. data/helpers/vendor/phpstan/phpstan/src/Reflection/InaccessibleMethod.php +42 -0
  1771. data/helpers/vendor/phpstan/phpstan/src/Reflection/InternableReflection.php +10 -0
  1772. data/helpers/vendor/phpstan/phpstan/src/Reflection/MethodPrototypeReflection.php +63 -0
  1773. data/helpers/vendor/phpstan/phpstan/src/Reflection/MethodReflection.php +17 -0
  1774. data/helpers/vendor/phpstan/phpstan/src/Reflection/MethodsClassReflectionExtension.php +12 -0
  1775. data/helpers/vendor/phpstan/phpstan/src/Reflection/MissingConstantFromReflectionException.php +26 -0
  1776. data/helpers/vendor/phpstan/phpstan/src/Reflection/MissingMethodFromReflectionException.php +26 -0
  1777. data/helpers/vendor/phpstan/phpstan/src/Reflection/MissingPropertyFromReflectionException.php +26 -0
  1778. data/helpers/vendor/phpstan/phpstan/src/Reflection/Native/NativeFunctionReflection.php +73 -0
  1779. data/helpers/vendor/phpstan/phpstan/src/Reflection/Native/NativeMethodReflection.php +120 -0
  1780. data/helpers/vendor/phpstan/phpstan/src/Reflection/Native/NativeParameterReflection.php +89 -0
  1781. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParameterReflection.php +20 -0
  1782. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParameterReflectionWithPhpDocs.php +14 -0
  1783. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParametersAcceptor.php +25 -0
  1784. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParametersAcceptorSelector.php +247 -0
  1785. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParametersAcceptorWithPhpDocs.php +19 -0
  1786. data/helpers/vendor/phpstan/phpstan/src/Reflection/PassedByReference.php +87 -0
  1787. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/BuiltinMethodReflection.php +57 -0
  1788. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/DummyParameter.php +63 -0
  1789. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/FakeBuiltinMethodReflection.php +123 -0
  1790. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/NativeBuiltinMethodReflection.php +116 -0
  1791. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpClassReflectionExtension.php +714 -0
  1792. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpFunctionFromParserNodeReflection.php +214 -0
  1793. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpFunctionReflection.php +268 -0
  1794. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpMethodFromParserNodeReflection.php +128 -0
  1795. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpMethodReflection.php +439 -0
  1796. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpMethodReflectionFactory.php +38 -0
  1797. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpParameterFromParserNodeReflection.php +106 -0
  1798. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpParameterReflection.php +95 -0
  1799. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpPropertyReflection.php +168 -0
  1800. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/SimpleXMLElementProperty.php +83 -0
  1801. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/UniversalObjectCrateProperty.php +61 -0
  1802. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php +81 -0
  1803. data/helpers/vendor/phpstan/phpstan/src/Reflection/PhpDefect/PhpDefectClassReflectionExtension.php +241 -0
  1804. data/helpers/vendor/phpstan/phpstan/src/Reflection/PhpDefect/PhpDefectPropertyReflection.php +62 -0
  1805. data/helpers/vendor/phpstan/phpstan/src/Reflection/PropertiesClassReflectionExtension.php +12 -0
  1806. data/helpers/vendor/phpstan/phpstan/src/Reflection/PropertyReflection.php +16 -0
  1807. data/helpers/vendor/phpstan/phpstan/src/Reflection/ReflectionWithFilename.php +13 -0
  1808. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/FunctionSignature.php +53 -0
  1809. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/ParameterSignature.php +66 -0
  1810. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapParser.php +127 -0
  1811. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProvider.php +82 -0
  1812. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/functionMap.php +13797 -0
  1813. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/functionMap_php74delta.php +53 -0
  1814. data/helpers/vendor/phpstan/phpstan/src/Reflection/ThrowableReflection.php +12 -0
  1815. data/helpers/vendor/phpstan/phpstan/src/Reflection/TrivialParametersAcceptor.php +29 -0
  1816. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/AllowedArrayKeysTypes.php +27 -0
  1817. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/AppendedArrayItemTypeRule.php +93 -0
  1818. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/AppendedArrayKeyTypeRule.php +94 -0
  1819. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/DeadForeachRule.php +38 -0
  1820. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php +85 -0
  1821. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php +57 -0
  1822. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayItemRule.php +51 -0
  1823. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/IterableInForeachRule.php +61 -0
  1824. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php +140 -0
  1825. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignOpRule.php +95 -0
  1826. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignmentRule.php +89 -0
  1827. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php +33 -0
  1828. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/EchoRule.php +63 -0
  1829. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/InvalidCastRule.php +100 -0
  1830. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php +76 -0
  1831. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/PrintRule.php +57 -0
  1832. data/helpers/vendor/phpstan/phpstan/src/Rules/ClassCaseSensitivityCheck.php +62 -0
  1833. data/helpers/vendor/phpstan/phpstan/src/Rules/ClassNameNodePair.php +32 -0
  1834. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ClassConstantDeclarationRule.php +36 -0
  1835. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ClassConstantRule.php +165 -0
  1836. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassInClassExtendsRule.php +40 -0
  1837. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassInInstanceOfRule.php +82 -0
  1838. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassInTraitUseRule.php +41 -0
  1839. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassesInClassImplementsRule.php +41 -0
  1840. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php +41 -0
  1841. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ImpossibleInstanceOfRule.php +69 -0
  1842. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/InstantiationRule.php +219 -0
  1843. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/NewStaticRule.php +68 -0
  1844. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/RequireParentConstructCallRule.php +147 -0
  1845. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/UnusedConstructorParametersRule.php +65 -0
  1846. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/BooleanAndConstantConditionRule.php +70 -0
  1847. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/BooleanNotConstantConditionRule.php +50 -0
  1848. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/BooleanOrConstantConditionRule.php +70 -0
  1849. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ConstantConditionRuleHelper.php +70 -0
  1850. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ElseIfConstantConditionRule.php +50 -0
  1851. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/IfConstantConditionRule.php +50 -0
  1852. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php +68 -0
  1853. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeHelper.php +245 -0
  1854. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php +84 -0
  1855. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php +99 -0
  1856. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php +85 -0
  1857. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php +48 -0
  1858. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/UnreachableIfBranchesRule.php +57 -0
  1859. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php +52 -0
  1860. data/helpers/vendor/phpstan/phpstan/src/Rules/Constants/ConstantRule.php +35 -0
  1861. data/helpers/vendor/phpstan/phpstan/src/Rules/DeadCode/NoopRule.php +65 -0
  1862. data/helpers/vendor/phpstan/phpstan/src/Rules/DeadCode/UnreachableStatementRule.php +34 -0
  1863. data/helpers/vendor/phpstan/phpstan/src/Rules/Exceptions/CaughtExceptionExistenceRule.php +75 -0
  1864. data/helpers/vendor/phpstan/phpstan/src/Rules/Exceptions/DeadCatchRule.php +56 -0
  1865. data/helpers/vendor/phpstan/phpstan/src/Rules/FileRuleError.php +10 -0
  1866. data/helpers/vendor/phpstan/phpstan/src/Rules/FoundTypeResult.php +56 -0
  1867. data/helpers/vendor/phpstan/phpstan/src/Rules/FunctionCallParametersCheck.php +192 -0
  1868. data/helpers/vendor/phpstan/phpstan/src/Rules/FunctionDefinitionCheck.php +323 -0
  1869. data/helpers/vendor/phpstan/phpstan/src/Rules/FunctionReturnTypeCheck.php +88 -0
  1870. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ArrowFunctionReturnTypeRule.php +53 -0
  1871. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/CallCallablesRule.php +131 -0
  1872. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/CallToFunctionParametersRule.php +71 -0
  1873. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/CallToNonExistentFunctionRule.php +65 -0
  1874. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ClosureReturnTypeRule.php +53 -0
  1875. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php +41 -0
  1876. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php +42 -0
  1877. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ExistingClassesInTypehintsRule.php +47 -0
  1878. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php +83 -0
  1879. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/InnerFunctionRule.php +33 -0
  1880. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/NonExistentDefinedFunctionRule.php +51 -0
  1881. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/PrintfParametersRule.php +128 -0
  1882. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ReturnTypeRule.php +77 -0
  1883. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/UnusedClosureUsesRule.php +49 -0
  1884. data/helpers/vendor/phpstan/phpstan/src/Rules/Generators/YieldFromTypeRule.php +94 -0
  1885. data/helpers/vendor/phpstan/phpstan/src/Rules/Generators/YieldInGeneratorRule.php +75 -0
  1886. data/helpers/vendor/phpstan/phpstan/src/Rules/Generators/YieldTypeRule.php +85 -0
  1887. data/helpers/vendor/phpstan/phpstan/src/Rules/LineRuleError.php +10 -0
  1888. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/CallMethodsRule.php +171 -0
  1889. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/CallStaticMethodsRule.php +279 -0
  1890. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/ExistingClassesInTypehintsRule.php +59 -0
  1891. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php +70 -0
  1892. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/MethodSignatureRule.php +188 -0
  1893. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/ReturnTypeRule.php +76 -0
  1894. data/helpers/vendor/phpstan/phpstan/src/Rules/Missing/MissingClosureNativeReturnTypehintRule.php +141 -0
  1895. data/helpers/vendor/phpstan/phpstan/src/Rules/Missing/MissingReturnRule.php +96 -0
  1896. data/helpers/vendor/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php +129 -0
  1897. data/helpers/vendor/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInUseRule.php +130 -0
  1898. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidBinaryOperationRule.php +119 -0
  1899. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidComparisonOperationRule.php +114 -0
  1900. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidIncDecOperationRule.php +77 -0
  1901. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidUnaryOperationRule.php +44 -0
  1902. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php +161 -0
  1903. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php +76 -0
  1904. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php +76 -0
  1905. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php +126 -0
  1906. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php +67 -0
  1907. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php +283 -0
  1908. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessPropertiesInAssignRule.php +39 -0
  1909. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessPropertiesRule.php +141 -0
  1910. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php +39 -0
  1911. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesRule.php +203 -0
  1912. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php +70 -0
  1913. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/ExistingClassesInPropertiesRule.php +102 -0
  1914. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/PropertyDescriptor.php +26 -0
  1915. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/PropertyReflectionFinder.php +49 -0
  1916. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php +90 -0
  1917. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/TypesAssignedToPropertiesRule.php +94 -0
  1918. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php +96 -0
  1919. data/helpers/vendor/phpstan/phpstan/src/Rules/Regexp/RegularExpressionPatternRule.php +126 -0
  1920. data/helpers/vendor/phpstan/phpstan/src/Rules/Registry.php +46 -0
  1921. data/helpers/vendor/phpstan/phpstan/src/Rules/RegistryFactory.php +27 -0
  1922. data/helpers/vendor/phpstan/phpstan/src/Rules/Rule.php +23 -0
  1923. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleError.php +10 -0
  1924. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrorBuilder.php +63 -0
  1925. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessage.php +23 -0
  1926. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessageAndFile.php +32 -0
  1927. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessageAndLine.php +32 -0
  1928. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessageAndLineAndFile.php +42 -0
  1929. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleLevelHelper.php +208 -0
  1930. data/helpers/vendor/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php +70 -0
  1931. data/helpers/vendor/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php +77 -0
  1932. data/helpers/vendor/phpstan/phpstan/src/Rules/TooWideTypehints/TooWidePrivateMethodReturnTypehintRule.php +80 -0
  1933. data/helpers/vendor/phpstan/phpstan/src/Rules/UnusedFunctionParametersCheck.php +87 -0
  1934. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/DefinedVariableInAnonymousFunctionUseRule.php +54 -0
  1935. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/DefinedVariableRule.php +73 -0
  1936. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/ThisVariableRule.php +57 -0
  1937. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/ThrowTypeRule.php +63 -0
  1938. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/VariableCertaintyInIssetRule.php +66 -0
  1939. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/VariableCloningRule.php +68 -0
  1940. data/helpers/vendor/phpstan/phpstan/src/ShouldNotHappenException.php +13 -0
  1941. data/helpers/vendor/phpstan/phpstan/src/Testing/LevelsTestCase.php +134 -0
  1942. data/helpers/vendor/phpstan/phpstan/src/Testing/RuleTestCase.php +154 -0
  1943. data/helpers/vendor/phpstan/phpstan/src/Testing/TestCase.php +375 -0
  1944. data/helpers/vendor/phpstan/phpstan/src/TrinaryLogic.php +148 -0
  1945. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/AccessoryType.php +10 -0
  1946. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/HasMethodType.php +122 -0
  1947. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/HasOffsetType.php +157 -0
  1948. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/HasPropertyType.php +107 -0
  1949. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/NonEmptyArrayType.php +161 -0
  1950. data/helpers/vendor/phpstan/phpstan/src/Type/ArrayType.php +349 -0
  1951. data/helpers/vendor/phpstan/phpstan/src/Type/BenevolentUnionType.php +45 -0
  1952. data/helpers/vendor/phpstan/phpstan/src/Type/BooleanType.php +98 -0
  1953. data/helpers/vendor/phpstan/phpstan/src/Type/CallableType.php +279 -0
  1954. data/helpers/vendor/phpstan/phpstan/src/Type/CallableTypeHelper.php +59 -0
  1955. data/helpers/vendor/phpstan/phpstan/src/Type/ClosureType.php +319 -0
  1956. data/helpers/vendor/phpstan/phpstan/src/Type/CommentHelper.php +20 -0
  1957. data/helpers/vendor/phpstan/phpstan/src/Type/CompoundType.php +14 -0
  1958. data/helpers/vendor/phpstan/phpstan/src/Type/CompoundTypeHelper.php +15 -0
  1959. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantArrayType.php +583 -0
  1960. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantArrayTypeAndMethod.php +76 -0
  1961. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantArrayTypeBuilder.php +111 -0
  1962. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantBooleanType.php +68 -0
  1963. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantFloatType.php +93 -0
  1964. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantIntegerType.php +61 -0
  1965. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantScalarToBooleanTrait.php +15 -0
  1966. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantStringType.php +224 -0
  1967. data/helpers/vendor/phpstan/phpstan/src/Type/ConstantScalarType.php +13 -0
  1968. data/helpers/vendor/phpstan/phpstan/src/Type/ConstantType.php +10 -0
  1969. data/helpers/vendor/phpstan/phpstan/src/Type/DynamicFunctionReturnTypeExtension.php +16 -0
  1970. data/helpers/vendor/phpstan/phpstan/src/Type/DynamicMethodReturnTypeExtension.php +18 -0
  1971. data/helpers/vendor/phpstan/phpstan/src/Type/DynamicStaticMethodReturnTypeExtension.php +18 -0
  1972. data/helpers/vendor/phpstan/phpstan/src/Type/ErrorType.php +32 -0
  1973. data/helpers/vendor/phpstan/phpstan/src/Type/FileTypeMapper.php +320 -0
  1974. data/helpers/vendor/phpstan/phpstan/src/Type/FloatType.php +138 -0
  1975. data/helpers/vendor/phpstan/phpstan/src/Type/FunctionTypeSpecifyingExtension.php +18 -0
  1976. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateMixedType.php +192 -0
  1977. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateObjectType.php +198 -0
  1978. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateType.php +21 -0
  1979. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeArgumentStrategy.php +34 -0
  1980. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeFactory.php +28 -0
  1981. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeHelper.php +46 -0
  1982. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeMap.php +66 -0
  1983. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeParameterStrategy.php +38 -0
  1984. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeScope.php +37 -0
  1985. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeStrategy.php +15 -0
  1986. data/helpers/vendor/phpstan/phpstan/src/Type/IntegerType.php +87 -0
  1987. data/helpers/vendor/phpstan/phpstan/src/Type/IntersectionType.php +441 -0
  1988. data/helpers/vendor/phpstan/phpstan/src/Type/IterableType.php +221 -0
  1989. data/helpers/vendor/phpstan/phpstan/src/Type/JustNullableTypeTrait.php +59 -0
  1990. data/helpers/vendor/phpstan/phpstan/src/Type/MethodTypeSpecifyingExtension.php +20 -0
  1991. data/helpers/vendor/phpstan/phpstan/src/Type/MixedType.php +300 -0
  1992. data/helpers/vendor/phpstan/phpstan/src/Type/NeverType.php +223 -0
  1993. data/helpers/vendor/phpstan/phpstan/src/Type/NonexistentParentClassType.php +115 -0
  1994. data/helpers/vendor/phpstan/phpstan/src/Type/NullType.php +146 -0
  1995. data/helpers/vendor/phpstan/phpstan/src/Type/ObjectType.php +730 -0
  1996. data/helpers/vendor/phpstan/phpstan/src/Type/ObjectWithoutClassType.php +164 -0
  1997. data/helpers/vendor/phpstan/phpstan/src/Type/OperatorTypeSpecifyingExtension.php +12 -0
  1998. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php +67 -0
  1999. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php +72 -0
  2000. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php +48 -0
  2001. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayFilterFunctionReturnTypeReturnTypeExtension.php +124 -0
  2002. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php +41 -0
  2003. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php +65 -0
  2004. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php +58 -0
  2005. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php +58 -0
  2006. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php +45 -0
  2007. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php +69 -0
  2008. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php +52 -0
  2009. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php +72 -0
  2010. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php +58 -0
  2011. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php +67 -0
  2012. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php +165 -0
  2013. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php +58 -0
  2014. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php +81 -0
  2015. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php +43 -0
  2016. data/helpers/vendor/phpstan/phpstan/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php +36 -0
  2017. data/helpers/vendor/phpstan/phpstan/src/Type/Php/CountFunctionReturnTypeExtension.php +51 -0
  2018. data/helpers/vendor/phpstan/phpstan/src/Type/Php/CountFunctionTypeSpecifyingExtension.php +53 -0
  2019. data/helpers/vendor/phpstan/phpstan/src/Type/Php/CurlInitReturnTypeExtension.php +37 -0
  2020. data/helpers/vendor/phpstan/phpstan/src/Type/Php/DefineConstantTypeSpecifyingExtension.php +61 -0
  2021. data/helpers/vendor/phpstan/phpstan/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php +62 -0
  2022. data/helpers/vendor/phpstan/phpstan/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php +49 -0
  2023. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php +52 -0
  2024. data/helpers/vendor/phpstan/phpstan/src/Type/Php/FilterVarDynamicReturnTypeExtension.php +80 -0
  2025. data/helpers/vendor/phpstan/phpstan/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php +104 -0
  2026. data/helpers/vendor/phpstan/phpstan/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php +63 -0
  2027. data/helpers/vendor/phpstan/phpstan/src/Type/Php/HrtimeFunctionReturnTypeExtension.php +47 -0
  2028. data/helpers/vendor/phpstan/phpstan/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php +57 -0
  2029. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php +81 -0
  2030. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php +43 -0
  2031. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsBoolFunctionTypeSpecifyingExtension.php +42 -0
  2032. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php +69 -0
  2033. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsCountableFunctionTypeSpecifyingExtension.php +52 -0
  2034. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsFloatFunctionTypeSpecifyingExtension.php +46 -0
  2035. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsIntFunctionTypeSpecifyingExtension.php +46 -0
  2036. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php +43 -0
  2037. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsNullFunctionTypeSpecifyingExtension.php +42 -0
  2038. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsNumericFunctionTypeSpecifyingExtension.php +54 -0
  2039. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsObjectFunctionTypeSpecifyingExtension.php +42 -0
  2040. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsResourceFunctionTypeSpecifyingExtension.php +42 -0
  2041. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsScalarFunctionTypeSpecifyingExtension.php +51 -0
  2042. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsStringFunctionTypeSpecifyingExtension.php +42 -0
  2043. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php +85 -0
  2044. data/helpers/vendor/phpstan/phpstan/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php +62 -0
  2045. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MbFunctionsReturnTypeExtension.php +87 -0
  2046. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MethodExistsTypeSpecifyingExtension.php +62 -0
  2047. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php +48 -0
  2048. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MinMaxFunctionReturnTypeExtension.php +183 -0
  2049. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php +137 -0
  2050. data/helpers/vendor/phpstan/phpstan/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php +54 -0
  2051. data/helpers/vendor/phpstan/phpstan/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php +62 -0
  2052. data/helpers/vendor/phpstan/phpstan/src/Type/Php/RangeFunctionReturnTypeExtension.php +106 -0
  2053. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php +86 -0
  2054. data/helpers/vendor/phpstan/phpstan/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php +25 -0
  2055. data/helpers/vendor/phpstan/phpstan/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php +47 -0
  2056. data/helpers/vendor/phpstan/phpstan/src/Type/Php/StatDynamicReturnTypeExtension.php +76 -0
  2057. data/helpers/vendor/phpstan/phpstan/src/Type/Php/StrSplitFunctionReturnTypeExtension.php +84 -0
  2058. data/helpers/vendor/phpstan/phpstan/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php +45 -0
  2059. data/helpers/vendor/phpstan/phpstan/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php +93 -0
  2060. data/helpers/vendor/phpstan/phpstan/src/Type/Php/VarExportFunctionDynamicReturnTypeExtension.php +58 -0
  2061. data/helpers/vendor/phpstan/phpstan/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php +82 -0
  2062. data/helpers/vendor/phpstan/phpstan/src/Type/RecursionGuard.php +26 -0
  2063. data/helpers/vendor/phpstan/phpstan/src/Type/ResourceType.php +87 -0
  2064. data/helpers/vendor/phpstan/phpstan/src/Type/StaticMethodTypeSpecifyingExtension.php +20 -0
  2065. data/helpers/vendor/phpstan/phpstan/src/Type/StaticResolvableType.php +12 -0
  2066. data/helpers/vendor/phpstan/phpstan/src/Type/StaticType.php +255 -0
  2067. data/helpers/vendor/phpstan/phpstan/src/Type/StringAlwaysAcceptingObjectWithToStringType.php +28 -0
  2068. data/helpers/vendor/phpstan/phpstan/src/Type/StringType.php +130 -0
  2069. data/helpers/vendor/phpstan/phpstan/src/Type/SubtractableType.php +16 -0
  2070. data/helpers/vendor/phpstan/phpstan/src/Type/ThisType.php +27 -0
  2071. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/ConstantScalarTypeTrait.php +53 -0
  2072. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/FalseyBooleanTypeTrait.php +16 -0
  2073. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeCallableTypeTrait.php +26 -0
  2074. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeIterableTypeTrait.php +32 -0
  2075. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeObjectTypeTrait.php +67 -0
  2076. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeOffsetAccessibleTypeTrait.php +32 -0
  2077. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonCallableTypeTrait.php +21 -0
  2078. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonGenericTypeTrait.php +16 -0
  2079. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonIterableTypeTrait.php +32 -0
  2080. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonObjectTypeTrait.php +64 -0
  2081. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonOffsetAccessibleTypeTrait.php +32 -0
  2082. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/ObjectTypeTrait.php +107 -0
  2083. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/TruthyBooleanTypeTrait.php +16 -0
  2084. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/UndecidedBooleanTypeTrait.php +15 -0
  2085. data/helpers/vendor/phpstan/phpstan/src/Type/Type.php +110 -0
  2086. data/helpers/vendor/phpstan/phpstan/src/Type/TypeCombinator.php +593 -0
  2087. data/helpers/vendor/phpstan/phpstan/src/Type/TypeTraverser.php +47 -0
  2088. data/helpers/vendor/phpstan/phpstan/src/Type/TypeUtils.php +262 -0
  2089. data/helpers/vendor/phpstan/phpstan/src/Type/TypeWithClassName.php +10 -0
  2090. data/helpers/vendor/phpstan/phpstan/src/Type/TypehintHelper.php +122 -0
  2091. data/helpers/vendor/phpstan/phpstan/src/Type/UnionType.php +622 -0
  2092. data/helpers/vendor/phpstan/phpstan/src/Type/UnionTypeHelper.php +123 -0
  2093. data/helpers/vendor/phpstan/phpstan/src/Type/VerbosityLevel.php +67 -0
  2094. data/helpers/vendor/phpstan/phpstan/src/Type/VoidType.php +103 -0
  2095. data/helpers/vendor/phpstan/phpstan/tmp/.gitignore +4 -0
  2096. data/helpers/vendor/phpstan/phpstan/tmp/cache/.gitignore +2 -0
  2097. data/helpers/vendor/phpstan/phpstan/tmp/generated/.gitignore +2 -0
  2098. data/helpers/vendor/psr/log/.gitignore +1 -0
  2099. data/helpers/vendor/psr/log/LICENSE +19 -0
  2100. data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
  2101. data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
  2102. data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
  2103. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
  2104. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
  2105. data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +123 -0
  2106. data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +140 -0
  2107. data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +28 -0
  2108. data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +144 -0
  2109. data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +146 -0
  2110. data/helpers/vendor/psr/log/README.md +52 -0
  2111. data/helpers/vendor/psr/log/composer.json +26 -0
  2112. data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
  2113. data/helpers/vendor/seld/jsonlint/.travis.yml +25 -0
  2114. data/helpers/vendor/seld/jsonlint/CHANGELOG.md +66 -0
  2115. data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
  2116. data/helpers/vendor/seld/jsonlint/README.md +89 -0
  2117. data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
  2118. data/helpers/vendor/seld/jsonlint/composer.json +24 -0
  2119. data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
  2120. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
  2121. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
  2122. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +217 -0
  2123. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
  2124. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
  2125. data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +230 -0
  2126. data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
  2127. data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
  2128. data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
  2129. data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
  2130. data/helpers/vendor/seld/phar-utils/README.md +39 -0
  2131. data/helpers/vendor/seld/phar-utils/composer.json +26 -0
  2132. data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
  2133. data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
  2134. data/helpers/vendor/symfony/console/.gitignore +3 -0
  2135. data/helpers/vendor/symfony/console/Application.php +1266 -0
  2136. data/helpers/vendor/symfony/console/CHANGELOG.md +112 -0
  2137. data/helpers/vendor/symfony/console/Command/Command.php +668 -0
  2138. data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
  2139. data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
  2140. data/helpers/vendor/symfony/console/Command/LockableTrait.php +72 -0
  2141. data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +46 -0
  2142. data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +64 -0
  2143. data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
  2144. data/helpers/vendor/symfony/console/ConsoleEvents.php +60 -0
  2145. data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +106 -0
  2146. data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +151 -0
  2147. data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
  2148. data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +29 -0
  2149. data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
  2150. data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
  2151. data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
  2152. data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +248 -0
  2153. data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
  2154. data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +83 -0
  2155. data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
  2156. data/helpers/vendor/symfony/console/Event/ConsoleExceptionEvent.php +71 -0
  2157. data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +58 -0
  2158. data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +95 -0
  2159. data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  2160. data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  2161. data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  2162. data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  2163. data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
  2164. data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  2165. data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +243 -0
  2166. data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
  2167. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +183 -0
  2168. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
  2169. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +109 -0
  2170. data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
  2171. data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
  2172. data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +106 -0
  2173. data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
  2174. data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
  2175. data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
  2176. data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
  2177. data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +141 -0
  2178. data/helpers/vendor/symfony/console/Helper/ProgressBar.php +614 -0
  2179. data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +270 -0
  2180. data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +499 -0
  2181. data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +124 -0
  2182. data/helpers/vendor/symfony/console/Helper/Table.php +698 -0
  2183. data/helpers/vendor/symfony/console/Helper/TableCell.php +75 -0
  2184. data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  2185. data/helpers/vendor/symfony/console/Helper/TableStyle.php +258 -0
  2186. data/helpers/vendor/symfony/console/Input/ArgvInput.php +372 -0
  2187. data/helpers/vendor/symfony/console/Input/ArrayInput.php +208 -0
  2188. data/helpers/vendor/symfony/console/Input/Input.php +203 -0
  2189. data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
  2190. data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  2191. data/helpers/vendor/symfony/console/Input/InputDefinition.php +404 -0
  2192. data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
  2193. data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
  2194. data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  2195. data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
  2196. data/helpers/vendor/symfony/console/LICENSE +19 -0
  2197. data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +128 -0
  2198. data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
  2199. data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +152 -0
  2200. data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
  2201. data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
  2202. data/helpers/vendor/symfony/console/Output/Output.php +175 -0
  2203. data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
  2204. data/helpers/vendor/symfony/console/Output/StreamOutput.php +124 -0
  2205. data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +187 -0
  2206. data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
  2207. data/helpers/vendor/symfony/console/Question/Question.php +242 -0
  2208. data/helpers/vendor/symfony/console/README.md +20 -0
  2209. data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  2210. data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
  2211. data/helpers/vendor/symfony/console/Style/StyleInterface.php +153 -0
  2212. data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +431 -0
  2213. data/helpers/vendor/symfony/console/Terminal.php +163 -0
  2214. data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +176 -0
  2215. data/helpers/vendor/symfony/console/Tester/CommandTester.php +162 -0
  2216. data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1744 -0
  2217. data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +430 -0
  2218. data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
  2219. data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
  2220. data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
  2221. data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +59 -0
  2222. data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +58 -0
  2223. data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +256 -0
  2224. data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
  2225. data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
  2226. data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
  2227. data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
  2228. data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
  2229. data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
  2230. data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
  2231. data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
  2232. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
  2233. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
  2234. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
  2235. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
  2236. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
  2237. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
  2238. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
  2239. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
  2240. data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
  2241. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
  2242. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
  2243. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
  2244. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
  2245. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
  2246. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
  2247. data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
  2248. data/helpers/vendor/symfony/console/Tests/Fixtures/FooHiddenCommand.php +21 -0
  2249. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
  2250. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
  2251. data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
  2252. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
  2253. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
  2254. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
  2255. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
  2256. data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
  2257. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
  2258. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
  2259. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
  2260. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
  2261. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
  2262. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
  2263. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
  2264. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
  2265. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
  2266. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
  2267. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
  2268. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
  2269. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
  2270. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
  2271. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
  2272. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
  2273. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
  2274. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
  2275. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
  2276. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
  2277. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
  2278. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
  2279. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
  2280. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
  2281. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
  2282. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
  2283. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
  2284. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
  2285. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
  2286. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
  2287. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
  2288. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
  2289. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
  2290. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
  2291. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
  2292. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
  2293. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
  2294. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
  2295. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php +22 -0
  2296. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering2.php +21 -0
  2297. data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
  2298. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
  2299. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
  2300. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
  2301. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
  2302. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
  2303. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
  2304. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
  2305. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
  2306. data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
  2307. data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
  2308. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
  2309. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
  2310. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
  2311. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
  2312. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
  2313. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
  2314. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
  2315. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
  2316. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
  2317. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
  2318. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
  2319. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
  2320. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
  2321. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +26 -0
  2322. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +26 -0
  2323. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
  2324. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
  2325. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
  2326. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +7 -0
  2327. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
  2328. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
  2329. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
  2330. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +13 -0
  2331. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
  2332. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
  2333. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +13 -0
  2334. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
  2335. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
  2336. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
  2337. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
  2338. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
  2339. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
  2340. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
  2341. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
  2342. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
  2343. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
  2344. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
  2345. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
  2346. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
  2347. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
  2348. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
  2349. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
  2350. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
  2351. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
  2352. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
  2353. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
  2354. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
  2355. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
  2356. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
  2357. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
  2358. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
  2359. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
  2360. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
  2361. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
  2362. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
  2363. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
  2364. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
  2365. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
  2366. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
  2367. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
  2368. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
  2369. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
  2370. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
  2371. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
  2372. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
  2373. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
  2374. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
  2375. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
  2376. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
  2377. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
  2378. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
  2379. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
  2380. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
  2381. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
  2382. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
  2383. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
  2384. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
  2385. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
  2386. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
  2387. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
  2388. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
  2389. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
  2390. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
  2391. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
  2392. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
  2393. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
  2394. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
  2395. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
  2396. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
  2397. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
  2398. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
  2399. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
  2400. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
  2401. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
  2402. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
  2403. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
  2404. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
  2405. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
  2406. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
  2407. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
  2408. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
  2409. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
  2410. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +69 -0
  2411. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
  2412. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +344 -0
  2413. data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
  2414. data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
  2415. data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
  2416. data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
  2417. data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +118 -0
  2418. data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +805 -0
  2419. data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +175 -0
  2420. data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +1081 -0
  2421. data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +166 -0
  2422. data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +26 -0
  2423. data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +868 -0
  2424. data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +462 -0
  2425. data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +173 -0
  2426. data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +109 -0
  2427. data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +389 -0
  2428. data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +194 -0
  2429. data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +137 -0
  2430. data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
  2431. data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +213 -0
  2432. data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
  2433. data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
  2434. data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +176 -0
  2435. data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +59 -0
  2436. data/helpers/vendor/symfony/console/Tests/Question/ChoiceQuestionTest.php +64 -0
  2437. data/helpers/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +62 -0
  2438. data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +118 -0
  2439. data/helpers/vendor/symfony/console/Tests/TerminalTest.php +97 -0
  2440. data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +70 -0
  2441. data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +212 -0
  2442. data/helpers/vendor/symfony/console/composer.json +56 -0
  2443. data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
  2444. data/helpers/vendor/symfony/debug/.gitignore +3 -0
  2445. data/helpers/vendor/symfony/debug/BufferingLogger.php +37 -0
  2446. data/helpers/vendor/symfony/debug/CHANGELOG.md +64 -0
  2447. data/helpers/vendor/symfony/debug/Debug.php +60 -0
  2448. data/helpers/vendor/symfony/debug/DebugClassLoader.php +455 -0
  2449. data/helpers/vendor/symfony/debug/ErrorHandler.php +787 -0
  2450. data/helpers/vendor/symfony/debug/Exception/ClassNotFoundException.php +36 -0
  2451. data/helpers/vendor/symfony/debug/Exception/ContextErrorException.php +40 -0
  2452. data/helpers/vendor/symfony/debug/Exception/FatalErrorException.php +82 -0
  2453. data/helpers/vendor/symfony/debug/Exception/FatalThrowableError.php +45 -0
  2454. data/helpers/vendor/symfony/debug/Exception/FlattenException.php +263 -0
  2455. data/helpers/vendor/symfony/debug/Exception/OutOfMemoryException.php +21 -0
  2456. data/helpers/vendor/symfony/debug/Exception/SilencedErrorContext.php +67 -0
  2457. data/helpers/vendor/symfony/debug/Exception/UndefinedFunctionException.php +36 -0
  2458. data/helpers/vendor/symfony/debug/Exception/UndefinedMethodException.php +36 -0
  2459. data/helpers/vendor/symfony/debug/ExceptionHandler.php +444 -0
  2460. data/helpers/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +214 -0
  2461. data/helpers/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +32 -0
  2462. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +84 -0
  2463. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +66 -0
  2464. data/helpers/vendor/symfony/debug/LICENSE +19 -0
  2465. data/helpers/vendor/symfony/debug/README.md +13 -0
  2466. data/helpers/vendor/symfony/debug/Resources/ext/README.md +134 -0
  2467. data/helpers/vendor/symfony/debug/Resources/ext/config.m4 +63 -0
  2468. data/helpers/vendor/symfony/debug/Resources/ext/config.w32 +13 -0
  2469. data/helpers/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +60 -0
  2470. data/helpers/vendor/symfony/debug/Resources/ext/symfony_debug.c +283 -0
  2471. data/helpers/vendor/symfony/debug/Resources/ext/tests/001.phpt +155 -0
  2472. data/helpers/vendor/symfony/debug/Resources/ext/tests/002.phpt +65 -0
  2473. data/helpers/vendor/symfony/debug/Resources/ext/tests/002_1.phpt +48 -0
  2474. data/helpers/vendor/symfony/debug/Resources/ext/tests/003.phpt +87 -0
  2475. data/helpers/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +445 -0
  2476. data/helpers/vendor/symfony/debug/Tests/ErrorHandlerTest.php +646 -0
  2477. data/helpers/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +302 -0
  2478. data/helpers/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +163 -0
  2479. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +180 -0
  2480. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +81 -0
  2481. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +76 -0
  2482. data/helpers/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +13 -0
  2483. data/helpers/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +3 -0
  2484. data/helpers/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php +11 -0
  2485. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +12 -0
  2486. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +12 -0
  2487. data/helpers/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +22 -0
  2488. data/helpers/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +19 -0
  2489. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +85 -0
  2490. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +26 -0
  2491. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +10 -0
  2492. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +15 -0
  2493. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +10 -0
  2494. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +10 -0
  2495. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +23 -0
  2496. data/helpers/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +15 -0
  2497. data/helpers/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +7 -0
  2498. data/helpers/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +5 -0
  2499. data/helpers/vendor/symfony/debug/Tests/Fixtures/Throwing.php +3 -0
  2500. data/helpers/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +24 -0
  2501. data/helpers/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +13 -0
  2502. data/helpers/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +7 -0
  2503. data/helpers/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +7 -0
  2504. data/helpers/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +7 -0
  2505. data/helpers/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +7 -0
  2506. data/helpers/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +7 -0
  2507. data/helpers/vendor/symfony/debug/Tests/HeaderMock.php +38 -0
  2508. data/helpers/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +27 -0
  2509. data/helpers/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +47 -0
  2510. data/helpers/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +35 -0
  2511. data/helpers/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt +42 -0
  2512. data/helpers/vendor/symfony/debug/composer.json +40 -0
  2513. data/helpers/vendor/symfony/debug/phpunit.xml.dist +33 -0
  2514. data/helpers/vendor/symfony/event-dispatcher/.gitignore +3 -0
  2515. data/helpers/vendor/symfony/event-dispatcher/CHANGELOG.md +42 -0
  2516. data/helpers/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php +198 -0
  2517. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +332 -0
  2518. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php +36 -0
  2519. data/helpers/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +125 -0
  2520. data/helpers/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +137 -0
  2521. data/helpers/vendor/symfony/event-dispatcher/Event.php +58 -0
  2522. data/helpers/vendor/symfony/event-dispatcher/EventDispatcher.php +238 -0
  2523. data/helpers/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +93 -0
  2524. data/helpers/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +46 -0
  2525. data/helpers/vendor/symfony/event-dispatcher/GenericEvent.php +175 -0
  2526. data/helpers/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +91 -0
  2527. data/helpers/vendor/symfony/event-dispatcher/LICENSE +19 -0
  2528. data/helpers/vendor/symfony/event-dispatcher/README.md +15 -0
  2529. data/helpers/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php +442 -0
  2530. data/helpers/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php +210 -0
  2531. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php +269 -0
  2532. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php +64 -0
  2533. data/helpers/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +147 -0
  2534. data/helpers/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php +22 -0
  2535. data/helpers/vendor/symfony/event-dispatcher/Tests/EventTest.php +55 -0
  2536. data/helpers/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php +134 -0
  2537. data/helpers/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php +100 -0
  2538. data/helpers/vendor/symfony/event-dispatcher/composer.json +47 -0
  2539. data/helpers/vendor/symfony/event-dispatcher/phpunit.xml.dist +31 -0
  2540. data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
  2541. data/helpers/vendor/symfony/filesystem/CHANGELOG.md +53 -0
  2542. data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  2543. data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  2544. data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
  2545. data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
  2546. data/helpers/vendor/symfony/filesystem/Filesystem.php +775 -0
  2547. data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
  2548. data/helpers/vendor/symfony/filesystem/LockHandler.php +121 -0
  2549. data/helpers/vendor/symfony/filesystem/README.md +13 -0
  2550. data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
  2551. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1656 -0
  2552. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +165 -0
  2553. data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
  2554. data/helpers/vendor/symfony/filesystem/Tests/LockHandlerTest.php +144 -0
  2555. data/helpers/vendor/symfony/filesystem/composer.json +34 -0
  2556. data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
  2557. data/helpers/vendor/symfony/finder +1 -0
  2558. data/helpers/vendor/symfony/options-resolver/.gitignore +3 -0
  2559. data/helpers/vendor/symfony/options-resolver/CHANGELOG.md +52 -0
  2560. data/helpers/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +102 -0
  2561. data/helpers/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
  2562. data/helpers/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
  2563. data/helpers/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
  2564. data/helpers/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
  2565. data/helpers/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
  2566. data/helpers/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
  2567. data/helpers/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
  2568. data/helpers/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
  2569. data/helpers/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
  2570. data/helpers/vendor/symfony/options-resolver/LICENSE +19 -0
  2571. data/helpers/vendor/symfony/options-resolver/Options.php +22 -0
  2572. data/helpers/vendor/symfony/options-resolver/OptionsResolver.php +1065 -0
  2573. data/helpers/vendor/symfony/options-resolver/README.md +15 -0
  2574. data/helpers/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +183 -0
  2575. data/helpers/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +1619 -0
  2576. data/helpers/vendor/symfony/options-resolver/composer.json +33 -0
  2577. data/helpers/vendor/symfony/options-resolver/phpunit.xml.dist +31 -0
  2578. data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
  2579. data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  2580. data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
  2581. data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +26 -0
  2582. data/helpers/vendor/symfony/polyfill-ctype/composer.json +34 -0
  2583. data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  2584. data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +829 -0
  2585. data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
  2586. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1096 -0
  2587. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  2588. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1104 -0
  2589. data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +62 -0
  2590. data/helpers/vendor/symfony/polyfill-mbstring/composer.json +34 -0
  2591. data/helpers/vendor/symfony/polyfill-php70/LICENSE +19 -0
  2592. data/helpers/vendor/symfony/polyfill-php70/Php70.php +74 -0
  2593. data/helpers/vendor/symfony/polyfill-php70/README.md +28 -0
  2594. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php +5 -0
  2595. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php +5 -0
  2596. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php +5 -0
  2597. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/Error.php +5 -0
  2598. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php +5 -0
  2599. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php +23 -0
  2600. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php +5 -0
  2601. data/helpers/vendor/symfony/polyfill-php70/bootstrap.php +27 -0
  2602. data/helpers/vendor/symfony/polyfill-php70/composer.json +33 -0
  2603. data/helpers/vendor/symfony/polyfill-php72/LICENSE +19 -0
  2604. data/helpers/vendor/symfony/polyfill-php72/Php72.php +216 -0
  2605. data/helpers/vendor/symfony/polyfill-php72/README.md +27 -0
  2606. data/helpers/vendor/symfony/polyfill-php72/bootstrap.php +36 -0
  2607. data/helpers/vendor/symfony/polyfill-php72/composer.json +31 -0
  2608. data/helpers/vendor/symfony/process +1 -0
  2609. data/helpers/vendor/symfony/stopwatch/.gitignore +3 -0
  2610. data/helpers/vendor/symfony/stopwatch/CHANGELOG.md +9 -0
  2611. data/helpers/vendor/symfony/stopwatch/LICENSE +19 -0
  2612. data/helpers/vendor/symfony/stopwatch/README.md +13 -0
  2613. data/helpers/vendor/symfony/stopwatch/Section.php +200 -0
  2614. data/helpers/vendor/symfony/stopwatch/Stopwatch.php +176 -0
  2615. data/helpers/vendor/symfony/stopwatch/StopwatchEvent.php +248 -0
  2616. data/helpers/vendor/symfony/stopwatch/StopwatchPeriod.php +76 -0
  2617. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchEventTest.php +172 -0
  2618. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchPeriodTest.php +67 -0
  2619. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchTest.php +182 -0
  2620. data/helpers/vendor/symfony/stopwatch/composer.json +33 -0
  2621. data/helpers/vendor/symfony/stopwatch/phpunit.xml.dist +30 -0
  2622. metadata +2968 -4
@@ -0,0 +1,41 @@
1
+ # Contributions Are Welcome!
2
+
3
+ If you need any help, don't hesitate to ask the community on [Gitter](https://gitter.im/PHP-CS-Fixer/Lobby).
4
+
5
+ ## Quick Guide
6
+
7
+ * [Fork](https://help.github.com/articles/fork-a-repo/) the repo.
8
+ * [Checkout](https://git-scm.com/docs/git-checkout) the branch you want to make changes on:
9
+ * If you are fixing a bug or typo, improving tests or for any small tweak: the lowest branch where the changes can be applied. Once your Pull Request is accepted, the changes will get merged up to highest branches.
10
+ * `master` in other cases (new feature, deprecation, or backwards compatibility breaking changes). Note that most of the time, `master` represents the next minor release of PHP CS Fixer, so Pull Requests that break backwards compatibility might be postponed.
11
+ * Install dependencies: `composer install`.
12
+ * Create a new branch, e.g. `feature-foo` or `bugfix-bar`.
13
+ * Make changes.
14
+ * If you are adding functionality or fixing a bug - add a test! Prefer adding new test cases over modifying existing ones.
15
+ * Make sure there is no trailing spaces in code: `./check_trailing_spaces.sh`.
16
+ * Regenerate README: `php php-cs-fixer readme > README.rst`. Do not modify `README.rst` manually!
17
+ * Check if tests pass: `vendor/bin/phpunit`.
18
+ * Fix project itself: `php php-cs-fixer fix`.
19
+
20
+ ## Opening a [Pull Request](https://help.github.com/articles/about-pull-requests/)
21
+
22
+ You can do some things to increase the chance that your Pull Request is accepted the first time:
23
+
24
+ * Submit one Pull Request per fix or feature.
25
+ * If your changes are not up to date, [rebase](https://git-scm.com/docs/git-rebase) your branch onto the parent branch.
26
+ * Follow the conventions used in the project.
27
+ * Remember about tests and documentation.
28
+ * Don't bump version.
29
+
30
+ ## Making New Fixers
31
+
32
+ There is a [cookbook](doc/COOKBOOK-FIXERS.md) with basic instructions on how to build a new fixer. Consider reading it
33
+ before opening a PR.
34
+
35
+ ## Project's Standards
36
+
37
+ * [PSR-1: Basic Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md)
38
+ * [PSR-2: Coding Style Guide](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
39
+ * [PSR-4: Autoloading Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md)
40
+ * [PSR-5: PHPDoc (draft)](https://github.com/phpDocumentor/fig-standards/blob/master/proposed/phpdoc.md)
41
+ * [Symfony Coding Standards](https://symfony.com/doc/current/contributing/code/standards.html)
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012-2019 Fabien Potencier
2
+ Dariusz Rumiński
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished
9
+ to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ THE SOFTWARE.
@@ -0,0 +1,2079 @@
1
+ PHP Coding Standards Fixer
2
+ ==========================
3
+
4
+ The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow standards;
5
+ whether you want to follow PHP coding standards as defined in the PSR-1, PSR-2, etc.,
6
+ or other community driven ones like the Symfony one.
7
+ You can **also** define your (team's) style through configuration.
8
+
9
+ It can modernize your code (like converting the ``pow`` function to the ``**`` operator on PHP 5.6)
10
+ and (micro) optimize it.
11
+
12
+ If you are already using a linter to identify coding standards problems in your
13
+ code, you know that fixing them by hand is tedious, especially on large
14
+ projects. This tool does not only detect them, but also fixes them for you.
15
+
16
+ The PHP CS Fixer is maintained on GitHub at https://github.com/FriendsOfPHP/PHP-CS-Fixer
17
+ bug reports and ideas about new features are welcome there.
18
+
19
+ You can talk to us at https://gitter.im/PHP-CS-Fixer/Lobby about the project,
20
+ configuration, possible improvements, ideas and questions, please visit us!
21
+
22
+ Requirements
23
+ ------------
24
+
25
+ PHP needs to be a minimum version of PHP 5.6.0.
26
+
27
+ Installation
28
+ ------------
29
+
30
+ Locally
31
+ ~~~~~~~
32
+
33
+ Download the `php-cs-fixer.phar`_ file and store it somewhere on your computer.
34
+
35
+ Globally (manual)
36
+ ~~~~~~~~~~~~~~~~~
37
+
38
+ You can run these commands to easily access latest ``php-cs-fixer`` from anywhere on
39
+ your system:
40
+
41
+ .. code-block:: bash
42
+
43
+ $ wget https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer
44
+
45
+ or with specified version:
46
+
47
+ .. code-block:: bash
48
+
49
+ $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.3/php-cs-fixer.phar -O php-cs-fixer
50
+
51
+ or with curl:
52
+
53
+ .. code-block:: bash
54
+
55
+ $ curl -L https://cs.symfony.com/download/php-cs-fixer-v2.phar -o php-cs-fixer
56
+
57
+ then:
58
+
59
+ .. code-block:: bash
60
+
61
+ $ sudo chmod a+x php-cs-fixer
62
+ $ sudo mv php-cs-fixer /usr/local/bin/php-cs-fixer
63
+
64
+ Then, just run ``php-cs-fixer``.
65
+
66
+ Globally (Composer)
67
+ ~~~~~~~~~~~~~~~~~~~
68
+
69
+ To install PHP CS Fixer, `install Composer <https://getcomposer.org/download/>`_ and issue the following command:
70
+
71
+ .. code-block:: bash
72
+
73
+ $ composer global require friendsofphp/php-cs-fixer
74
+
75
+ Then make sure you have the global Composer binaries directory in your ``PATH``. This directory is platform-dependent, see `Composer documentation <https://getcomposer.org/doc/03-cli.md#composer-home>`_ for details. Example for some Unix systems:
76
+
77
+ .. code-block:: bash
78
+
79
+ $ export PATH="$PATH:$HOME/.composer/vendor/bin"
80
+
81
+ Globally (homebrew)
82
+ ~~~~~~~~~~~~~~~~~~~
83
+
84
+ .. code-block:: bash
85
+
86
+ $ brew install php-cs-fixer
87
+
88
+ Locally (PHIVE)
89
+ ~~~~~~~~~~~~~~~
90
+
91
+ Install `PHIVE <https://phar.io>`_ and issue the following command:
92
+
93
+ .. code-block:: bash
94
+
95
+ $ phive install php-cs-fixer # use `--global` for global install
96
+
97
+ Update
98
+ ------
99
+
100
+ Locally
101
+ ~~~~~~~
102
+
103
+ The ``self-update`` command tries to update ``php-cs-fixer`` itself:
104
+
105
+ .. code-block:: bash
106
+
107
+ $ php php-cs-fixer.phar self-update
108
+
109
+ Globally (manual)
110
+ ~~~~~~~~~~~~~~~~~
111
+
112
+ You can update ``php-cs-fixer`` through this command:
113
+
114
+ .. code-block:: bash
115
+
116
+ $ sudo php-cs-fixer self-update
117
+
118
+ Globally (Composer)
119
+ ~~~~~~~~~~~~~~~~~~~
120
+
121
+ You can update ``php-cs-fixer`` through this command:
122
+
123
+ .. code-block:: bash
124
+
125
+ $ ./composer.phar global update friendsofphp/php-cs-fixer
126
+
127
+ Globally (homebrew)
128
+ ~~~~~~~~~~~~~~~~~~~
129
+
130
+ You can update ``php-cs-fixer`` through this command:
131
+
132
+ .. code-block:: bash
133
+
134
+ $ brew upgrade php-cs-fixer
135
+
136
+ Locally (PHIVE)
137
+ ~~~~~~~~~~~~~~~~~~~
138
+
139
+ .. code-block:: bash
140
+
141
+ $ phive update php-cs-fixer
142
+
143
+ Usage
144
+ -----
145
+
146
+ The ``fix`` command tries to fix as much coding standards
147
+ problems as possible on a given file or files in a given directory and its subdirectories:
148
+
149
+ .. code-block:: bash
150
+
151
+ $ php php-cs-fixer.phar fix /path/to/dir
152
+ $ php php-cs-fixer.phar fix /path/to/file
153
+
154
+ By default ``--path-mode`` is set to ``override``, which means, that if you specify the path to a file or a directory via
155
+ command arguments, then the paths provided to a ``Finder`` in config file will be ignored. You can use ``--path-mode=intersection``
156
+ to merge paths from the config file and from the argument:
157
+
158
+ .. code-block:: bash
159
+
160
+ $ php php-cs-fixer.phar fix --path-mode=intersection /path/to/dir
161
+
162
+ The ``--format`` option for the output format. Supported formats are ``txt`` (default one), ``json``, ``xml``, ``checkstyle``, ``junit`` and ``gitlab``.
163
+
164
+ NOTE: the output for the following formats are generated in accordance with XML schemas
165
+
166
+ * ``junit`` follows the `JUnit xml schema from Jenkins </doc/junit-10.xsd>`_
167
+ * ``checkstyle`` follows the common `"checkstyle" xml schema </doc/checkstyle.xsd>`_
168
+
169
+
170
+ The ``--verbose`` option will show the applied rules. When using the ``txt`` format it will also display progress notifications.
171
+
172
+ The ``--rules`` option limits the rules to apply to the
173
+ project:
174
+
175
+ .. code-block:: bash
176
+
177
+ $ php php-cs-fixer.phar fix /path/to/project --rules=@PSR2
178
+
179
+ By default the PSR1 and PSR2 rules are used.
180
+
181
+ The ``--rules`` option lets you choose the exact rules to
182
+ apply (the rule names must be separated by a comma):
183
+
184
+ .. code-block:: bash
185
+
186
+ $ php php-cs-fixer.phar fix /path/to/dir --rules=line_ending,full_opening_tag,indentation_type
187
+
188
+ You can also blacklist the rules you don't want by placing a dash in front of the rule name, if this is more convenient,
189
+ using ``-name_of_fixer``:
190
+
191
+ .. code-block:: bash
192
+
193
+ $ php php-cs-fixer.phar fix /path/to/dir --rules=-full_opening_tag,-indentation_type
194
+
195
+ When using combinations of exact and blacklist rules, applying exact rules along with above blacklisted results:
196
+
197
+ .. code-block:: bash
198
+
199
+ $ php php-cs-fixer.phar fix /path/to/project --rules=@Symfony,-@PSR1,-blank_line_before_statement,strict_comparison
200
+
201
+ Complete configuration for rules can be supplied using a ``json`` formatted string.
202
+
203
+ .. code-block:: bash
204
+
205
+ $ php php-cs-fixer.phar fix /path/to/project --rules='{"concat_space": {"spacing": "none"}}'
206
+
207
+ The ``--dry-run`` flag will run the fixer without making changes to your files.
208
+
209
+ The ``--diff`` flag can be used to let the fixer output all the changes it makes.
210
+
211
+ The ``--diff-format`` option allows to specify in which format the fixer should output the changes it makes:
212
+
213
+ * ``udiff``: unified diff format;
214
+ * ``sbd``: Sebastianbergmann/diff format (default when using `--diff` without specifying `diff-format`).
215
+
216
+ The ``--allow-risky`` option (pass ``yes`` or ``no``) allows you to set whether risky rules may run. Default value is taken from config file.
217
+ A rule is considered risky if it could change code behaviour. By default no risky rules are run.
218
+
219
+ The ``--stop-on-violation`` flag stops the execution upon first file that needs to be fixed.
220
+
221
+ The ``--show-progress`` option allows you to choose the way process progress is rendered:
222
+
223
+ * ``none``: disables progress output;
224
+ * ``run-in``: [deprecated] simple single-line progress output;
225
+ * ``estimating``: [deprecated] multiline progress output with number of files and percentage on each line. Note that with this option, the files list is evaluated before processing to get the total number of files and then kept in memory to avoid using the file iterator twice. This has an impact on memory usage so using this option is not recommended on very large projects;
226
+ * ``estimating-max``: [deprecated] same as ``dots``;
227
+ * ``dots``: same as ``estimating`` but using all terminal columns instead of default 80.
228
+
229
+ If the option is not provided, it defaults to ``run-in`` unless a config file that disables output is used, in which case it defaults to ``none``. This option has no effect if the verbosity of the command is less than ``verbose``.
230
+
231
+ .. code-block:: bash
232
+
233
+ $ php php-cs-fixer.phar fix --verbose --show-progress=estimating
234
+
235
+ The command can also read from standard input, in which case it won't
236
+ automatically fix anything:
237
+
238
+ .. code-block:: bash
239
+
240
+ $ cat foo.php | php php-cs-fixer.phar fix --diff -
241
+
242
+ Finally, if you don't need BC kept on CLI level, you might use `PHP_CS_FIXER_FUTURE_MODE` to start using options that
243
+ would be default in next MAJOR release (unified differ, estimating, full-width progress indicator):
244
+
245
+ .. code-block:: bash
246
+
247
+ $ PHP_CS_FIXER_FUTURE_MODE=1 php php-cs-fixer.phar fix -v --diff
248
+
249
+ Choose from the list of available rules:
250
+
251
+ * **align_multiline_comment** [@PhpCsFixer]
252
+
253
+ Each line of multi-line DocComments must have an asterisk [PSR-5] and
254
+ must be aligned with the first one.
255
+
256
+ Configuration options:
257
+
258
+ - ``comment_type`` (``'all_multiline'``, ``'phpdocs_like'``, ``'phpdocs_only'``): whether
259
+ to fix PHPDoc comments only (``phpdocs_only``), any multi-line comment
260
+ whose lines all start with an asterisk (``phpdocs_like``) or any
261
+ multi-line comment (``all_multiline``); defaults to ``'phpdocs_only'``
262
+
263
+ * **array_indentation** [@PhpCsFixer]
264
+
265
+ Each element of an array must be indented exactly once.
266
+
267
+ * **array_syntax** [@PhpCsFixer]
268
+
269
+ PHP arrays should be declared using the configured syntax.
270
+
271
+ Configuration options:
272
+
273
+ - ``syntax`` (``'long'``, ``'short'``): whether to use the ``long`` or ``short`` array
274
+ syntax; defaults to ``'long'``
275
+
276
+ * **backtick_to_shell_exec**
277
+
278
+ Converts backtick operators to ``shell_exec`` calls.
279
+
280
+ * **binary_operator_spaces** [@Symfony, @PhpCsFixer]
281
+
282
+ Binary operators should be surrounded by space as configured.
283
+
284
+ Configuration options:
285
+
286
+ - ``align_double_arrow`` (``false``, ``null``, ``true``): whether to apply, remove or
287
+ ignore double arrows alignment; defaults to ``false``. DEPRECATED: use
288
+ options ``operators`` and ``default`` instead
289
+ - ``align_equals`` (``false``, ``null``, ``true``): whether to apply, remove or ignore
290
+ equals alignment; defaults to ``false``. DEPRECATED: use options
291
+ ``operators`` and ``default`` instead
292
+ - ``default`` (``'align'``, ``'align_single_space'``, ``'align_single_space_minimal'``,
293
+ ``'no_space'``, ``'single_space'``, ``null``): default fix strategy; defaults to
294
+ ``'single_space'``
295
+ - ``operators`` (``array``): dictionary of ``binary operator`` => ``fix strategy``
296
+ values that differ from the default strategy; defaults to ``[]``
297
+
298
+ * **blank_line_after_namespace** [@PSR2, @Symfony, @PhpCsFixer]
299
+
300
+ There MUST be one blank line after the namespace declaration.
301
+
302
+ * **blank_line_after_opening_tag** [@Symfony, @PhpCsFixer]
303
+
304
+ Ensure there is no code on the same line as the PHP open tag and it is
305
+ followed by a blank line.
306
+
307
+ * **blank_line_before_return**
308
+
309
+ An empty line feed should precede a return statement. DEPRECATED: use
310
+ ``blank_line_before_statement`` instead.
311
+
312
+ * **blank_line_before_statement** [@Symfony, @PhpCsFixer]
313
+
314
+ An empty line feed must precede any configured statement.
315
+
316
+ Configuration options:
317
+
318
+ - ``statements`` (a subset of ``['break', 'case', 'continue', 'declare',
319
+ 'default', 'die', 'do', 'exit', 'for', 'foreach', 'goto', 'if',
320
+ 'include', 'include_once', 'require', 'require_once', 'return',
321
+ 'switch', 'throw', 'try', 'while', 'yield']``): list of statements which
322
+ must be preceded by an empty line; defaults to ``['break', 'continue',
323
+ 'declare', 'return', 'throw', 'try']``
324
+
325
+ * **braces** [@PSR2, @Symfony, @PhpCsFixer]
326
+
327
+ The body of each structure MUST be enclosed by braces. Braces should be
328
+ properly placed. Body of braces should be properly indented.
329
+
330
+ Configuration options:
331
+
332
+ - ``allow_single_line_closure`` (``bool``): whether single line lambda notation
333
+ should be allowed; defaults to ``false``
334
+ - ``position_after_anonymous_constructs`` (``'next'``, ``'same'``): whether the
335
+ opening brace should be placed on "next" or "same" line after anonymous
336
+ constructs (anonymous classes and lambda functions); defaults to ``'same'``
337
+ - ``position_after_control_structures`` (``'next'``, ``'same'``): whether the opening
338
+ brace should be placed on "next" or "same" line after control
339
+ structures; defaults to ``'same'``
340
+ - ``position_after_functions_and_oop_constructs`` (``'next'``, ``'same'``): whether
341
+ the opening brace should be placed on "next" or "same" line after
342
+ classy constructs (non-anonymous classes, interfaces, traits, methods
343
+ and non-lambda functions); defaults to ``'next'``
344
+
345
+ * **cast_spaces** [@Symfony, @PhpCsFixer]
346
+
347
+ A single space or none should be between cast and variable.
348
+
349
+ Configuration options:
350
+
351
+ - ``space`` (``'none'``, ``'single'``): spacing to apply between cast and variable;
352
+ defaults to ``'single'``
353
+
354
+ * **class_attributes_separation** [@Symfony, @PhpCsFixer]
355
+
356
+ Class, trait and interface elements must be separated with one blank
357
+ line.
358
+
359
+ Configuration options:
360
+
361
+ - ``elements`` (a subset of ``['const', 'method', 'property']``): list of classy
362
+ elements; 'const', 'method', 'property'; defaults to ``['const',
363
+ 'method', 'property']``
364
+
365
+ * **class_definition** [@PSR2, @Symfony, @PhpCsFixer]
366
+
367
+ Whitespace around the keywords of a class, trait or interfaces
368
+ definition should be one space.
369
+
370
+ Configuration options:
371
+
372
+ - ``multi_line_extends_each_single_line`` (``bool``): whether definitions should
373
+ be multiline; defaults to ``false``; DEPRECATED alias:
374
+ ``multiLineExtendsEachSingleLine``
375
+ - ``single_item_single_line`` (``bool``): whether definitions should be single
376
+ line when including a single item; defaults to ``false``; DEPRECATED alias:
377
+ ``singleItemSingleLine``
378
+ - ``single_line`` (``bool``): whether definitions should be single line; defaults
379
+ to ``false``; DEPRECATED alias: ``singleLine``
380
+
381
+ * **class_keyword_remove**
382
+
383
+ Converts ``::class`` keywords to FQCN strings.
384
+
385
+ * **combine_consecutive_issets** [@PhpCsFixer]
386
+
387
+ Using ``isset($var) &&`` multiple times should be done in one call.
388
+
389
+ * **combine_consecutive_unsets** [@PhpCsFixer]
390
+
391
+ Calling ``unset`` on multiple items should be done in one call.
392
+
393
+ * **combine_nested_dirname** [@PHP70Migration:risky, @PHP71Migration:risky]
394
+
395
+ Replace multiple nested calls of ``dirname`` by only one call with second
396
+ ``$level`` parameter. Requires PHP >= 7.0.
397
+
398
+ *Risky rule: risky when the function ``dirname`` is overridden.*
399
+
400
+ * **comment_to_phpdoc** [@PhpCsFixer:risky]
401
+
402
+ Comments with annotation should be docblock when used on structural
403
+ elements.
404
+
405
+ *Risky rule: risky as new docblocks might mean more, e.g. a Doctrine entity might have a new column in database.*
406
+
407
+ * **compact_nullable_typehint** [@PhpCsFixer]
408
+
409
+ Remove extra spaces in a nullable typehint.
410
+
411
+ * **concat_space** [@Symfony, @PhpCsFixer]
412
+
413
+ Concatenation should be spaced according configuration.
414
+
415
+ Configuration options:
416
+
417
+ - ``spacing`` (``'none'``, ``'one'``): spacing to apply around concatenation operator;
418
+ defaults to ``'none'``
419
+
420
+ * **date_time_immutable**
421
+
422
+ Class ``DateTimeImmutable`` should be used instead of ``DateTime``.
423
+
424
+ *Risky rule: risky when the code relies on modifying ``DateTime`` objects or if any of the ``date_create*`` functions are overridden.*
425
+
426
+ * **declare_equal_normalize** [@Symfony, @PhpCsFixer]
427
+
428
+ Equal sign in declare statement should be surrounded by spaces or not
429
+ following configuration.
430
+
431
+ Configuration options:
432
+
433
+ - ``space`` (``'none'``, ``'single'``): spacing to apply around the equal sign;
434
+ defaults to ``'none'``
435
+
436
+ * **declare_strict_types** [@PHP70Migration:risky, @PHP71Migration:risky]
437
+
438
+ Force strict types declaration in all files. Requires PHP >= 7.0.
439
+
440
+ *Risky rule: forcing strict types will stop non strict code from working.*
441
+
442
+ * **dir_constant** [@Symfony:risky, @PhpCsFixer:risky]
443
+
444
+ Replaces ``dirname(__FILE__)`` expression with equivalent ``__DIR__``
445
+ constant.
446
+
447
+ *Risky rule: risky when the function ``dirname`` is overridden.*
448
+
449
+ * **doctrine_annotation_array_assignment** [@DoctrineAnnotation]
450
+
451
+ Doctrine annotations must use configured operator for assignment in
452
+ arrays.
453
+
454
+ Configuration options:
455
+
456
+ - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
457
+ Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
458
+ 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
459
+ 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
460
+ 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
461
+ 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
462
+ 'license', 'link', 'method', 'package', 'param', 'property',
463
+ 'property-read', 'property-write', 'return', 'see', 'since', 'source',
464
+ 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
465
+ 'version', 'after', 'afterClass', 'backupGlobals',
466
+ 'backupStaticAttributes', 'before', 'beforeClass',
467
+ 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
468
+ 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
469
+ 'coversNothing', 'dataProvider', 'depends', 'expectedException',
470
+ 'expectedExceptionCode', 'expectedExceptionMessage',
471
+ 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
472
+ 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
473
+ 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
474
+ 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
475
+ 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
476
+ - ``operator`` (``':'``, ``'='``): the operator to use; defaults to ``'='``
477
+
478
+ * **doctrine_annotation_braces** [@DoctrineAnnotation]
479
+
480
+ Doctrine annotations without arguments must use the configured syntax.
481
+
482
+ Configuration options:
483
+
484
+ - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
485
+ Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
486
+ 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
487
+ 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
488
+ 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
489
+ 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
490
+ 'license', 'link', 'method', 'package', 'param', 'property',
491
+ 'property-read', 'property-write', 'return', 'see', 'since', 'source',
492
+ 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
493
+ 'version', 'after', 'afterClass', 'backupGlobals',
494
+ 'backupStaticAttributes', 'before', 'beforeClass',
495
+ 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
496
+ 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
497
+ 'coversNothing', 'dataProvider', 'depends', 'expectedException',
498
+ 'expectedExceptionCode', 'expectedExceptionMessage',
499
+ 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
500
+ 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
501
+ 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
502
+ 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
503
+ 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
504
+ - ``syntax`` (``'with_braces'``, ``'without_braces'``): whether to add or remove
505
+ braces; defaults to ``'without_braces'``
506
+
507
+ * **doctrine_annotation_indentation** [@DoctrineAnnotation]
508
+
509
+ Doctrine annotations must be indented with four spaces.
510
+
511
+ Configuration options:
512
+
513
+ - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
514
+ Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
515
+ 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
516
+ 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
517
+ 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
518
+ 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
519
+ 'license', 'link', 'method', 'package', 'param', 'property',
520
+ 'property-read', 'property-write', 'return', 'see', 'since', 'source',
521
+ 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
522
+ 'version', 'after', 'afterClass', 'backupGlobals',
523
+ 'backupStaticAttributes', 'before', 'beforeClass',
524
+ 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
525
+ 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
526
+ 'coversNothing', 'dataProvider', 'depends', 'expectedException',
527
+ 'expectedExceptionCode', 'expectedExceptionMessage',
528
+ 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
529
+ 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
530
+ 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
531
+ 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
532
+ 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
533
+ - ``indent_mixed_lines`` (``bool``): whether to indent lines that have content
534
+ before closing parenthesis; defaults to ``false``
535
+
536
+ * **doctrine_annotation_spaces** [@DoctrineAnnotation]
537
+
538
+ Fixes spaces in Doctrine annotations.
539
+
540
+ Configuration options:
541
+
542
+ - ``after_argument_assignments`` (``null``, ``bool``): whether to add, remove or
543
+ ignore spaces after argument assignment operator; defaults to ``false``
544
+ - ``after_array_assignments_colon`` (``null``, ``bool``): whether to add, remove or
545
+ ignore spaces after array assignment ``:`` operator; defaults to ``true``
546
+ - ``after_array_assignments_equals`` (``null``, ``bool``): whether to add, remove or
547
+ ignore spaces after array assignment ``=`` operator; defaults to ``true``
548
+ - ``around_argument_assignments`` (``bool``): whether to fix spaces around
549
+ argument assignment operator; defaults to ``true``. DEPRECATED: use options
550
+ ``before_argument_assignments`` and ``after_argument_assignments`` instead
551
+ - ``around_array_assignments`` (``bool``): whether to fix spaces around array
552
+ assignment operators; defaults to ``true``. DEPRECATED: use options
553
+ ``before_array_assignments_equals``, ``after_array_assignments_equals``,
554
+ ``before_array_assignments_colon`` and ``after_array_assignments_colon``
555
+ instead
556
+ - ``around_commas`` (``bool``): whether to fix spaces around commas; defaults to
557
+ ``true``
558
+ - ``around_parentheses`` (``bool``): whether to fix spaces around parentheses;
559
+ defaults to ``true``
560
+ - ``before_argument_assignments`` (``null``, ``bool``): whether to add, remove or
561
+ ignore spaces before argument assignment operator; defaults to ``false``
562
+ - ``before_array_assignments_colon`` (``null``, ``bool``): whether to add, remove or
563
+ ignore spaces before array ``:`` assignment operator; defaults to ``true``
564
+ - ``before_array_assignments_equals`` (``null``, ``bool``): whether to add, remove or
565
+ ignore spaces before array ``=`` assignment operator; defaults to ``true``
566
+ - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
567
+ Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
568
+ 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
569
+ 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
570
+ 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
571
+ 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
572
+ 'license', 'link', 'method', 'package', 'param', 'property',
573
+ 'property-read', 'property-write', 'return', 'see', 'since', 'source',
574
+ 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
575
+ 'version', 'after', 'afterClass', 'backupGlobals',
576
+ 'backupStaticAttributes', 'before', 'beforeClass',
577
+ 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
578
+ 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
579
+ 'coversNothing', 'dataProvider', 'depends', 'expectedException',
580
+ 'expectedExceptionCode', 'expectedExceptionMessage',
581
+ 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
582
+ 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
583
+ 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
584
+ 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
585
+ 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
586
+
587
+ * **elseif** [@PSR2, @Symfony, @PhpCsFixer]
588
+
589
+ The keyword ``elseif`` should be used instead of ``else if`` so that all
590
+ control keywords look like single words.
591
+
592
+ * **encoding** [@PSR1, @PSR2, @Symfony, @PhpCsFixer]
593
+
594
+ PHP code MUST use only UTF-8 without BOM (remove BOM).
595
+
596
+ * **ereg_to_preg** [@Symfony:risky, @PhpCsFixer:risky]
597
+
598
+ Replace deprecated ``ereg`` regular expression functions with ``preg``.
599
+
600
+ *Risky rule: risky if the ``ereg`` function is overridden.*
601
+
602
+ * **error_suppression** [@Symfony:risky, @PhpCsFixer:risky]
603
+
604
+ Error control operator should be added to deprecation notices and/or
605
+ removed from other cases.
606
+
607
+ *Risky rule: risky because adding/removing ``@`` might cause changes to code behaviour or if ``trigger_error`` function is overridden.*
608
+
609
+ Configuration options:
610
+
611
+ - ``mute_deprecation_error`` (``bool``): whether to add ``@`` in deprecation
612
+ notices; defaults to ``true``
613
+ - ``noise_remaining_usages`` (``bool``): whether to remove ``@`` in remaining
614
+ usages; defaults to ``false``
615
+ - ``noise_remaining_usages_exclude`` (``array``): list of global functions to
616
+ exclude from removing ``@``; defaults to ``[]``
617
+
618
+ * **escape_implicit_backslashes** [@PhpCsFixer]
619
+
620
+ Escape implicit backslashes in strings and heredocs to ease the
621
+ understanding of which are special chars interpreted by PHP and which
622
+ not.
623
+
624
+ Configuration options:
625
+
626
+ - ``double_quoted`` (``bool``): whether to fix double-quoted strings; defaults to
627
+ ``true``
628
+ - ``heredoc_syntax`` (``bool``): whether to fix heredoc syntax; defaults to ``true``
629
+ - ``single_quoted`` (``bool``): whether to fix single-quoted strings; defaults to
630
+ ``false``
631
+
632
+ * **explicit_indirect_variable** [@PhpCsFixer]
633
+
634
+ Add curly braces to indirect variables to make them clear to understand.
635
+ Requires PHP >= 7.0.
636
+
637
+ * **explicit_string_variable** [@PhpCsFixer]
638
+
639
+ Converts implicit variables into explicit ones in double-quoted strings
640
+ or heredoc syntax.
641
+
642
+ * **final_class**
643
+
644
+ All classes must be final, except abstract ones and Doctrine entities.
645
+
646
+ *Risky rule: risky when subclassing non-abstract classes.*
647
+
648
+ * **final_internal_class** [@PhpCsFixer:risky]
649
+
650
+ Internal classes should be ``final``.
651
+
652
+ *Risky rule: changing classes to ``final`` might cause code execution to break.*
653
+
654
+ Configuration options:
655
+
656
+ - ``annotation-black-list`` (``array``): class level annotations tags that must be
657
+ omitted to fix the class, even if all of the white list ones are used
658
+ as well. (case insensitive); defaults to ``['@final', '@Entity',
659
+ '@ORM\\Entity']``
660
+ - ``annotation-white-list`` (``array``): class level annotations tags that must be
661
+ set in order to fix the class. (case insensitive); defaults to
662
+ ``['@internal']``
663
+ - ``consider-absent-docblock-as-internal-class`` (``bool``): should classes
664
+ without any DocBlock be fixed to final?; defaults to ``false``
665
+
666
+ * **fopen_flag_order** [@Symfony:risky, @PhpCsFixer:risky]
667
+
668
+ Order the flags in ``fopen`` calls, ``b`` and ``t`` must be last.
669
+
670
+ *Risky rule: risky when the function ``fopen`` is overridden.*
671
+
672
+ * **fopen_flags** [@Symfony:risky, @PhpCsFixer:risky]
673
+
674
+ The flags in ``fopen`` calls must omit ``t``, and ``b`` must be omitted or
675
+ included consistently.
676
+
677
+ *Risky rule: risky when the function ``fopen`` is overridden.*
678
+
679
+ Configuration options:
680
+
681
+ - ``b_mode`` (``bool``): the ``b`` flag must be used (``true``) or omitted (``false``);
682
+ defaults to ``true``
683
+
684
+ * **full_opening_tag** [@PSR1, @PSR2, @Symfony, @PhpCsFixer]
685
+
686
+ PHP code must use the long ``<?php`` tags or short-echo ``<?=`` tags and not
687
+ other tag variations.
688
+
689
+ * **fully_qualified_strict_types** [@PhpCsFixer]
690
+
691
+ Transforms imported FQCN parameters and return types in function
692
+ arguments to short version.
693
+
694
+ * **function_declaration** [@PSR2, @Symfony, @PhpCsFixer]
695
+
696
+ Spaces should be properly placed in a function declaration.
697
+
698
+ Configuration options:
699
+
700
+ - ``closure_function_spacing`` (``'none'``, ``'one'``): spacing to use before open
701
+ parenthesis for closures; defaults to ``'one'``
702
+
703
+ * **function_to_constant** [@Symfony:risky, @PhpCsFixer:risky]
704
+
705
+ Replace core functions calls returning constants with the constants.
706
+
707
+ *Risky rule: risky when any of the configured functions to replace are overridden.*
708
+
709
+ Configuration options:
710
+
711
+ - ``functions`` (a subset of ``['get_called_class', 'get_class',
712
+ 'php_sapi_name', 'phpversion', 'pi']``): list of function names to fix;
713
+ defaults to ``['get_class', 'php_sapi_name', 'phpversion', 'pi']``
714
+
715
+ * **function_typehint_space** [@Symfony, @PhpCsFixer]
716
+
717
+ Ensure single space between function's argument and its typehint.
718
+
719
+ * **general_phpdoc_annotation_remove**
720
+
721
+ Configured annotations should be omitted from PHPDoc.
722
+
723
+ Configuration options:
724
+
725
+ - ``annotations`` (``array``): list of annotations to remove, e.g. ``["author"]``;
726
+ defaults to ``[]``
727
+
728
+ * **hash_to_slash_comment**
729
+
730
+ Single line comments should use double slashes ``//`` and not hash ``#``.
731
+ DEPRECATED: use ``single_line_comment_style`` instead.
732
+
733
+ * **header_comment**
734
+
735
+ Add, replace or remove header comment.
736
+
737
+ Configuration options:
738
+
739
+ - ``comment_type`` (``'comment'``, ``'PHPDoc'``): comment syntax type; defaults to
740
+ ``'comment'``; DEPRECATED alias: ``commentType``
741
+ - ``header`` (``string``): proper header content; required
742
+ - ``location`` (``'after_declare_strict'``, ``'after_open'``): the location of the
743
+ inserted header; defaults to ``'after_declare_strict'``
744
+ - ``separate`` (``'both'``, ``'bottom'``, ``'none'``, ``'top'``): whether the header should be
745
+ separated from the file content with a new line; defaults to ``'both'``
746
+
747
+ * **heredoc_indentation** [@PHP73Migration]
748
+
749
+ Heredoc/nowdoc content must be properly indented. Requires PHP >= 7.3.
750
+
751
+ * **heredoc_to_nowdoc** [@PhpCsFixer]
752
+
753
+ Convert ``heredoc`` to ``nowdoc`` where possible.
754
+
755
+ * **implode_call** [@Symfony:risky, @PhpCsFixer:risky]
756
+
757
+ Function ``implode`` must be called with 2 arguments in the documented
758
+ order.
759
+
760
+ *Risky rule: risky when the function ``implode`` is overridden.*
761
+
762
+ * **include** [@Symfony, @PhpCsFixer]
763
+
764
+ Include/Require and file path should be divided with a single space.
765
+ File path should not be placed under brackets.
766
+
767
+ * **increment_style** [@Symfony, @PhpCsFixer]
768
+
769
+ Pre- or post-increment and decrement operators should be used if
770
+ possible.
771
+
772
+ Configuration options:
773
+
774
+ - ``style`` (``'post'``, ``'pre'``): whether to use pre- or post-increment and
775
+ decrement operators; defaults to ``'pre'``
776
+
777
+ * **indentation_type** [@PSR2, @Symfony, @PhpCsFixer]
778
+
779
+ Code MUST use configured indentation type.
780
+
781
+ * **is_null** [@Symfony:risky, @PhpCsFixer:risky]
782
+
783
+ Replaces ``is_null($var)`` expression with ``null === $var``.
784
+
785
+ *Risky rule: risky when the function ``is_null`` is overridden.*
786
+
787
+ Configuration options:
788
+
789
+ - ``use_yoda_style`` (``bool``): whether Yoda style conditions should be used;
790
+ defaults to ``true``. DEPRECATED: use ``yoda_style`` fixer instead
791
+
792
+ * **line_ending** [@PSR2, @Symfony, @PhpCsFixer]
793
+
794
+ All PHP files must use same line ending.
795
+
796
+ * **linebreak_after_opening_tag**
797
+
798
+ Ensure there is no code on the same line as the PHP open tag.
799
+
800
+ * **list_syntax**
801
+
802
+ List (``array`` destructuring) assignment should be declared using the
803
+ configured syntax. Requires PHP >= 7.1.
804
+
805
+ Configuration options:
806
+
807
+ - ``syntax`` (``'long'``, ``'short'``): whether to use the ``long`` or ``short`` ``list``
808
+ syntax; defaults to ``'long'``
809
+
810
+ * **logical_operators** [@PhpCsFixer:risky]
811
+
812
+ Use ``&&`` and ``||`` logical operators instead of ``and`` and ``or``.
813
+
814
+ *Risky rule: risky, because you must double-check if using and/or with lower precedence was intentional.*
815
+
816
+ * **lowercase_cast** [@Symfony, @PhpCsFixer]
817
+
818
+ Cast should be written in lower case.
819
+
820
+ * **lowercase_constants** [@PSR2, @Symfony, @PhpCsFixer]
821
+
822
+ The PHP constants ``true``, ``false``, and ``null`` MUST be in lower case.
823
+
824
+ * **lowercase_keywords** [@PSR2, @Symfony, @PhpCsFixer]
825
+
826
+ PHP keywords MUST be in lower case.
827
+
828
+ * **lowercase_static_reference** [@Symfony, @PhpCsFixer]
829
+
830
+ Class static references ``self``, ``static`` and ``parent`` MUST be in lower
831
+ case.
832
+
833
+ * **magic_constant_casing** [@Symfony, @PhpCsFixer]
834
+
835
+ Magic constants should be referred to using the correct casing.
836
+
837
+ * **magic_method_casing** [@Symfony, @PhpCsFixer]
838
+
839
+ Magic method definitions and calls must be using the correct casing.
840
+
841
+ * **mb_str_functions**
842
+
843
+ Replace non multibyte-safe functions with corresponding mb function.
844
+
845
+ *Risky rule: risky when any of the functions are overridden.*
846
+
847
+ * **method_argument_space** [@PSR2, @Symfony, @PhpCsFixer]
848
+
849
+ In method arguments and method call, there MUST NOT be a space before
850
+ each comma and there MUST be one space after each comma. Argument lists
851
+ MAY be split across multiple lines, where each subsequent line is
852
+ indented once. When doing so, the first item in the list MUST be on the
853
+ next line, and there MUST be only one argument per line.
854
+
855
+ Configuration options:
856
+
857
+ - ``after_heredoc`` (``bool``): whether the whitespace between heredoc end and
858
+ comma should be removed; defaults to ``false``
859
+ - ``ensure_fully_multiline`` (``bool``): ensure every argument of a multiline
860
+ argument list is on its own line; defaults to ``false``. DEPRECATED: use
861
+ option ``on_multiline`` instead
862
+ - ``keep_multiple_spaces_after_comma`` (``bool``): whether keep multiple spaces
863
+ after comma; defaults to ``false``
864
+ - ``on_multiline`` (``'ensure_fully_multiline'``, ``'ensure_single_line'``, ``'ignore'``):
865
+ defines how to handle function arguments lists that contain newlines;
866
+ defaults to ``'ignore'``
867
+
868
+ * **method_chaining_indentation** [@PhpCsFixer]
869
+
870
+ Method chaining MUST be properly indented. Method chaining with
871
+ different levels of indentation is not supported.
872
+
873
+ * **method_separation**
874
+
875
+ Methods must be separated with one blank line. DEPRECATED: use
876
+ ``class_attributes_separation`` instead.
877
+
878
+ * **modernize_types_casting** [@Symfony:risky, @PhpCsFixer:risky]
879
+
880
+ Replaces ``intval``, ``floatval``, ``doubleval``, ``strval`` and ``boolval``
881
+ function calls with according type casting operator.
882
+
883
+ *Risky rule: risky if any of the functions ``intval``, ``floatval``, ``doubleval``, ``strval`` or ``boolval`` are overridden.*
884
+
885
+ * **multiline_comment_opening_closing** [@PhpCsFixer]
886
+
887
+ DocBlocks must start with two asterisks, multiline comments must start
888
+ with a single asterisk, after the opening slash. Both must end with a
889
+ single asterisk before the closing slash.
890
+
891
+ * **multiline_whitespace_before_semicolons** [@PhpCsFixer]
892
+
893
+ Forbid multi-line whitespace before the closing semicolon or move the
894
+ semicolon to the new line for chained calls.
895
+
896
+ Configuration options:
897
+
898
+ - ``strategy`` (``'new_line_for_chained_calls'``, ``'no_multi_line'``): forbid
899
+ multi-line whitespace or move the semicolon to the new line for chained
900
+ calls; defaults to ``'no_multi_line'``
901
+
902
+ * **native_constant_invocation** [@Symfony:risky, @PhpCsFixer:risky]
903
+
904
+ Add leading ``\`` before constant invocation of internal constant to speed
905
+ up resolving. Constant name match is case-sensitive, except for ``null``,
906
+ ``false`` and ``true``.
907
+
908
+ *Risky rule: risky when any of the constants are namespaced or overridden.*
909
+
910
+ Configuration options:
911
+
912
+ - ``exclude`` (``array``): list of constants to ignore; defaults to ``['null',
913
+ 'false', 'true']``
914
+ - ``fix_built_in`` (``bool``): whether to fix constants returned by
915
+ ``get_defined_constants``. User constants are not accounted in this list
916
+ and must be specified in the include one; defaults to ``true``
917
+ - ``include`` (``array``): list of additional constants to fix; defaults to ``[]``
918
+ - ``scope`` (``'all'``, ``'namespaced'``): only fix constant invocations that are made
919
+ within a namespace or fix all; defaults to ``'all'``
920
+
921
+ * **native_function_casing** [@Symfony, @PhpCsFixer]
922
+
923
+ Function defined by PHP should be called using the correct casing.
924
+
925
+ * **native_function_invocation** [@Symfony:risky, @PhpCsFixer:risky]
926
+
927
+ Add leading ``\`` before function invocation to speed up resolving.
928
+
929
+ *Risky rule: risky when any of the functions are overridden.*
930
+
931
+ Configuration options:
932
+
933
+ - ``exclude`` (``array``): list of functions to ignore; defaults to ``[]``
934
+ - ``include`` (``array``): list of function names or sets to fix. Defined sets are
935
+ ``@internal`` (all native functions), ``@all`` (all global functions) and
936
+ ``@compiler_optimized`` (functions that are specially optimized by Zend);
937
+ defaults to ``['@internal']``
938
+ - ``scope`` (``'all'``, ``'namespaced'``): only fix function calls that are made
939
+ within a namespace or fix all; defaults to ``'all'``
940
+ - ``strict`` (``bool``): whether leading ``\`` of function call not meant to have it
941
+ should be removed; defaults to ``false``
942
+
943
+ * **native_function_type_declaration_casing** [@Symfony, @PhpCsFixer]
944
+
945
+ Native type hints for functions should use the correct case.
946
+
947
+ * **new_with_braces** [@Symfony, @PhpCsFixer]
948
+
949
+ All instances created with new keyword must be followed by braces.
950
+
951
+ * **no_alias_functions** [@Symfony:risky, @PhpCsFixer:risky]
952
+
953
+ Master functions shall be used instead of aliases.
954
+
955
+ *Risky rule: risky when any of the alias functions are overridden.*
956
+
957
+ Configuration options:
958
+
959
+ - ``sets`` (a subset of ``['@internal', '@IMAP', '@mbreg', '@all']``): list of
960
+ sets to fix. Defined sets are ``@internal`` (native functions), ``@IMAP``
961
+ (IMAP functions), ``@mbreg`` (from ``ext-mbstring``) ``@all`` (all listed
962
+ sets); defaults to ``['@internal', '@IMAP']``
963
+
964
+ * **no_alternative_syntax** [@PhpCsFixer]
965
+
966
+ Replace control structure alternative syntax to use braces.
967
+
968
+ * **no_binary_string** [@PhpCsFixer]
969
+
970
+ There should not be a binary flag before strings.
971
+
972
+ * **no_blank_lines_after_class_opening** [@Symfony, @PhpCsFixer]
973
+
974
+ There should be no empty lines after class opening brace.
975
+
976
+ * **no_blank_lines_after_phpdoc** [@Symfony, @PhpCsFixer]
977
+
978
+ There should not be blank lines between docblock and the documented
979
+ element.
980
+
981
+ * **no_blank_lines_before_namespace**
982
+
983
+ There should be no blank lines before a namespace declaration.
984
+
985
+ * **no_break_comment** [@PSR2, @Symfony, @PhpCsFixer]
986
+
987
+ There must be a comment when fall-through is intentional in a non-empty
988
+ case body.
989
+
990
+ Configuration options:
991
+
992
+ - ``comment_text`` (``string``): the text to use in the added comment and to
993
+ detect it; defaults to ``'no break'``
994
+
995
+ * **no_closing_tag** [@PSR2, @Symfony, @PhpCsFixer]
996
+
997
+ The closing ``?>`` tag MUST be omitted from files containing only PHP.
998
+
999
+ * **no_empty_comment** [@Symfony, @PhpCsFixer]
1000
+
1001
+ There should not be any empty comments.
1002
+
1003
+ * **no_empty_phpdoc** [@Symfony, @PhpCsFixer]
1004
+
1005
+ There should not be empty PHPDoc blocks.
1006
+
1007
+ * **no_empty_statement** [@Symfony, @PhpCsFixer]
1008
+
1009
+ Remove useless semicolon statements.
1010
+
1011
+ * **no_extra_blank_lines** [@Symfony, @PhpCsFixer]
1012
+
1013
+ Removes extra blank lines and/or blank lines following configuration.
1014
+
1015
+ Configuration options:
1016
+
1017
+ - ``tokens`` (a subset of ``['break', 'case', 'continue', 'curly_brace_block',
1018
+ 'default', 'extra', 'parenthesis_brace_block', 'return',
1019
+ 'square_brace_block', 'switch', 'throw', 'use', 'useTrait',
1020
+ 'use_trait']``): list of tokens to fix; defaults to ``['extra']``
1021
+
1022
+ * **no_extra_consecutive_blank_lines**
1023
+
1024
+ Removes extra blank lines and/or blank lines following configuration.
1025
+ DEPRECATED: use ``no_extra_blank_lines`` instead.
1026
+
1027
+ Configuration options:
1028
+
1029
+ - ``tokens`` (a subset of ``['break', 'case', 'continue', 'curly_brace_block',
1030
+ 'default', 'extra', 'parenthesis_brace_block', 'return',
1031
+ 'square_brace_block', 'switch', 'throw', 'use', 'useTrait',
1032
+ 'use_trait']``): list of tokens to fix; defaults to ``['extra']``
1033
+
1034
+ * **no_homoglyph_names** [@Symfony:risky, @PhpCsFixer:risky]
1035
+
1036
+ Replace accidental usage of homoglyphs (non ascii characters) in names.
1037
+
1038
+ *Risky rule: renames classes and cannot rename the files. You might have string references to renamed code (``$$name``).*
1039
+
1040
+ * **no_leading_import_slash** [@Symfony, @PhpCsFixer]
1041
+
1042
+ Remove leading slashes in ``use`` clauses.
1043
+
1044
+ * **no_leading_namespace_whitespace** [@Symfony, @PhpCsFixer]
1045
+
1046
+ The namespace declaration line shouldn't contain leading whitespace.
1047
+
1048
+ * **no_mixed_echo_print** [@Symfony, @PhpCsFixer]
1049
+
1050
+ Either language construct ``print`` or ``echo`` should be used.
1051
+
1052
+ Configuration options:
1053
+
1054
+ - ``use`` (``'echo'``, ``'print'``): the desired language construct; defaults to
1055
+ ``'echo'``
1056
+
1057
+ * **no_multiline_whitespace_around_double_arrow** [@Symfony, @PhpCsFixer]
1058
+
1059
+ Operator ``=>`` should not be surrounded by multi-line whitespaces.
1060
+
1061
+ * **no_multiline_whitespace_before_semicolons**
1062
+
1063
+ Multi-line whitespace before closing semicolon are prohibited.
1064
+ DEPRECATED: use ``multiline_whitespace_before_semicolons`` instead.
1065
+
1066
+ * **no_null_property_initialization** [@PhpCsFixer]
1067
+
1068
+ Properties MUST not be explicitly initialized with ``null``.
1069
+
1070
+ * **no_php4_constructor**
1071
+
1072
+ Convert PHP4-style constructors to ``__construct``.
1073
+
1074
+ *Risky rule: risky when old style constructor being fixed is overridden or overrides parent one.*
1075
+
1076
+ * **no_short_bool_cast** [@Symfony, @PhpCsFixer]
1077
+
1078
+ Short cast ``bool`` using double exclamation mark should not be used.
1079
+
1080
+ * **no_short_echo_tag** [@PhpCsFixer]
1081
+
1082
+ Replace short-echo ``<?=`` with long format ``<?php echo`` syntax.
1083
+
1084
+ * **no_singleline_whitespace_before_semicolons** [@Symfony, @PhpCsFixer]
1085
+
1086
+ Single-line whitespace before closing semicolon are prohibited.
1087
+
1088
+ * **no_spaces_after_function_name** [@PSR2, @Symfony, @PhpCsFixer]
1089
+
1090
+ When making a method or function call, there MUST NOT be a space between
1091
+ the method or function name and the opening parenthesis.
1092
+
1093
+ * **no_spaces_around_offset** [@Symfony, @PhpCsFixer]
1094
+
1095
+ There MUST NOT be spaces around offset braces.
1096
+
1097
+ Configuration options:
1098
+
1099
+ - ``positions`` (a subset of ``['inside', 'outside']``): whether spacing should be
1100
+ fixed inside and/or outside the offset braces; defaults to ``['inside',
1101
+ 'outside']``
1102
+
1103
+ * **no_spaces_inside_parenthesis** [@PSR2, @Symfony, @PhpCsFixer]
1104
+
1105
+ There MUST NOT be a space after the opening parenthesis. There MUST NOT
1106
+ be a space before the closing parenthesis.
1107
+
1108
+ * **no_superfluous_elseif** [@PhpCsFixer]
1109
+
1110
+ Replaces superfluous ``elseif`` with ``if``.
1111
+
1112
+ * **no_superfluous_phpdoc_tags**
1113
+
1114
+ Removes ``@param`` and ``@return`` tags that don't provide any useful
1115
+ information.
1116
+
1117
+ Configuration options:
1118
+
1119
+ - ``allow_mixed`` (``bool``): whether type ``mixed`` without description is allowed
1120
+ (``true``) or considered superfluous (``false``); defaults to ``false``
1121
+
1122
+ * **no_trailing_comma_in_list_call** [@Symfony, @PhpCsFixer]
1123
+
1124
+ Remove trailing commas in list function calls.
1125
+
1126
+ * **no_trailing_comma_in_singleline_array** [@Symfony, @PhpCsFixer]
1127
+
1128
+ PHP single-line arrays should not have trailing comma.
1129
+
1130
+ * **no_trailing_whitespace** [@PSR2, @Symfony, @PhpCsFixer]
1131
+
1132
+ Remove trailing whitespace at the end of non-blank lines.
1133
+
1134
+ * **no_trailing_whitespace_in_comment** [@PSR2, @Symfony, @PhpCsFixer]
1135
+
1136
+ There MUST be no trailing spaces inside comment or PHPDoc.
1137
+
1138
+ * **no_unneeded_control_parentheses** [@Symfony, @PhpCsFixer]
1139
+
1140
+ Removes unneeded parentheses around control statements.
1141
+
1142
+ Configuration options:
1143
+
1144
+ - ``statements`` (``array``): list of control statements to fix; defaults to
1145
+ ``['break', 'clone', 'continue', 'echo_print', 'return', 'switch_case',
1146
+ 'yield']``
1147
+
1148
+ * **no_unneeded_curly_braces** [@Symfony, @PhpCsFixer]
1149
+
1150
+ Removes unneeded curly braces that are superfluous and aren't part of a
1151
+ control structure's body.
1152
+
1153
+ * **no_unneeded_final_method** [@Symfony, @PhpCsFixer]
1154
+
1155
+ A final class must not have final methods.
1156
+
1157
+ * **no_unreachable_default_argument_value** [@PhpCsFixer:risky]
1158
+
1159
+ In function arguments there must not be arguments with default values
1160
+ before non-default ones.
1161
+
1162
+ *Risky rule: modifies the signature of functions; therefore risky when using systems (such as some Symfony components) that rely on those (for example through reflection).*
1163
+
1164
+ * **no_unset_cast** [@PhpCsFixer]
1165
+
1166
+ Variables must be set ``null`` instead of using ``(unset)`` casting.
1167
+
1168
+ * **no_unset_on_property** [@PhpCsFixer:risky]
1169
+
1170
+ Properties should be set to ``null`` instead of using ``unset``.
1171
+
1172
+ *Risky rule: changing variables to ``null`` instead of unsetting them will mean they still show up when looping over class variables.*
1173
+
1174
+ * **no_unused_imports** [@Symfony, @PhpCsFixer]
1175
+
1176
+ Unused ``use`` statements must be removed.
1177
+
1178
+ * **no_useless_else** [@PhpCsFixer]
1179
+
1180
+ There should not be useless ``else`` cases.
1181
+
1182
+ * **no_useless_return** [@PhpCsFixer]
1183
+
1184
+ There should not be an empty ``return`` statement at the end of a
1185
+ function.
1186
+
1187
+ * **no_whitespace_before_comma_in_array** [@Symfony, @PhpCsFixer]
1188
+
1189
+ In array declaration, there MUST NOT be a whitespace before each comma.
1190
+
1191
+ Configuration options:
1192
+
1193
+ - ``after_heredoc`` (``bool``): whether the whitespace between heredoc end and
1194
+ comma should be removed; defaults to ``false``
1195
+
1196
+ * **no_whitespace_in_blank_line** [@Symfony, @PhpCsFixer]
1197
+
1198
+ Remove trailing whitespace at the end of blank lines.
1199
+
1200
+ * **non_printable_character** [@Symfony:risky, @PhpCsFixer:risky, @PHP70Migration:risky, @PHP71Migration:risky]
1201
+
1202
+ Remove Zero-width space (ZWSP), Non-breaking space (NBSP) and other
1203
+ invisible unicode symbols.
1204
+
1205
+ *Risky rule: risky when strings contain intended invisible characters.*
1206
+
1207
+ Configuration options:
1208
+
1209
+ - ``use_escape_sequences_in_strings`` (``bool``): whether characters should be
1210
+ replaced with escape sequences in strings; defaults to ``false``
1211
+
1212
+ * **normalize_index_brace** [@Symfony, @PhpCsFixer]
1213
+
1214
+ Array index should always be written by using square braces.
1215
+
1216
+ * **not_operator_with_space**
1217
+
1218
+ Logical NOT operators (``!``) should have leading and trailing
1219
+ whitespaces.
1220
+
1221
+ * **not_operator_with_successor_space**
1222
+
1223
+ Logical NOT operators (``!``) should have one trailing whitespace.
1224
+
1225
+ * **object_operator_without_whitespace** [@Symfony, @PhpCsFixer]
1226
+
1227
+ There should not be space before or after object ``T_OBJECT_OPERATOR``
1228
+ ``->``.
1229
+
1230
+ * **ordered_class_elements** [@PhpCsFixer]
1231
+
1232
+ Orders the elements of classes/interfaces/traits.
1233
+
1234
+ Configuration options:
1235
+
1236
+ - ``order`` (a subset of ``['use_trait', 'public', 'protected', 'private',
1237
+ 'constant', 'constant_public', 'constant_protected',
1238
+ 'constant_private', 'property', 'property_static', 'property_public',
1239
+ 'property_protected', 'property_private', 'property_public_static',
1240
+ 'property_protected_static', 'property_private_static', 'method',
1241
+ 'method_static', 'method_public', 'method_protected', 'method_private',
1242
+ 'method_public_static', 'method_protected_static',
1243
+ 'method_private_static', 'construct', 'destruct', 'magic', 'phpunit']``):
1244
+ list of strings defining order of elements; defaults to ``['use_trait',
1245
+ 'constant_public', 'constant_protected', 'constant_private',
1246
+ 'property_public', 'property_protected', 'property_private',
1247
+ 'construct', 'destruct', 'magic', 'phpunit', 'method_public',
1248
+ 'method_protected', 'method_private']``
1249
+ - ``sortAlgorithm`` (``'alpha'``, ``'none'``): how multiple occurrences of same type
1250
+ statements should be sorted; defaults to ``'none'``
1251
+
1252
+ * **ordered_imports** [@PhpCsFixer]
1253
+
1254
+ Ordering ``use`` statements.
1255
+
1256
+ Configuration options:
1257
+
1258
+ - ``imports_order`` (``array``, ``null``): defines the order of import types; defaults
1259
+ to ``null``; DEPRECATED alias: ``importsOrder``
1260
+ - ``sort_algorithm`` (``'alpha'``, ``'length'``, ``'none'``): whether the statements
1261
+ should be sorted alphabetically or by length, or not sorted; defaults
1262
+ to ``'alpha'``; DEPRECATED alias: ``sortAlgorithm``
1263
+
1264
+ * **ordered_interfaces**
1265
+
1266
+ Orders the interfaces in an ``implements`` or ``interface extends`` clause.
1267
+
1268
+ *Risky rule: risky for ``implements`` when specifying both an interface and its parent interface, because PHP doesn't break on ``parent, child`` but does on ``child, parent``.*
1269
+
1270
+ Configuration options:
1271
+
1272
+ - ``direction`` (``'ascend'``, ``'descend'``): which direction the interfaces should
1273
+ be ordered; defaults to ``'ascend'``
1274
+ - ``order`` (``'alpha'``, ``'length'``): how the interfaces should be ordered;
1275
+ defaults to ``'alpha'``
1276
+
1277
+ * **php_unit_construct** [@Symfony:risky, @PhpCsFixer:risky]
1278
+
1279
+ PHPUnit assertion method calls like ``->assertSame(true, $foo)`` should be
1280
+ written with dedicated method like ``->assertTrue($foo)``.
1281
+
1282
+ *Risky rule: fixer could be risky if one is overriding PHPUnit's native methods.*
1283
+
1284
+ Configuration options:
1285
+
1286
+ - ``assertions`` (a subset of ``['assertSame', 'assertEquals',
1287
+ 'assertNotEquals', 'assertNotSame']``): list of assertion methods to fix;
1288
+ defaults to ``['assertEquals', 'assertSame', 'assertNotEquals',
1289
+ 'assertNotSame']``
1290
+
1291
+ * **php_unit_dedicate_assert** [@PHPUnit30Migration:risky, @PHPUnit32Migration:risky, @PHPUnit35Migration:risky, @PHPUnit43Migration:risky, @PHPUnit48Migration:risky, @PHPUnit50Migration:risky, @PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit55Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky, @PHPUnit75Migration:risky]
1292
+
1293
+ PHPUnit assertions like ``assertInternalType``, ``assertFileExists``, should
1294
+ be used over ``assertTrue``.
1295
+
1296
+ *Risky rule: fixer could be risky if one is overriding PHPUnit's native methods.*
1297
+
1298
+ Configuration options:
1299
+
1300
+ - ``functions`` (a subset of ``['array_key_exists', 'empty', 'file_exists',
1301
+ 'is_array', 'is_bool', 'is_callable', 'is_double', 'is_float',
1302
+ 'is_infinite', 'is_int', 'is_integer', 'is_long', 'is_nan', 'is_null',
1303
+ 'is_numeric', 'is_object', 'is_real', 'is_resource', 'is_scalar',
1304
+ 'is_string']``, ``null``): list of assertions to fix (overrides ``target``);
1305
+ defaults to ``null``. DEPRECATED: use option ``target`` instead
1306
+ - ``target`` (``'3.0'``, ``'3.5'``, ``'5.0'``, ``'5.6'``, ``'newest'``): target version of
1307
+ PHPUnit; defaults to ``'5.0'``
1308
+
1309
+ * **php_unit_dedicate_assert_internal_type** [@PHPUnit75Migration:risky]
1310
+
1311
+ PHPUnit assertions like ``assertIsArray`` should be used over
1312
+ ``assertInternalType``.
1313
+
1314
+ *Risky rule: risky when PHPUnit methods are overridden or when project has PHPUnit incompatibilities.*
1315
+
1316
+ Configuration options:
1317
+
1318
+ - ``target`` (``'7.5'``, ``'newest'``): target version of PHPUnit; defaults to
1319
+ ``'newest'``
1320
+
1321
+ * **php_unit_expectation** [@PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit55Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky, @PHPUnit75Migration:risky]
1322
+
1323
+ Usages of ``->setExpectedException*`` methods MUST be replaced by
1324
+ ``->expectException*`` methods.
1325
+
1326
+ *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
1327
+
1328
+ Configuration options:
1329
+
1330
+ - ``target`` (``'5.2'``, ``'5.6'``, ``'newest'``): target version of PHPUnit; defaults to
1331
+ ``'newest'``
1332
+
1333
+ * **php_unit_fqcn_annotation** [@Symfony, @PhpCsFixer]
1334
+
1335
+ PHPUnit annotations should be a FQCNs including a root namespace.
1336
+
1337
+ * **php_unit_internal_class** [@PhpCsFixer]
1338
+
1339
+ All PHPUnit test classes should be marked as internal.
1340
+
1341
+ Configuration options:
1342
+
1343
+ - ``types`` (a subset of ``['normal', 'final', 'abstract']``): what types of
1344
+ classes to mark as internal; defaults to ``['normal', 'final']``
1345
+
1346
+ * **php_unit_method_casing** [@PhpCsFixer]
1347
+
1348
+ Enforce camel (or snake) case for PHPUnit test methods, following
1349
+ configuration.
1350
+
1351
+ Configuration options:
1352
+
1353
+ - ``case`` (``'camel_case'``, ``'snake_case'``): apply camel or snake case to test
1354
+ methods; defaults to ``'camel_case'``
1355
+
1356
+ * **php_unit_mock** [@PHPUnit54Migration:risky, @PHPUnit55Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky, @PHPUnit75Migration:risky]
1357
+
1358
+ Usages of ``->getMock`` and
1359
+ ``->getMockWithoutInvokingTheOriginalConstructor`` methods MUST be
1360
+ replaced by ``->createMock`` or ``->createPartialMock`` methods.
1361
+
1362
+ *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
1363
+
1364
+ Configuration options:
1365
+
1366
+ - ``target`` (``'5.4'``, ``'5.5'``, ``'newest'``): target version of PHPUnit; defaults to
1367
+ ``'newest'``
1368
+
1369
+ * **php_unit_mock_short_will_return** [@Symfony:risky, @PhpCsFixer:risky]
1370
+
1371
+ Usage of PHPUnit's mock e.g. ``->will($this->returnValue(..))`` must be
1372
+ replaced by its shorter equivalent such as ``->willReturn(...)``.
1373
+
1374
+ *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
1375
+
1376
+ * **php_unit_namespaced** [@PHPUnit48Migration:risky, @PHPUnit50Migration:risky, @PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit55Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky, @PHPUnit75Migration:risky]
1377
+
1378
+ PHPUnit classes MUST be used in namespaced version, e.g.
1379
+ ``\PHPUnit\Framework\TestCase`` instead of ``\PHPUnit_Framework_TestCase``.
1380
+
1381
+ *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
1382
+
1383
+ Configuration options:
1384
+
1385
+ - ``target`` (``'4.8'``, ``'5.7'``, ``'6.0'``, ``'newest'``): target version of PHPUnit;
1386
+ defaults to ``'newest'``
1387
+
1388
+ * **php_unit_no_expectation_annotation** [@PHPUnit32Migration:risky, @PHPUnit35Migration:risky, @PHPUnit43Migration:risky, @PHPUnit48Migration:risky, @PHPUnit50Migration:risky, @PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit55Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky, @PHPUnit75Migration:risky]
1389
+
1390
+ Usages of ``@expectedException*`` annotations MUST be replaced by
1391
+ ``->setExpectedException*`` methods.
1392
+
1393
+ *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
1394
+
1395
+ Configuration options:
1396
+
1397
+ - ``target`` (``'3.2'``, ``'4.3'``, ``'newest'``): target version of PHPUnit; defaults to
1398
+ ``'newest'``
1399
+ - ``use_class_const`` (``bool``): use ::class notation; defaults to ``true``
1400
+
1401
+ * **php_unit_ordered_covers** [@PhpCsFixer]
1402
+
1403
+ Order ``@covers`` annotation of PHPUnit tests.
1404
+
1405
+ * **php_unit_set_up_tear_down_visibility** [@PhpCsFixer:risky]
1406
+
1407
+ Changes the visibility of the ``setUp()`` and ``tearDown()`` functions of
1408
+ PHPUnit to ``protected``, to match the PHPUnit TestCase.
1409
+
1410
+ *Risky rule: this fixer may change functions named ``setUp()`` or ``tearDown()`` outside of PHPUnit tests, when a class is wrongly seen as a PHPUnit test.*
1411
+
1412
+ * **php_unit_size_class**
1413
+
1414
+ All PHPUnit test cases should have ``@small``, ``@medium`` or ``@large``
1415
+ annotation to enable run time limits.
1416
+
1417
+ Configuration options:
1418
+
1419
+ - ``group`` (``'large'``, ``'medium'``, ``'small'``): define a specific group to be used
1420
+ in case no group is already in use; defaults to ``'small'``
1421
+
1422
+ * **php_unit_strict** [@PhpCsFixer:risky]
1423
+
1424
+ PHPUnit methods like ``assertSame`` should be used instead of
1425
+ ``assertEquals``.
1426
+
1427
+ *Risky rule: risky when any of the functions are overridden or when testing object equality.*
1428
+
1429
+ Configuration options:
1430
+
1431
+ - ``assertions`` (a subset of ``['assertAttributeEquals',
1432
+ 'assertAttributeNotEquals', 'assertEquals', 'assertNotEquals']``): list
1433
+ of assertion methods to fix; defaults to ``['assertAttributeEquals',
1434
+ 'assertAttributeNotEquals', 'assertEquals', 'assertNotEquals']``
1435
+
1436
+ * **php_unit_test_annotation** [@PhpCsFixer:risky]
1437
+
1438
+ Adds or removes @test annotations from tests, following configuration.
1439
+
1440
+ *Risky rule: this fixer may change the name of your tests, and could cause incompatibility with abstract classes or interfaces.*
1441
+
1442
+ Configuration options:
1443
+
1444
+ - ``case`` (``'camel'``, ``'snake'``): whether to camel or snake case when adding the
1445
+ test prefix; defaults to ``'camel'``. DEPRECATED: use
1446
+ ``php_unit_method_casing`` fixer instead
1447
+ - ``style`` (``'annotation'``, ``'prefix'``): whether to use the @test annotation or
1448
+ not; defaults to ``'prefix'``
1449
+
1450
+ * **php_unit_test_case_static_method_calls** [@PhpCsFixer:risky]
1451
+
1452
+ Calls to ``PHPUnit\Framework\TestCase`` static methods must all be of the
1453
+ same type, either ``$this->``, ``self::`` or ``static::``.
1454
+
1455
+ *Risky rule: risky when PHPUnit methods are overridden or not accessible, or when project has PHPUnit incompatibilities.*
1456
+
1457
+ Configuration options:
1458
+
1459
+ - ``call_type`` (``'self'``, ``'static'``, ``'this'``): the call type to use for referring
1460
+ to PHPUnit methods; defaults to ``'static'``
1461
+ - ``methods`` (``array``): dictionary of ``method`` => ``call_type`` values that
1462
+ differ from the default strategy; defaults to ``[]``
1463
+
1464
+ * **php_unit_test_class_requires_covers** [@PhpCsFixer]
1465
+
1466
+ Adds a default ``@coversNothing`` annotation to PHPUnit test classes that
1467
+ have no ``@covers*`` annotation.
1468
+
1469
+ * **phpdoc_add_missing_param_annotation** [@PhpCsFixer]
1470
+
1471
+ PHPDoc should contain ``@param`` for all params.
1472
+
1473
+ Configuration options:
1474
+
1475
+ - ``only_untyped`` (``bool``): whether to add missing ``@param`` annotations for
1476
+ untyped parameters only; defaults to ``true``
1477
+
1478
+ * **phpdoc_align** [@Symfony, @PhpCsFixer]
1479
+
1480
+ All items of the given phpdoc tags must be either left-aligned or (by
1481
+ default) aligned vertically.
1482
+
1483
+ Configuration options:
1484
+
1485
+ - ``align`` (``'left'``, ``'vertical'``): align comments; defaults to ``'vertical'``
1486
+ - ``tags`` (a subset of ``['param', 'property', 'return', 'throws', 'type',
1487
+ 'var', 'method']``): the tags that should be aligned; defaults to
1488
+ ``['param', 'return', 'throws', 'type', 'var']``
1489
+
1490
+ * **phpdoc_annotation_without_dot** [@Symfony, @PhpCsFixer]
1491
+
1492
+ PHPDoc annotation descriptions should not be a sentence.
1493
+
1494
+ * **phpdoc_indent** [@Symfony, @PhpCsFixer]
1495
+
1496
+ Docblocks should have the same indentation as the documented subject.
1497
+
1498
+ * **phpdoc_inline_tag** [@Symfony, @PhpCsFixer]
1499
+
1500
+ Fix PHPDoc inline tags, make ``@inheritdoc`` always inline.
1501
+
1502
+ * **phpdoc_no_access** [@Symfony, @PhpCsFixer]
1503
+
1504
+ ``@access`` annotations should be omitted from PHPDoc.
1505
+
1506
+ * **phpdoc_no_alias_tag** [@Symfony, @PhpCsFixer]
1507
+
1508
+ No alias PHPDoc tags should be used.
1509
+
1510
+ Configuration options:
1511
+
1512
+ - ``replacements`` (``array``): mapping between replaced annotations with new
1513
+ ones; defaults to ``['property-read' => 'property', 'property-write' =>
1514
+ 'property', 'type' => 'var', 'link' => 'see']``
1515
+
1516
+ * **phpdoc_no_empty_return** [@Symfony, @PhpCsFixer]
1517
+
1518
+ ``@return void`` and ``@return null`` annotations should be omitted from
1519
+ PHPDoc.
1520
+
1521
+ * **phpdoc_no_package** [@Symfony, @PhpCsFixer]
1522
+
1523
+ ``@package`` and ``@subpackage`` annotations should be omitted from PHPDoc.
1524
+
1525
+ * **phpdoc_no_useless_inheritdoc** [@Symfony, @PhpCsFixer]
1526
+
1527
+ Classy that does not inherit must not have ``@inheritdoc`` tags.
1528
+
1529
+ * **phpdoc_order** [@PhpCsFixer]
1530
+
1531
+ Annotations in PHPDoc should be ordered so that ``@param`` annotations
1532
+ come first, then ``@throws`` annotations, then ``@return`` annotations.
1533
+
1534
+ * **phpdoc_return_self_reference** [@Symfony, @PhpCsFixer]
1535
+
1536
+ The type of ``@return`` annotations of methods returning a reference to
1537
+ itself must the configured one.
1538
+
1539
+ Configuration options:
1540
+
1541
+ - ``replacements`` (``array``): mapping between replaced return types with new
1542
+ ones; defaults to ``['this' => '$this', '@this' => '$this', '$self' =>
1543
+ 'self', '@self' => 'self', '$static' => 'static', '@static' =>
1544
+ 'static']``
1545
+
1546
+ * **phpdoc_scalar** [@Symfony, @PhpCsFixer]
1547
+
1548
+ Scalar types should always be written in the same form. ``int`` not
1549
+ ``integer``, ``bool`` not ``boolean``, ``float`` not ``real`` or ``double``.
1550
+
1551
+ Configuration options:
1552
+
1553
+ - ``types`` (a subset of ``['boolean', 'callback', 'double', 'integer', 'real',
1554
+ 'str']``): a map of types to fix; defaults to ``['boolean', 'double',
1555
+ 'integer', 'real', 'str']``
1556
+
1557
+ * **phpdoc_separation** [@Symfony, @PhpCsFixer]
1558
+
1559
+ Annotations in PHPDoc should be grouped together so that annotations of
1560
+ the same type immediately follow each other, and annotations of a
1561
+ different type are separated by a single blank line.
1562
+
1563
+ * **phpdoc_single_line_var_spacing** [@Symfony, @PhpCsFixer]
1564
+
1565
+ Single line ``@var`` PHPDoc should have proper spacing.
1566
+
1567
+ * **phpdoc_summary** [@Symfony, @PhpCsFixer]
1568
+
1569
+ PHPDoc summary should end in either a full stop, exclamation mark, or
1570
+ question mark.
1571
+
1572
+ * **phpdoc_to_comment** [@Symfony, @PhpCsFixer]
1573
+
1574
+ Docblocks should only be used on structural elements.
1575
+
1576
+ * **phpdoc_to_return_type**
1577
+
1578
+ EXPERIMENTAL: Takes ``@return`` annotation of non-mixed types and adjusts
1579
+ accordingly the function signature. Requires PHP >= 7.0.
1580
+
1581
+ *Risky rule: [1] This rule is EXPERIMENTAL and is not covered with backward compatibility promise. [2] ``@return`` annotation is mandatory for the fixer to make changes, signatures of methods without it (no docblock, inheritdocs) will not be fixed. [3] Manual actions are required if inherited signatures are not properly documented. [4] ``@inheritdocs`` support is under construction.*
1582
+
1583
+ Configuration options:
1584
+
1585
+ - ``scalar_types`` (``bool``): fix also scalar types; may have unexpected
1586
+ behaviour due to PHP bad type coercion system; defaults to ``true``
1587
+
1588
+ * **phpdoc_trim** [@Symfony, @PhpCsFixer]
1589
+
1590
+ PHPDoc should start and end with content, excluding the very first and
1591
+ last line of the docblocks.
1592
+
1593
+ * **phpdoc_trim_consecutive_blank_line_separation** [@PhpCsFixer]
1594
+
1595
+ Removes extra blank lines after summary and after description in PHPDoc.
1596
+
1597
+ * **phpdoc_types** [@Symfony, @PhpCsFixer]
1598
+
1599
+ The correct case must be used for standard PHP types in PHPDoc.
1600
+
1601
+ Configuration options:
1602
+
1603
+ - ``groups`` (a subset of ``['simple', 'alias', 'meta']``): type groups to fix;
1604
+ defaults to ``['simple', 'alias', 'meta']``
1605
+
1606
+ * **phpdoc_types_order** [@Symfony, @PhpCsFixer]
1607
+
1608
+ Sorts PHPDoc types.
1609
+
1610
+ Configuration options:
1611
+
1612
+ - ``null_adjustment`` (``'always_first'``, ``'always_last'``, ``'none'``): forces the
1613
+ position of ``null`` (overrides ``sort_algorithm``); defaults to
1614
+ ``'always_first'``
1615
+ - ``sort_algorithm`` (``'alpha'``, ``'none'``): the sorting algorithm to apply;
1616
+ defaults to ``'alpha'``
1617
+
1618
+ * **phpdoc_var_annotation_correct_order** [@PhpCsFixer]
1619
+
1620
+ ``@var`` and ``@type`` annotations must have type and name in the correct
1621
+ order.
1622
+
1623
+ * **phpdoc_var_without_name** [@Symfony, @PhpCsFixer]
1624
+
1625
+ ``@var`` and ``@type`` annotations should not contain the variable name.
1626
+
1627
+ * **pow_to_exponentiation** [@PHP56Migration:risky, @PHP70Migration:risky, @PHP71Migration:risky]
1628
+
1629
+ Converts ``pow`` to the ``**`` operator.
1630
+
1631
+ *Risky rule: risky when the function ``pow`` is overridden.*
1632
+
1633
+ * **pre_increment**
1634
+
1635
+ Pre incrementation/decrementation should be used if possible.
1636
+ DEPRECATED: use ``increment_style`` instead.
1637
+
1638
+ * **protected_to_private** [@Symfony, @PhpCsFixer]
1639
+
1640
+ Converts ``protected`` variables and methods to ``private`` where possible.
1641
+
1642
+ * **psr0**
1643
+
1644
+ Classes must be in a path that matches their namespace, be at least one
1645
+ namespace deep and the class name should match the file name.
1646
+
1647
+ *Risky rule: this fixer may change your class name, which will break the code that depends on the old name.*
1648
+
1649
+ Configuration options:
1650
+
1651
+ - ``dir`` (``string``): the directory where the project code is placed; defaults
1652
+ to ``''``
1653
+
1654
+ * **psr4** [@Symfony:risky, @PhpCsFixer:risky]
1655
+
1656
+ Class names should match the file name.
1657
+
1658
+ *Risky rule: this fixer may change your class name, which will break the code that depends on the old name.*
1659
+
1660
+ * **random_api_migration** [@PHP70Migration:risky, @PHP71Migration:risky]
1661
+
1662
+ Replaces ``rand``, ``srand``, ``getrandmax`` functions calls with their ``mt_*``
1663
+ analogs.
1664
+
1665
+ *Risky rule: risky when the configured functions are overridden.*
1666
+
1667
+ Configuration options:
1668
+
1669
+ - ``replacements`` (``array``): mapping between replaced functions with the new
1670
+ ones; defaults to ``['getrandmax' => 'mt_getrandmax', 'rand' =>
1671
+ 'mt_rand', 'srand' => 'mt_srand']``
1672
+
1673
+ * **return_assignment** [@PhpCsFixer]
1674
+
1675
+ Local, dynamic and directly referenced variables should not be assigned
1676
+ and directly returned by a function or method.
1677
+
1678
+ * **return_type_declaration** [@Symfony, @PhpCsFixer]
1679
+
1680
+ There should be one or no space before colon, and one space after it in
1681
+ return type declarations, according to configuration.
1682
+
1683
+ Configuration options:
1684
+
1685
+ - ``space_before`` (``'none'``, ``'one'``): spacing to apply before colon; defaults to
1686
+ ``'none'``
1687
+
1688
+ * **self_accessor** [@Symfony:risky, @PhpCsFixer:risky]
1689
+
1690
+ Inside class or interface element ``self`` should be preferred to the
1691
+ class name itself.
1692
+
1693
+ *Risky rule: risky when using dynamic calls like get_called_class() or late static binding.*
1694
+
1695
+ * **semicolon_after_instruction** [@Symfony, @PhpCsFixer]
1696
+
1697
+ Instructions must be terminated with a semicolon.
1698
+
1699
+ * **set_type_to_cast** [@Symfony:risky, @PhpCsFixer:risky]
1700
+
1701
+ Cast shall be used, not ``settype``.
1702
+
1703
+ *Risky rule: risky when the ``settype`` function is overridden or when used as the 2nd or 3rd expression in a ``for`` loop .*
1704
+
1705
+ * **short_scalar_cast** [@Symfony, @PhpCsFixer]
1706
+
1707
+ Cast ``(boolean)`` and ``(integer)`` should be written as ``(bool)`` and
1708
+ ``(int)``, ``(double)`` and ``(real)`` as ``(float)``, ``(binary)`` as
1709
+ ``(string)``.
1710
+
1711
+ * **silenced_deprecation_error**
1712
+
1713
+ Ensures deprecation notices are silenced. DEPRECATED: use
1714
+ ``error_suppression`` instead.
1715
+
1716
+ *Risky rule: silencing of deprecation errors might cause changes to code behaviour.*
1717
+
1718
+ * **simple_to_complex_string_variable** [@PhpCsFixer]
1719
+
1720
+ Converts explicit variables in double-quoted strings and heredoc syntax
1721
+ from simple to complex format (``${`` to ``{$``).
1722
+
1723
+ * **simplified_null_return**
1724
+
1725
+ A return statement wishing to return ``void`` should not return ``null``.
1726
+
1727
+ * **single_blank_line_at_eof** [@PSR2, @Symfony, @PhpCsFixer]
1728
+
1729
+ A PHP file without end tag must always end with a single empty line
1730
+ feed.
1731
+
1732
+ * **single_blank_line_before_namespace** [@Symfony, @PhpCsFixer]
1733
+
1734
+ There should be exactly one blank line before a namespace declaration.
1735
+
1736
+ * **single_class_element_per_statement** [@PSR2, @Symfony, @PhpCsFixer]
1737
+
1738
+ There MUST NOT be more than one property or constant declared per
1739
+ statement.
1740
+
1741
+ Configuration options:
1742
+
1743
+ - ``elements`` (a subset of ``['const', 'property']``): list of strings which
1744
+ element should be modified; defaults to ``['const', 'property']``
1745
+
1746
+ * **single_import_per_statement** [@PSR2, @Symfony, @PhpCsFixer]
1747
+
1748
+ There MUST be one use keyword per declaration.
1749
+
1750
+ * **single_line_after_imports** [@PSR2, @Symfony, @PhpCsFixer]
1751
+
1752
+ Each namespace use MUST go on its own line and there MUST be one blank
1753
+ line after the use statements block.
1754
+
1755
+ * **single_line_comment_style** [@Symfony, @PhpCsFixer]
1756
+
1757
+ Single-line comments and multi-line comments with only one line of
1758
+ actual content should use the ``//`` syntax.
1759
+
1760
+ Configuration options:
1761
+
1762
+ - ``comment_types`` (a subset of ``['asterisk', 'hash']``): list of comment types
1763
+ to fix; defaults to ``['asterisk', 'hash']``
1764
+
1765
+ * **single_quote** [@Symfony, @PhpCsFixer]
1766
+
1767
+ Convert double quotes to single quotes for simple strings.
1768
+
1769
+ Configuration options:
1770
+
1771
+ - ``strings_containing_single_quote_chars`` (``bool``): whether to fix
1772
+ double-quoted strings that contains single-quotes; defaults to ``false``
1773
+
1774
+ * **single_trait_insert_per_statement** [@Symfony, @PhpCsFixer]
1775
+
1776
+ Each trait ``use`` must be done as single statement.
1777
+
1778
+ * **space_after_semicolon** [@Symfony, @PhpCsFixer]
1779
+
1780
+ Fix whitespace after a semicolon.
1781
+
1782
+ Configuration options:
1783
+
1784
+ - ``remove_in_empty_for_expressions`` (``bool``): whether spaces should be removed
1785
+ for empty ``for`` expressions; defaults to ``false``
1786
+
1787
+ * **standardize_increment** [@Symfony, @PhpCsFixer]
1788
+
1789
+ Increment and decrement operators should be used if possible.
1790
+
1791
+ * **standardize_not_equals** [@Symfony, @PhpCsFixer]
1792
+
1793
+ Replace all ``<>`` with ``!=``.
1794
+
1795
+ * **static_lambda**
1796
+
1797
+ Lambdas not (indirect) referencing ``$this`` must be declared ``static``.
1798
+
1799
+ *Risky rule: risky when using "->bindTo" on lambdas without referencing to ``$this``.*
1800
+
1801
+ * **strict_comparison** [@PhpCsFixer:risky]
1802
+
1803
+ Comparisons should be strict.
1804
+
1805
+ *Risky rule: changing comparisons to strict might change code behavior.*
1806
+
1807
+ * **strict_param** [@PhpCsFixer:risky]
1808
+
1809
+ Functions should be used with ``$strict`` param set to ``true``.
1810
+
1811
+ *Risky rule: risky when the fixed function is overridden or if the code relies on non-strict usage.*
1812
+
1813
+ * **string_line_ending** [@PhpCsFixer:risky]
1814
+
1815
+ All multi-line strings must use correct line ending.
1816
+
1817
+ *Risky rule: changing the line endings of multi-line strings might affect string comparisons and outputs.*
1818
+
1819
+ * **switch_case_semicolon_to_colon** [@PSR2, @Symfony, @PhpCsFixer]
1820
+
1821
+ A case should be followed by a colon and not a semicolon.
1822
+
1823
+ * **switch_case_space** [@PSR2, @Symfony, @PhpCsFixer]
1824
+
1825
+ Removes extra spaces between colon and case value.
1826
+
1827
+ * **ternary_operator_spaces** [@Symfony, @PhpCsFixer]
1828
+
1829
+ Standardize spaces around ternary operator.
1830
+
1831
+ * **ternary_to_null_coalescing** [@PHP70Migration, @PHP71Migration, @PHP73Migration]
1832
+
1833
+ Use ``null`` coalescing operator ``??`` where possible. Requires PHP >= 7.0.
1834
+
1835
+ * **trailing_comma_in_multiline_array** [@Symfony, @PhpCsFixer]
1836
+
1837
+ PHP multi-line arrays should have a trailing comma.
1838
+
1839
+ Configuration options:
1840
+
1841
+ - ``after_heredoc`` (``bool``): whether a trailing comma should also be placed
1842
+ after heredoc end; defaults to ``false``
1843
+
1844
+ * **trim_array_spaces** [@Symfony, @PhpCsFixer]
1845
+
1846
+ Arrays should be formatted like function/method arguments, without
1847
+ leading or trailing single line space.
1848
+
1849
+ * **unary_operator_spaces** [@Symfony, @PhpCsFixer]
1850
+
1851
+ Unary operators should be placed adjacent to their operands.
1852
+
1853
+ * **visibility_required** [@PSR2, @Symfony, @PhpCsFixer, @PHP71Migration, @PHP73Migration]
1854
+
1855
+ Visibility MUST be declared on all properties and methods; ``abstract``
1856
+ and ``final`` MUST be declared before the visibility; ``static`` MUST be
1857
+ declared after the visibility.
1858
+
1859
+ Configuration options:
1860
+
1861
+ - ``elements`` (a subset of ``['property', 'method', 'const']``): the structural
1862
+ elements to fix (PHP >= 7.1 required for ``const``); defaults to
1863
+ ``['property', 'method']``
1864
+
1865
+ * **void_return** [@PHP71Migration:risky]
1866
+
1867
+ Add void return type to functions with missing or empty return
1868
+ statements, but priority is given to ``@return`` annotations. Requires
1869
+ PHP >= 7.1.
1870
+
1871
+ *Risky rule: modifies the signature of functions.*
1872
+
1873
+ * **whitespace_after_comma_in_array** [@Symfony, @PhpCsFixer]
1874
+
1875
+ In array declaration, there MUST be a whitespace after each comma.
1876
+
1877
+ * **yoda_style** [@Symfony, @PhpCsFixer]
1878
+
1879
+ Write conditions in Yoda style (``true``), non-Yoda style (``false``) or
1880
+ ignore those conditions (``null``) based on configuration.
1881
+
1882
+ Configuration options:
1883
+
1884
+ - ``always_move_variable`` (``bool``): whether variables should always be on non
1885
+ assignable side when applying Yoda style; defaults to ``false``
1886
+ - ``equal`` (``bool``, ``null``): style for equal (``==``, ``!=``) statements; defaults to
1887
+ ``true``
1888
+ - ``identical`` (``bool``, ``null``): style for identical (``===``, ``!==``) statements;
1889
+ defaults to ``true``
1890
+ - ``less_and_greater`` (``bool``, ``null``): style for less and greater than (``<``,
1891
+ ``<=``, ``>``, ``>=``) statements; defaults to ``null``
1892
+
1893
+
1894
+ The ``--dry-run`` option displays the files that need to be
1895
+ fixed but without actually modifying them:
1896
+
1897
+ .. code-block:: bash
1898
+
1899
+ $ php php-cs-fixer.phar fix /path/to/code --dry-run
1900
+
1901
+ Config file
1902
+ -----------
1903
+
1904
+ Instead of using command line options to customize the rule, you can save the
1905
+ project configuration in a ``.php_cs.dist`` file in the root directory of your project.
1906
+ The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.3/src/ConfigInterface.php>`_
1907
+ which lets you configure the rules, the files and directories that
1908
+ need to be analyzed. You may also create ``.php_cs`` file, which is
1909
+ the local configuration that will be used instead of the project configuration. It
1910
+ is a good practice to add that file into your ``.gitignore`` file.
1911
+ With the ``--config`` option you can specify the path to the
1912
+ ``.php_cs`` file.
1913
+
1914
+ The example below will add two rules to the default list of PSR2 set rules:
1915
+
1916
+ .. code-block:: php
1917
+
1918
+ <?php
1919
+
1920
+ $finder = PhpCsFixer\Finder::create()
1921
+ ->exclude('somedir')
1922
+ ->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
1923
+ ->in(__DIR__)
1924
+ ;
1925
+
1926
+ return PhpCsFixer\Config::create()
1927
+ ->setRules([
1928
+ '@PSR2' => true,
1929
+ 'strict_param' => true,
1930
+ 'array_syntax' => ['syntax' => 'short'],
1931
+ ])
1932
+ ->setFinder($finder)
1933
+ ;
1934
+
1935
+ **NOTE**: ``exclude`` will work only for directories, so if you need to exclude file, try ``notPath``.
1936
+
1937
+ See `Symfony\\Finder <https://symfony.com/doc/current/components/finder.html>`_
1938
+ online documentation for other `Finder` methods.
1939
+
1940
+ You may also use a blacklist for the rules instead of the above shown whitelist approach.
1941
+ The following example shows how to use all ``Symfony`` rules but the ``full_opening_tag`` rule.
1942
+
1943
+ .. code-block:: php
1944
+
1945
+ <?php
1946
+
1947
+ $finder = PhpCsFixer\Finder::create()
1948
+ ->exclude('somedir')
1949
+ ->in(__DIR__)
1950
+ ;
1951
+
1952
+ return PhpCsFixer\Config::create()
1953
+ ->setRules([
1954
+ '@Symfony' => true,
1955
+ 'full_opening_tag' => false,
1956
+ ])
1957
+ ->setFinder($finder)
1958
+ ;
1959
+
1960
+ You may want to use non-linux whitespaces in your project. Then you need to
1961
+ configure them in your config file.
1962
+
1963
+ .. code-block:: php
1964
+
1965
+ <?php
1966
+
1967
+ return PhpCsFixer\Config::create()
1968
+ ->setIndent("\t")
1969
+ ->setLineEnding("\r\n")
1970
+ ;
1971
+
1972
+ By using ``--using-cache`` option with ``yes`` or ``no`` you can set if the caching
1973
+ mechanism should be used.
1974
+
1975
+ Caching
1976
+ -------
1977
+
1978
+ The caching mechanism is enabled by default. This will speed up further runs by
1979
+ fixing only files that were modified since the last run. The tool will fix all
1980
+ files if the tool version has changed or the list of rules has changed.
1981
+ Cache is supported only for tool downloaded as phar file or installed via
1982
+ composer.
1983
+
1984
+ Cache can be disabled via ``--using-cache`` option or config file:
1985
+
1986
+ .. code-block:: php
1987
+
1988
+ <?php
1989
+
1990
+ return PhpCsFixer\Config::create()
1991
+ ->setUsingCache(false)
1992
+ ;
1993
+
1994
+ Cache file can be specified via ``--cache-file`` option or config file:
1995
+
1996
+ .. code-block:: php
1997
+
1998
+ <?php
1999
+
2000
+ return PhpCsFixer\Config::create()
2001
+ ->setCacheFile(__DIR__.'/.php_cs.cache')
2002
+ ;
2003
+
2004
+ Using PHP CS Fixer on CI
2005
+ ------------------------
2006
+
2007
+ Require ``friendsofphp/php-cs-fixer`` as a ``dev`` dependency:
2008
+
2009
+ .. code-block:: bash
2010
+
2011
+ $ ./composer.phar require --dev friendsofphp/php-cs-fixer
2012
+
2013
+ Then, add the following command to your CI:
2014
+
2015
+ .. code-block:: bash
2016
+
2017
+ $ IFS='
2018
+ $ '
2019
+ $ CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB "${COMMIT_RANGE}")
2020
+ $ if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php_cs(\\.dist)?|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${CHANGED_FILES}"); else EXTRA_ARGS=''; fi
2021
+ $ vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no ${EXTRA_ARGS}
2022
+
2023
+ Where ``$COMMIT_RANGE`` is your range of commits, e.g. ``$TRAVIS_COMMIT_RANGE`` or ``HEAD~..HEAD``.
2024
+
2025
+ Exit code
2026
+ ---------
2027
+
2028
+ Exit code is built using following bit flags:
2029
+
2030
+ * 0 - OK.
2031
+ * 1 - General error (or PHP minimal requirement not matched).
2032
+ * 4 - Some files have invalid syntax (only in dry-run mode).
2033
+ * 8 - Some files need fixing (only in dry-run mode).
2034
+ * 16 - Configuration error of the application.
2035
+ * 32 - Configuration error of a Fixer.
2036
+ * 64 - Exception raised within the application.
2037
+
2038
+ (Applies to exit code of the `fix` command only)
2039
+
2040
+ Helpers
2041
+ -------
2042
+
2043
+ Dedicated plugins exist for:
2044
+
2045
+ * `Atom`_
2046
+ * `NetBeans`_
2047
+ * `PhpStorm`_
2048
+ * `Sublime Text`_
2049
+ * `Vim`_
2050
+ * `VS Code`_
2051
+
2052
+ Contribute
2053
+ ----------
2054
+
2055
+ The tool comes with quite a few built-in fixers, but everyone is more than
2056
+ welcome to `contribute`_ more of them.
2057
+
2058
+ Fixers
2059
+ ~~~~~~
2060
+
2061
+ A *fixer* is a class that tries to fix one CS issue (a ``Fixer`` class must
2062
+ implement ``FixerInterface``).
2063
+
2064
+ Configs
2065
+ ~~~~~~~
2066
+
2067
+ A *config* knows about the CS rules and the files and directories that must be
2068
+ scanned by the tool when run in the directory of your project. It is useful for
2069
+ projects that follow a well-known directory structures (like for Symfony
2070
+ projects for instance).
2071
+
2072
+ .. _php-cs-fixer.phar: https://cs.symfony.com/download/php-cs-fixer-v2.phar
2073
+ .. _Atom: https://github.com/Glavin001/atom-beautify
2074
+ .. _NetBeans: http://plugins.netbeans.org/plugin/49042/php-cs-fixer
2075
+ .. _PhpStorm: https://medium.com/@valeryan/how-to-configure-phpstorm-to-use-php-cs-fixer-1844991e521f
2076
+ .. _Sublime Text: https://github.com/benmatselby/sublime-phpcs
2077
+ .. _Vim: https://github.com/stephpy/vim-php-cs-fixer
2078
+ .. _VS Code: https://github.com/junstyle/vscode-php-cs-fixer
2079
+ .. _contribute: https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/CONTRIBUTING.md