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,49 @@
1
+ <?php
2
+
3
+ namespace Doctrine\Tests\Common\Lexer;
4
+
5
+ use Doctrine\Common\Lexer\AbstractLexer;
6
+
7
+ class ConcreteLexer extends AbstractLexer
8
+ {
9
+ const INT = 'int';
10
+
11
+ protected function getCatchablePatterns()
12
+ {
13
+ return array(
14
+ '=|<|>',
15
+ '[a-z]+',
16
+ '\d+',
17
+ );
18
+ }
19
+
20
+ protected function getNonCatchablePatterns()
21
+ {
22
+ return array(
23
+ '\s+',
24
+ '(.)',
25
+ );
26
+ }
27
+
28
+ protected function getType(&$value)
29
+ {
30
+ if (is_numeric($value)) {
31
+ $value = (int)$value;
32
+
33
+ return 'int';
34
+ }
35
+ if (in_array($value, array('=', '<', '>'))) {
36
+ return 'operator';
37
+ }
38
+ if (is_string($value)) {
39
+ return 'string';
40
+ }
41
+
42
+ return;
43
+ }
44
+
45
+ protected function getModifiers()
46
+ {
47
+ return parent::getModifiers().'u';
48
+ }
49
+ }
@@ -0,0 +1,48 @@
1
+ <?php
2
+
3
+ $header = <<<'EOF'
4
+ This file is part of PHP CS Fixer.
5
+
6
+ (c) Fabien Potencier <fabien@symfony.com>
7
+ Dariusz Rumiński <dariusz.ruminski@gmail.com>
8
+
9
+ This source file is subject to the MIT license that is bundled
10
+ with this source code in the file LICENSE.
11
+ EOF;
12
+
13
+ $finder = PhpCsFixer\Finder::create()
14
+ ->exclude('tests/Fixtures')
15
+ ->in(__DIR__)
16
+ ->append([__DIR__.'/php-cs-fixer'])
17
+ ;
18
+
19
+ $config = PhpCsFixer\Config::create()
20
+ ->setRiskyAllowed(true)
21
+ ->setRules([
22
+ '@PHP56Migration' => true,
23
+ '@PHPUnit60Migration:risky' => true,
24
+ '@PhpCsFixer' => true,
25
+ '@PhpCsFixer:risky' => true,
26
+ 'header_comment' => ['header' => $header],
27
+ 'list_syntax' => ['syntax' => 'long'],
28
+ ])
29
+ ->setFinder($finder)
30
+ ;
31
+
32
+ // special handling of fabbot.io service if it's using too old PHP CS Fixer version
33
+ if (false !== getenv('FABBOT_IO')) {
34
+ try {
35
+ PhpCsFixer\FixerFactory::create()
36
+ ->registerBuiltInFixers()
37
+ ->registerCustomFixers($config->getCustomFixers())
38
+ ->useRuleSet(new PhpCsFixer\RuleSet($config->getRules()));
39
+ } catch (PhpCsFixer\ConfigurationException\InvalidConfigurationException $e) {
40
+ $config->setRules([]);
41
+ } catch (UnexpectedValueException $e) {
42
+ $config->setRules([]);
43
+ } catch (InvalidArgumentException $e) {
44
+ $config->setRules([]);
45
+ }
46
+ }
47
+
48
+ return $config;
@@ -0,0 +1,2844 @@
1
+ CHANGELOG for PHP CS Fixer
2
+ ==========================
3
+
4
+ This file contains changelogs for stable releases only.
5
+
6
+ Changelog for v2.15.3
7
+ ---------------------
8
+
9
+ * bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
10
+ * minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
11
+ * minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
12
+
13
+ Changelog for v2.15.2
14
+ ---------------------
15
+
16
+ * bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
17
+ * bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
18
+ * bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
19
+ * bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
20
+ * bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
21
+ * bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
22
+ * bug #4440 SimpleToComplexStringVariableFixer - Fix $ bug (dmvdbrugge)
23
+ * bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
24
+ * bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
25
+ * bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
26
+ * bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
27
+ * minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
28
+ * minor #4412 PHP 7.4 - Tests for support (SpacePossum)
29
+ * minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
30
+ * minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
31
+ * minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
32
+ * minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
33
+ * minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
34
+ * minor #4477 DX: control names of public methods in test's classes (kubawerlos)
35
+ * minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
36
+ * minor #4484 fix typos in README (Sven Ludwig)
37
+ * minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
38
+ * minor #4516 DX: Lock binary SCA tools versions (keradus)
39
+
40
+ Changelog for v2.15.1
41
+ ---------------------
42
+
43
+ * bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
44
+ * bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
45
+ * bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
46
+ * minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
47
+ * minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
48
+ * minor #4424 DX: cleanup of composer.json - no need for branch-alias (keradus)
49
+ * minor #4425 DX: assertions are static, adjust custom assertions (keradus)
50
+ * minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
51
+ * minor #4427 DX: stop using reserved T_FN in code samples (keradus)
52
+ * minor #4428 DX: update dev-tools (keradus)
53
+ * minor #4429 DX: MethodArgumentSpaceFixerTest - fix hidden merge conflict (keradus)
54
+
55
+ Changelog for v2.15.0
56
+ ---------------------
57
+
58
+ * feature #3927 Add FinalClassFixer (Slamdunk)
59
+ * feature #3939 Add PhpUnitSizeClassFixer (Jefersson Nathan)
60
+ * feature #3942 SimpleToComplexStringVariableFixer - Introduction (dmvdbrugge, SpacePossum)
61
+ * feature #4113 OrderedInterfacesFixer - Introduction (dmvdbrugge)
62
+ * feature #4121 SingleTraitInsertPerStatementFixer - Introduction (SpacePossum)
63
+ * feature #4126 NativeFunctionTypeDeclarationCasingFixer - Introduction (SpacePossum)
64
+ * feature #4167 PhpUnitMockShortWillReturnFixer - Introduction (michadam-pearson)
65
+ * feature #4191 [7.3] NoWhitespaceBeforeCommaInArrayFixer - fix comma after heredoc-end (gharlan)
66
+ * feature #4288 Add Gitlab Reporter (hco)
67
+ * feature #4328 Add PhpUnitDedicateAssertInternalTypeFixer (Slamdunk)
68
+ * feature #4341 [7.3] TrailingCommaInMultilineArrayFixer - fix comma after heredoc-end (gharlan)
69
+ * feature #4342 [7.3] MethodArgumentSpaceFixer - fix comma after heredoc-end (gharlan)
70
+ * minor #4112 NoSuperfluousPhpdocTagsFixer - Add missing code sample, groom tests (keradus, SpacePossum)
71
+ * minor #4360 Add gitlab as output format in the README/help doc. (SpacePossum)
72
+ * minor #4386 Add PhpUnitMockShortWillReturnFixer to @Symfony:risky rule set (kubawerlos)
73
+ * minor #4398 New ruleset "@PHP73Migration" (gharlan)
74
+ * minor #4399 Fix 2.15 line (keradus)
75
+
76
+ Changelog for v2.14.6
77
+ ---------------------
78
+
79
+ * bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
80
+ * minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
81
+ * minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
82
+
83
+ Changelog for v2.14.5
84
+ ---------------------
85
+
86
+ * bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
87
+ * bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
88
+ * bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
89
+ * bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
90
+ * bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
91
+ * bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
92
+ * bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
93
+ * bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
94
+ * bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
95
+ * bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
96
+ * minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
97
+ * minor #4412 PHP 7.4 - Tests for support (SpacePossum)
98
+ * minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
99
+ * minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
100
+ * minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
101
+ * minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
102
+ * minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
103
+ * minor #4477 DX: control names of public methods in test's classes (kubawerlos)
104
+ * minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
105
+ * minor #4484 fix typos in README (Sven Ludwig)
106
+ * minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
107
+ * minor #4516 DX: Lock binary SCA tools versions (keradus)
108
+
109
+ Changelog for v2.14.4
110
+ ---------------------
111
+
112
+ * bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
113
+ * bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
114
+ * bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
115
+ * minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
116
+ * minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
117
+ * minor #4425 DX: assertions are static, adjust custom assertions (keradus)
118
+ * minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
119
+ * minor #4427 DX: stop using reserved T_FN in code samples (keradus)
120
+ * minor #4428 DX: update dev-tools (keradus)
121
+
122
+ Changelog for v2.14.3
123
+ ---------------------
124
+
125
+ * bug #4298 NoTrailingWhitespaceInCommentFixer - fix for non-Unix line separators (kubawerlos)
126
+ * bug #4303 FullyQualifiedStrictTypesFixer - Fix the short type detection when a question mark (nullable) is prefixing it. (drupol)
127
+ * bug #4313 SelfAccessorFixer - fix for part qualified class name (kubawerlos, SpacePossum)
128
+ * bug #4314 PhpUnitTestCaseStaticMethodCallsFixer - fix for having property with name as method to update (kubawerlos, SpacePossum)
129
+ * bug #4316 NoUnsetCastFixer - Test for higher-precedence operators (SpacePossum)
130
+ * bug #4327 TokensAnalyzer - add concat operator to list of binary operators (SpacePossum)
131
+ * bug #4335 Cache - add indent and line ending to cache signature (dmvdbrugge)
132
+ * bug #4344 VoidReturnFixer - handle yield from (SpacePossum)
133
+ * bug #4346 BracesFixer - Do not pull close tag onto same line as a comment (SpacePossum)
134
+ * bug #4350 StrictParamFixer - Don't detect functions in use statements (bolmstedt)
135
+ * bug #4357 Fix short list syntax detection. (SpacePossum)
136
+ * bug #4365 Fix output escaping of diff for text format when line is not changed (SpacePossum)
137
+ * bug #4370 PhpUnitConstructFixer - Fix handle different casing (SpacePossum)
138
+ * bug #4379 ExplicitStringVariableFixer - add test case for variable as an array key (kubawerlos, Slamdunk)
139
+ * feature #4337 PhpUnitTestCaseStaticMethodCallsFixer - prepare for PHPUnit 8 (kubawerlos)
140
+ * minor #3799 DX: php_unit_test_case_static_method_calls - use default config (keradus)
141
+ * minor #4103 NoExtraBlankLinesFixer - fix candidate detection (SpacePossum)
142
+ * minor #4245 LineEndingFixer - BracesFixer - Priority (dmvdbrugge)
143
+ * minor #4325 Use lowercase mikey179/vfsStream in composer.json (lolli42)
144
+ * minor #4336 Collect coverage with PCOV (kubawerlos)
145
+ * minor #4338 Fix wording (kmvan, kubawerlos)
146
+ * minor #4339 Change BracesFixer to avoid indenting PHP inline braces (alecgeatches)
147
+ * minor #4340 Travis: build against 7.4snapshot instead of nightly (Slamdunk)
148
+ * minor #4351 code grooming (SpacePossum)
149
+ * minor #4353 Add more priority tests (SpacePossum)
150
+ * minor #4364 DX: MethodChainingIndentationFixer - remove unneccesary loop (Sijun Zhu)
151
+ * minor #4366 Unset the auxillary variable $a (GrahamCampbell)
152
+ * minor #4368 Fixed TypeShortNameResolverTest::testResolver (GrahamCampbell)
153
+ * minor #4380 PHP7.4 - Add "str_split" => "mb_str_split" mapping. (SpacePossum)
154
+ * minor #4381 PHP7.4 - Add support for magic methods (un)serialize. (SpacePossum)
155
+ * minor #4393 DX: add missing explicit return types (kubawerlos)
156
+
157
+ Changelog for v2.14.2
158
+ ---------------------
159
+
160
+ * minor #4306 DX: Drop HHVM conflict on Composer level to help Composer with HHVM compatibility, we still prevent HHVM on runtime (keradus)
161
+
162
+ Changelog for v2.14.1
163
+ ---------------------
164
+
165
+ * bug #4240 ModernizeTypesCastingFixer - fix for operators with higher precedence (kubawerlos)
166
+ * bug #4254 PhpUnitDedicateAssertFixer - fix for count with additional operations (kubawerlos)
167
+ * bug #4260 Psr0Fixer and Psr4Fixer - fix for multiple classes in file with anonymous class (kubawerlos)
168
+ * bug #4262 FixCommand - fix help (keradus)
169
+ * bug #4276 MethodChainingIndentationFixer, ArrayIndentationFixer - Fix priority issue (dmvdbrugge)
170
+ * bug #4280 MethodArgumentSpaceFixer - Fix method argument alignment (Billz95)
171
+ * bug #4286 IncrementStyleFixer - fix for static statement (kubawerlos)
172
+ * bug #4291 ArrayIndentationFixer - Fix indentation after trailing spaces (julienfalque, keradus)
173
+ * bug #4292 NoSuperfluousPhpdocTagsFixer - Make null only type not considered superfluous (julienfalque)
174
+ * minor #4204 DX: Tokens - do not unregister/register found tokens when collection is not changing (kubawerlos)
175
+ * minor #4235 DX: more specific @param types (kubawerlos)
176
+ * minor #4263 DX: AppVeyor - bump PHP version (keradus)
177
+ * minor #4293 Add official support for PHP 7.3 (keradus)
178
+ * minor #4295 DX: MethodArgumentSpaceFixerTest - fix edge case for handling different line ending when only expected code is provided (keradus)
179
+ * minor #4296 DX: cleanup testing with fixer config (keradus)
180
+ * minor #4299 NativeFunctionInvocationFixer - add array_key_exists (deguif, keradus)
181
+ * minor #4300 DX: cleanup testing with fixer config (keradus)
182
+
183
+ Changelog for v2.14.0
184
+ ---------------------
185
+
186
+ * bug #4220 NativeFunctionInvocationFixer - namespaced strict to remove backslash (kubawerlos)
187
+ * feature #3881 Add PhpdocVarAnnotationCorrectOrderFixer (kubawerlos)
188
+ * feature #3915 Add HeredocIndentationFixer (gharlan)
189
+ * feature #4002 NoSuperfluousPhpdocTagsFixer - Allow `mixed` in superfluous PHPDoc by configuration (MortalFlesh)
190
+ * feature #4030 Add get_required_files and user_error aliases (ntzm)
191
+ * feature #4043 NativeFunctionInvocationFixer - add option to remove redundant backslashes (kubawerlos)
192
+ * feature #4102 Add NoUnsetCastFixer (SpacePossum)
193
+ * minor #4025 Add phpdoc_types_order rule to Symfony's ruleset (carusogabriel)
194
+ * minor #4213 [7.3] PHP7.3 integration tests (SpacePossum)
195
+ * minor #4233 Add official support for PHP 7.3 (keradus)
196
+
197
+ Changelog for v2.13.3
198
+ ---------------------
199
+
200
+ * bug #4216 Psr4Fixer - fix for multiple classy elements in file (keradus, kubawerlos)
201
+ * bug #4217 Psr0Fixer - class with anonymous class (kubawerlos)
202
+ * bug #4219 NativeFunctionCasingFixer - handle T_RETURN_REF (kubawerlos)
203
+ * bug #4224 FunctionToConstantFixer - handle T_RETURN_REF (SpacePossum)
204
+ * bug #4229 IsNullFixer - fix parenthesis not closed (guilliamxavier)
205
+ * minor #4193 [7.3] CombineNestedDirnameFixer - support PHP 7.3 (kubawerlos)
206
+ * minor #4198 [7.3] PowToExponentiationFixer - adding to PHP7.3 integration test (kubawerlos)
207
+ * minor #4199 [7.3] MethodChainingIndentationFixer - add tests for PHP 7.3 (kubawerlos)
208
+ * minor #4200 [7.3] ModernizeTypesCastingFixer - support PHP 7.3 (kubawerlos)
209
+ * minor #4201 [7.3] MultilineWhitespaceBeforeSemicolonsFixer - add tests for PHP 7.3 (kubawerlos)
210
+ * minor #4202 [7.3] ErrorSuppressionFixer - support PHP 7.3 (kubawerlos)
211
+ * minor #4205 DX: PhpdocAlignFixer - refactor to use DocBlock (kubawerlos)
212
+ * minor #4206 DX: enable multiline_whitespace_before_semicolons (keradus)
213
+ * minor #4207 [7.3] RandomApiMigrationFixerTest - tests for 7.3 (SpacePossum)
214
+ * minor #4208 [7.3] NativeFunctionCasingFixerTest - tests for 7.3 (SpacePossum)
215
+ * minor #4209 [7.3] PhpUnitStrictFixerTest - tests for 7.3 (SpacePossum)
216
+ * minor #4210 [7.3] PhpUnitConstructFixer - add test for PHP 7.3 (kubawerlos)
217
+ * minor #4211 [7.3] PhpUnitDedicateAssertFixer - support PHP 7.3 (kubawerlos)
218
+ * minor #4214 [7.3] NoUnsetOnPropertyFixerTest - tests for 7.3 (SpacePossum)
219
+ * minor #4222 [7.3] PhpUnitExpectationFixer - support PHP 7.3 (kubawerlos)
220
+ * minor #4223 [7.3] PhpUnitMockFixer - add tests for PHP 7.3 (kubawerlos)
221
+ * minor #4230 [7.3] IsNullFixer - fix trailing comma (guilliamxavier)
222
+ * minor #4232 DX: remove Utils::splitLines (kubawerlos)
223
+ * minor #4234 [7.3] Test that "LITERAL instanceof X" is valid (guilliamxavier)
224
+
225
+ Changelog for v2.13.2
226
+ ---------------------
227
+
228
+ * bug #3968 SelfAccessorFixer - support FQCN (kubawerlos)
229
+ * bug #3974 Psr4Fixer - class with anonymous class (kubawerlos)
230
+ * bug #3987 Run HeaderCommentFixer after NoBlankLinesAfterPhpdocFixer (StanAngeloff)
231
+ * bug #4009 TypeAlternationTransformer - Fix pipes in function call with constants being classified incorrectly (ntzm, SpacePossum)
232
+ * bug #4022 NoUnsetOnPropertyFixer - refactor and bugfixes (kubawerlos)
233
+ * bug #4036 ExplicitStringVariableFixer - fixes for backticks and for 2 variables next to each other (kubawerlos, Slamdunk)
234
+ * bug #4038 CommentToPhpdocFixer - handling nested PHPDoc (kubawerlos)
235
+ * bug #4064 Ignore invalid mode strings, add option to remove the "b" flag. (SpacePossum)
236
+ * bug #4071 DX: do not insert Token when calling removeLeadingWhitespace/removeTrailingWhitespace from Tokens (kubawerlos)
237
+ * bug #4073 IsNullFixer - fix function detection (kubawerlos)
238
+ * bug #4074 FileFilterIterator - do not filter out files that need fixing (SpacePossum)
239
+ * bug #4076 EregToPregFixer - fix function detection (kubawerlos)
240
+ * bug #4084 MethodChainingIndentation - fix priority with Braces (dmvdbrugge)
241
+ * bug #4099 HeaderCommentFixer - throw exception on invalid header configuration (SpacePossum)
242
+ * bug #4100 PhpdocAddMissingParamAnnotationFixer - Handle variable number of arguments and pass by reference cases (SpacePossum)
243
+ * bug #4101 ReturnAssignmentFixer - do not touch invalid code (SpacePossum)
244
+ * bug #4104 Change transformers order, fixing untransformed T_USE (dmvdbrugge)
245
+ * bug #4107 Preg::split - fix for non-UTF8 subject (ostrolucky, kubawerlos)
246
+ * bug #4109 NoBlankLines*: fix removing lines consisting only of spaces (kubawerlos, keradus)
247
+ * bug #4114 VisibilityRequiredFixer - don't remove comments (kubawerlos)
248
+ * bug #4116 OrderedImportsFixer - fix sorting without any grouping (SpacePossum)
249
+ * bug #4119 PhpUnitNoExpectationAnnotationFixer - fix extracting content from annotation (kubawerlos)
250
+ * bug #4127 LowercaseConstantsFixer - Fix case with properties using constants as their name (srathbone)
251
+ * bug #4134 [7.3] SquareBraceTransformer - nested array destructuring not handled correctly (SpacePossum)
252
+ * bug #4153 PhpUnitFqcnAnnotationFixer - handle only PhpUnit classes (kubawerlos)
253
+ * bug #4169 DirConstantFixer - Fixes for PHP7.3 syntax (SpacePossum)
254
+ * bug #4181 MultilineCommentOpeningClosingFixer - fix handling empty comment (kubawerlos)
255
+ * bug #4186 Tokens - fix removal of leading/trailing whitespace with empty token in collection (kubawerlos)
256
+ * minor #3436 Add a handful of integration tests (BackEndTea)
257
+ * minor #3774 PhpUnitTestClassRequiresCoversFixer - Remove unneeded loop and use phpunit indicator class (BackEndTea, SpacePossum)
258
+ * minor #3778 DX: Throw an exception if FileReader::read fails (ntzm)
259
+ * minor #3916 New ruleset "@PhpCsFixer" (gharlan)
260
+ * minor #4007 Fixes cookbook for fixers (greeflas)
261
+ * minor #4031 Correct FixerOptionBuilder::getOption return type (ntzm)
262
+ * minor #4046 Token - Added fast isset() path to token->equals() (staabm)
263
+ * minor #4047 Token - inline $other->getPrototype() to speedup equals() (staabm, keradus)
264
+ * minor #4048 Tokens - inlined extractTokenKind() call on the hot path (staabm)
265
+ * minor #4069 DX: Add dev-tools directory to gitattributes as export-ignore (alexmanno)
266
+ * minor #4070 Docs: Add link to a VS Code extension in readme (jakebathman)
267
+ * minor #4077 DX: cleanup - NoAliasFunctionsFixer - use FunctionsAnalyzer (kubawerlos)
268
+ * minor #4088 Add Travis test with strict types (kubawerlos)
269
+ * minor #4091 Adjust misleading sentence in CONTRIBUTING.md (ostrolucky)
270
+ * minor #4092 UseTransformer - simplify/optimize (SpacePossum)
271
+ * minor #4095 DX: Use ::class (keradus)
272
+ * minor #4096 DX: fixing typo (kubawerlos)
273
+ * minor #4097 DX: namespace casing (kubawerlos)
274
+ * minor #4110 Enhancement: Update localheinz/composer-normalize (localheinz)
275
+ * minor #4115 Changes for upcoming Travis' infra migration (sergeyklay)
276
+ * minor #4122 DX: AppVeyor - Update Composer download link (SpacePossum)
277
+ * minor #4128 DX: cleanup - AbstractFunctionReferenceFixer - use FunctionsAnalyzer (SpacePossum, kubawerlos)
278
+ * minor #4129 Fix: Symfony 4.2 deprecations (kubawerlos)
279
+ * minor #4139 DX: Fix CircleCI (kubawerlos)
280
+ * minor #4142 [7.3] NoAliasFunctionsFixer - mbregex_encoding' => 'mb_regex_encoding (SpacePossum)
281
+ * minor #4143 PhpUnitTestCaseStaticMethodCallsFixer - Add PHPUnit 7.5 new assertions (Slamdunk)
282
+ * minor #4149 [7.3] ArgumentsAnalyzer - PHP7.3 support (SpacePossum)
283
+ * minor #4161 DX: CI - show packages installed via Composer (keradus)
284
+ * minor #4162 DX: Drop symfony/lts (keradus)
285
+ * minor #4166 DX: do not use AbstractFunctionReferenceFixer when no need to (kubawerlos)
286
+ * minor #4168 DX: FopenFlagsFixer - remove useless proxy method (SpacePossum)
287
+ * minor #4171 Fix CircleCI cache (kubawerlos)
288
+ * minor #4173 [7.3] PowToExponentiationFixer - add support for PHP7.3 (SpacePossum)
289
+ * minor #4175 Fixing typo (kubawerlos)
290
+ * minor #4177 CI: Check that tag is matching version of PHP CS Fixer during deployment (keradus)
291
+ * minor #4180 Fixing typo (kubawerlos)
292
+ * minor #4182 DX: update php-cs-fixer file style (kubawerlos)
293
+ * minor #4185 [7.3] ImplodeCallFixer - add tests for PHP7.3 (kubawerlos)
294
+ * minor #4187 [7.3] IsNullFixer - support PHP 7.3 (kubawerlos)
295
+ * minor #4188 DX: cleanup (keradus)
296
+ * minor #4189 Travis - add PHP 7.3 job (keradus)
297
+ * minor #4190 Travis CI - fix config (kubawerlos)
298
+ * minor #4192 [7.3] MagicMethodCasingFixer - add tests for PHP 7.3 (kubawerlos)
299
+ * minor #4194 [7.3] NativeFunctionInvocationFixer - add tests for PHP 7.3 (kubawerlos)
300
+ * minor #4195 [7.3] SetTypeToCastFixer - support PHP 7.3 (kubawerlos)
301
+ * minor #4196 Update website (keradus)
302
+ * minor #4197 [7.3] StrictParamFixer - support PHP 7.3 (kubawerlos)
303
+
304
+ Changelog for v2.13.1
305
+ ---------------------
306
+
307
+ * bug #3977 NoSuperfluousPhpdocTagsFixer - Fix handling of description with variable (julienfalque)
308
+ * bug #4027 PhpdocAnnotationWithoutDotFixer - add failing cases (keradus)
309
+ * bug #4028 PhpdocNoEmptyReturnFixer - handle single line PHPDoc (kubawerlos)
310
+ * bug #4034 PhpUnitTestCaseIndicator - handle anonymous class (kubawerlos)
311
+ * bug #4037 NativeFunctionInvocationFixer - fix function detection (kubawerlos)
312
+ * feature #4019 PhpdocTypesFixer - allow for configuration (keradus)
313
+ * minor #3980 Clarifies allow-risky usage (josephzidell)
314
+ * minor #4016 Bump console component due to it's bug (keradus)
315
+ * minor #4023 Enhancement: Update localheinz/composer-normalize (localheinz)
316
+ * minor #4049 use parent::offset*() methods when moving items around in insertAt() (staabm)
317
+
318
+ Changelog for v2.13.0
319
+ ---------------------
320
+
321
+ * feature #3739 Add MagicMethodCasingFixer (SpacePossum)
322
+ * feature #3812 Add FopenFlagOrderFixer & FopenFlagsFixer (SpacePossum)
323
+ * feature #3826 Add CombineNestedDirnameFixer (gharlan)
324
+ * feature #3833 BinaryOperatorSpacesFixer - Add "no space" fix strategy (SpacePossum)
325
+ * feature #3841 NoAliasFunctionsFixer - add opt in option for ext-mbstring aliasses (SpacePossum)
326
+ * feature #3876 NativeConstantInvocationFixer - add the scope option (stof, keradus)
327
+ * feature #3886 Add PhpUnitMethodCasingFixer (Slamdunk)
328
+ * feature #3907 Add ImplodeCallFixer (kubawerlos)
329
+ * feature #3914 NoUnreachableDefaultArgumentValueFixer - remove `null` for nullable typehints (gharlan, keradus)
330
+ * minor #3813 PhpUnitDedicateAssertFixer - fix "sizeOf" same as "count". (SpacePossum)
331
+ * minor #3873 Add the native_function_invocation fixer in the Symfony:risky ruleset (stof)
332
+ * minor #3979 DX: enable php_unit_method_casing (keradus)
333
+
334
+ Changelog for v2.12.12
335
+ ----------------------
336
+
337
+ * bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
338
+ * minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
339
+ * minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
340
+
341
+ Changelog for v2.12.11
342
+ ----------------------
343
+
344
+ * bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
345
+ * bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
346
+ * bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
347
+ * bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
348
+ * bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
349
+ * bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
350
+ * bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
351
+ * bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
352
+ * bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
353
+ * bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
354
+ * minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
355
+ * minor #4412 PHP 7.4 - Tests for support (SpacePossum)
356
+ * minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
357
+ * minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
358
+ * minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
359
+ * minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
360
+ * minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
361
+ * minor #4477 DX: control names of public methods in test's classes (kubawerlos)
362
+ * minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
363
+ * minor #4484 fix typos in README (Sven Ludwig)
364
+ * minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
365
+ * minor #4516 DX: Lock binary SCA tools versions (keradus)
366
+
367
+ Changelog for v2.12.10
368
+ ----------------------
369
+
370
+ * bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
371
+ * bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
372
+ * bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
373
+ * minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
374
+ * minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
375
+ * minor #4425 DX: assertions are static, adjust custom assertions (keradus)
376
+ * minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
377
+ * minor #4427 DX: stop using reserved T_FN in code samples (keradus)
378
+
379
+ Changelog for v2.12.9
380
+ ---------------------
381
+
382
+ * bug #4298 NoTrailingWhitespaceInCommentFixer - fix for non-Unix line separators (kubawerlos)
383
+ * bug #4303 FullyQualifiedStrictTypesFixer - Fix the short type detection when a question mark (nullable) is prefixing it. (drupol)
384
+ * bug #4313 SelfAccessorFixer - fix for part qualified class name (kubawerlos, SpacePossum)
385
+ * bug #4314 PhpUnitTestCaseStaticMethodCallsFixer - fix for having property with name as method to update (kubawerlos, SpacePossum)
386
+ * bug #4327 TokensAnalyzer - add concat operator to list of binary operators (SpacePossum)
387
+ * bug #4335 Cache - add indent and line ending to cache signature (dmvdbrugge)
388
+ * bug #4344 VoidReturnFixer - handle yield from (SpacePossum)
389
+ * bug #4346 BracesFixer - Do not pull close tag onto same line as a comment (SpacePossum)
390
+ * bug #4350 StrictParamFixer - Don't detect functions in use statements (bolmstedt)
391
+ * bug #4357 Fix short list syntax detection. (SpacePossum)
392
+ * bug #4365 Fix output escaping of diff for text format when line is not changed (SpacePossum)
393
+ * bug #4370 PhpUnitConstructFixer - Fix handle different casing (SpacePossum)
394
+ * bug #4379 ExplicitStringVariableFixer - add test case for variable as an array key (kubawerlos, Slamdunk)
395
+ * feature #4337 PhpUnitTestCaseStaticMethodCallsFixer - prepare for PHPUnit 8 (kubawerlos)
396
+ * minor #3799 DX: php_unit_test_case_static_method_calls - use default config (keradus)
397
+ * minor #4103 NoExtraBlankLinesFixer - fix candidate detection (SpacePossum)
398
+ * minor #4245 LineEndingFixer - BracesFixer - Priority (dmvdbrugge)
399
+ * minor #4325 Use lowercase mikey179/vfsStream in composer.json (lolli42)
400
+ * minor #4336 Collect coverage with PCOV (kubawerlos)
401
+ * minor #4338 Fix wording (kmvan, kubawerlos)
402
+ * minor #4339 Change BracesFixer to avoid indenting PHP inline braces (alecgeatches)
403
+ * minor #4340 Travis: build against 7.4snapshot instead of nightly (Slamdunk)
404
+ * minor #4351 code grooming (SpacePossum)
405
+ * minor #4353 Add more priority tests (SpacePossum)
406
+ * minor #4364 DX: MethodChainingIndentationFixer - remove unneccesary loop (Sijun Zhu)
407
+ * minor #4366 Unset the auxillary variable $a (GrahamCampbell)
408
+ * minor #4368 Fixed TypeShortNameResolverTest::testResolver (GrahamCampbell)
409
+ * minor #4380 PHP7.4 - Add "str_split" => "mb_str_split" mapping. (SpacePossum)
410
+ * minor #4393 DX: add missing explicit return types (kubawerlos)
411
+
412
+ Changelog for v2.12.8
413
+ ---------------------
414
+
415
+ * minor #4306 DX: Drop HHVM conflict on Composer level to help Composer with HHVM compatibility, we still prevent HHVM on runtime (keradus)
416
+
417
+ Changelog for v2.12.7
418
+ ---------------------
419
+
420
+ * bug #4240 ModernizeTypesCastingFixer - fix for operators with higher precedence (kubawerlos)
421
+ * bug #4254 PhpUnitDedicateAssertFixer - fix for count with additional operations (kubawerlos)
422
+ * bug #4260 Psr0Fixer and Psr4Fixer - fix for multiple classes in file with anonymous class (kubawerlos)
423
+ * bug #4262 FixCommand - fix help (keradus)
424
+ * bug #4276 MethodChainingIndentationFixer, ArrayIndentationFixer - Fix priority issue (dmvdbrugge)
425
+ * bug #4280 MethodArgumentSpaceFixer - Fix method argument alignment (Billz95)
426
+ * bug #4286 IncrementStyleFixer - fix for static statement (kubawerlos)
427
+ * bug #4291 ArrayIndentationFixer - Fix indentation after trailing spaces (julienfalque, keradus)
428
+ * bug #4292 NoSuperfluousPhpdocTagsFixer - Make null only type not considered superfluous (julienfalque)
429
+ * minor #4204 DX: Tokens - do not unregister/register found tokens when collection is not changing (kubawerlos)
430
+ * minor #4235 DX: more specific @param types (kubawerlos)
431
+ * minor #4263 DX: AppVeyor - bump PHP version (keradus)
432
+ * minor #4293 Add official support for PHP 7.3 (keradus)
433
+ * minor #4295 DX: MethodArgumentSpaceFixerTest - fix edge case for handling different line ending when only expected code is provided (keradus)
434
+ * minor #4296 DX: cleanup testing with fixer config (keradus)
435
+ * minor #4299 NativeFunctionInvocationFixer - add array_key_exists (deguif, keradus)
436
+
437
+ Changelog for v2.12.6
438
+ ---------------------
439
+
440
+ * bug #4216 Psr4Fixer - fix for multiple classy elements in file (keradus, kubawerlos)
441
+ * bug #4217 Psr0Fixer - class with anonymous class (kubawerlos)
442
+ * bug #4219 NativeFunctionCasingFixer - handle T_RETURN_REF (kubawerlos)
443
+ * bug #4224 FunctionToConstantFixer - handle T_RETURN_REF (SpacePossum)
444
+ * bug #4229 IsNullFixer - fix parenthesis not closed (guilliamxavier)
445
+ * minor #4198 [7.3] PowToExponentiationFixer - adding to PHP7.3 integration test (kubawerlos)
446
+ * minor #4199 [7.3] MethodChainingIndentationFixer - add tests for PHP 7.3 (kubawerlos)
447
+ * minor #4200 [7.3] ModernizeTypesCastingFixer - support PHP 7.3 (kubawerlos)
448
+ * minor #4201 [7.3] MultilineWhitespaceBeforeSemicolonsFixer - add tests for PHP 7.3 (kubawerlos)
449
+ * minor #4202 [7.3] ErrorSuppressionFixer - support PHP 7.3 (kubawerlos)
450
+ * minor #4205 DX: PhpdocAlignFixer - refactor to use DocBlock (kubawerlos)
451
+ * minor #4206 DX: enable multiline_whitespace_before_semicolons (keradus)
452
+ * minor #4207 [7.3] RandomApiMigrationFixerTest - tests for 7.3 (SpacePossum)
453
+ * minor #4208 [7.3] NativeFunctionCasingFixerTest - tests for 7.3 (SpacePossum)
454
+ * minor #4209 [7.3] PhpUnitStrictFixerTest - tests for 7.3 (SpacePossum)
455
+ * minor #4210 [7.3] PhpUnitConstructFixer - add test for PHP 7.3 (kubawerlos)
456
+ * minor #4211 [7.3] PhpUnitDedicateAssertFixer - support PHP 7.3 (kubawerlos)
457
+ * minor #4214 [7.3] NoUnsetOnPropertyFixerTest - tests for 7.3 (SpacePossum)
458
+ * minor #4222 [7.3] PhpUnitExpectationFixer - support PHP 7.3 (kubawerlos)
459
+ * minor #4223 [7.3] PhpUnitMockFixer - add tests for PHP 7.3 (kubawerlos)
460
+ * minor #4230 [7.3] IsNullFixer - fix trailing comma (guilliamxavier)
461
+ * minor #4232 DX: remove Utils::splitLines (kubawerlos)
462
+ * minor #4234 [7.3] Test that "LITERAL instanceof X" is valid (guilliamxavier)
463
+
464
+ Changelog for v2.12.5
465
+ ---------------------
466
+
467
+ * bug #3968 SelfAccessorFixer - support FQCN (kubawerlos)
468
+ * bug #3974 Psr4Fixer - class with anonymous class (kubawerlos)
469
+ * bug #3987 Run HeaderCommentFixer after NoBlankLinesAfterPhpdocFixer (StanAngeloff)
470
+ * bug #4009 TypeAlternationTransformer - Fix pipes in function call with constants being classified incorrectly (ntzm, SpacePossum)
471
+ * bug #4022 NoUnsetOnPropertyFixer - refactor and bugfixes (kubawerlos)
472
+ * bug #4036 ExplicitStringVariableFixer - fixes for backticks and for 2 variables next to each other (kubawerlos, Slamdunk)
473
+ * bug #4038 CommentToPhpdocFixer - handling nested PHPDoc (kubawerlos)
474
+ * bug #4071 DX: do not insert Token when calling removeLeadingWhitespace/removeTrailingWhitespace from Tokens (kubawerlos)
475
+ * bug #4073 IsNullFixer - fix function detection (kubawerlos)
476
+ * bug #4074 FileFilterIterator - do not filter out files that need fixing (SpacePossum)
477
+ * bug #4076 EregToPregFixer - fix function detection (kubawerlos)
478
+ * bug #4084 MethodChainingIndentation - fix priority with Braces (dmvdbrugge)
479
+ * bug #4099 HeaderCommentFixer - throw exception on invalid header configuration (SpacePossum)
480
+ * bug #4100 PhpdocAddMissingParamAnnotationFixer - Handle variable number of arguments and pass by reference cases (SpacePossum)
481
+ * bug #4101 ReturnAssignmentFixer - do not touch invalid code (SpacePossum)
482
+ * bug #4104 Change transformers order, fixing untransformed T_USE (dmvdbrugge)
483
+ * bug #4107 Preg::split - fix for non-UTF8 subject (ostrolucky, kubawerlos)
484
+ * bug #4109 NoBlankLines*: fix removing lines consisting only of spaces (kubawerlos, keradus)
485
+ * bug #4114 VisibilityRequiredFixer - don't remove comments (kubawerlos)
486
+ * bug #4116 OrderedImportsFixer - fix sorting without any grouping (SpacePossum)
487
+ * bug #4119 PhpUnitNoExpectationAnnotationFixer - fix extracting content from annotation (kubawerlos)
488
+ * bug #4127 LowercaseConstantsFixer - Fix case with properties using constants as their name (srathbone)
489
+ * bug #4134 [7.3] SquareBraceTransformer - nested array destructuring not handled correctly (SpacePossum)
490
+ * bug #4153 PhpUnitFqcnAnnotationFixer - handle only PhpUnit classes (kubawerlos)
491
+ * bug #4169 DirConstantFixer - Fixes for PHP7.3 syntax (SpacePossum)
492
+ * bug #4181 MultilineCommentOpeningClosingFixer - fix handling empty comment (kubawerlos)
493
+ * bug #4186 Tokens - fix removal of leading/trailing whitespace with empty token in collection (kubawerlos)
494
+ * minor #3436 Add a handful of integration tests (BackEndTea)
495
+ * minor #3774 PhpUnitTestClassRequiresCoversFixer - Remove unneeded loop and use phpunit indicator class (BackEndTea, SpacePossum)
496
+ * minor #3778 DX: Throw an exception if FileReader::read fails (ntzm)
497
+ * minor #3916 New ruleset "@PhpCsFixer" (gharlan)
498
+ * minor #4007 Fixes cookbook for fixers (greeflas)
499
+ * minor #4031 Correct FixerOptionBuilder::getOption return type (ntzm)
500
+ * minor #4046 Token - Added fast isset() path to token->equals() (staabm)
501
+ * minor #4047 Token - inline $other->getPrototype() to speedup equals() (staabm, keradus)
502
+ * minor #4048 Tokens - inlined extractTokenKind() call on the hot path (staabm)
503
+ * minor #4069 DX: Add dev-tools directory to gitattributes as export-ignore (alexmanno)
504
+ * minor #4070 Docs: Add link to a VS Code extension in readme (jakebathman)
505
+ * minor #4077 DX: cleanup - NoAliasFunctionsFixer - use FunctionsAnalyzer (kubawerlos)
506
+ * minor #4088 Add Travis test with strict types (kubawerlos)
507
+ * minor #4091 Adjust misleading sentence in CONTRIBUTING.md (ostrolucky)
508
+ * minor #4092 UseTransformer - simplify/optimize (SpacePossum)
509
+ * minor #4095 DX: Use ::class (keradus)
510
+ * minor #4097 DX: namespace casing (kubawerlos)
511
+ * minor #4110 Enhancement: Update localheinz/composer-normalize (localheinz)
512
+ * minor #4115 Changes for upcoming Travis' infra migration (sergeyklay)
513
+ * minor #4122 DX: AppVeyor - Update Composer download link (SpacePossum)
514
+ * minor #4128 DX: cleanup - AbstractFunctionReferenceFixer - use FunctionsAnalyzer (SpacePossum, kubawerlos)
515
+ * minor #4129 Fix: Symfony 4.2 deprecations (kubawerlos)
516
+ * minor #4139 DX: Fix CircleCI (kubawerlos)
517
+ * minor #4143 PhpUnitTestCaseStaticMethodCallsFixer - Add PHPUnit 7.5 new assertions (Slamdunk)
518
+ * minor #4149 [7.3] ArgumentsAnalyzer - PHP7.3 support (SpacePossum)
519
+ * minor #4161 DX: CI - show packages installed via Composer (keradus)
520
+ * minor #4162 DX: Drop symfony/lts (keradus)
521
+ * minor #4166 DX: do not use AbstractFunctionReferenceFixer when no need to (kubawerlos)
522
+ * minor #4171 Fix CircleCI cache (kubawerlos)
523
+ * minor #4173 [7.3] PowToExponentiationFixer - add support for PHP7.3 (SpacePossum)
524
+ * minor #4175 Fixing typo (kubawerlos)
525
+ * minor #4177 CI: Check that tag is matching version of PHP CS Fixer during deployment (keradus)
526
+ * minor #4182 DX: update php-cs-fixer file style (kubawerlos)
527
+ * minor #4187 [7.3] IsNullFixer - support PHP 7.3 (kubawerlos)
528
+ * minor #4188 DX: cleanup (keradus)
529
+ * minor #4189 Travis - add PHP 7.3 job (keradus)
530
+ * minor #4190 Travis CI - fix config (kubawerlos)
531
+ * minor #4194 [7.3] NativeFunctionInvocationFixer - add tests for PHP 7.3 (kubawerlos)
532
+ * minor #4195 [7.3] SetTypeToCastFixer - support PHP 7.3 (kubawerlos)
533
+ * minor #4196 Update website (keradus)
534
+ * minor #4197 [7.3] StrictParamFixer - support PHP 7.3 (kubawerlos)
535
+
536
+ Changelog for v2.12.4
537
+ ---------------------
538
+
539
+ * bug #3977 NoSuperfluousPhpdocTagsFixer - Fix handling of description with variable (julienfalque)
540
+ * bug #4027 PhpdocAnnotationWithoutDotFixer - add failing cases (keradus)
541
+ * bug #4028 PhpdocNoEmptyReturnFixer - handle single line PHPDoc (kubawerlos)
542
+ * bug #4034 PhpUnitTestCaseIndicator - handle anonymous class (kubawerlos)
543
+ * bug #4037 NativeFunctionInvocationFixer - fix function detection (kubawerlos)
544
+ * feature #4019 PhpdocTypesFixer - allow for configuration (keradus)
545
+ * minor #3980 Clarifies allow-risky usage (josephzidell)
546
+ * minor #4016 Bump console component due to it's bug (keradus)
547
+ * minor #4023 Enhancement: Update localheinz/composer-normalize (localheinz)
548
+ * minor #4049 use parent::offset*() methods when moving items around in insertAt() (staabm)
549
+
550
+ Changelog for v2.12.3
551
+ ---------------------
552
+
553
+ * bug #3867 PhpdocAnnotationWithoutDotFixer - Handle trailing whitespaces (kubawerlos)
554
+ * bug #3884 NoSuperfluousPhpdocTagsFixer - handle null in every position (dmvdbrugge, julienfalque)
555
+ * bug #3885 AlignMultilineCommentFixer - ArrayIndentationFixer - Priority (dmvdbrugge)
556
+ * bug #3887 ArrayIndentFixer - Don't indent empty lines (dmvdbrugge)
557
+ * bug #3888 NoExtraBlankLinesFixer - remove blank lines after open tag (kubawerlos)
558
+ * bug #3890 StrictParamFixer - make it case-insensitive (kubawerlos)
559
+ * bug #3895 FunctionsAnalyzer - false positive for constant and function definition (kubawerlos)
560
+ * bug #3908 StrictParamFixer - fix edge case (kubawerlos)
561
+ * bug #3910 FunctionsAnalyzer - fix isGlobalFunctionCall (gharlan)
562
+ * bug #3912 FullyQualifiedStrictTypesFixer - NoSuperfluousPhpdocTagsFixer - adjust priority (dmvdbrugge)
563
+ * bug #3913 TokensAnalyzer - fix isConstantInvocation (gharlan, keradus)
564
+ * bug #3921 TypeAnalysis - Fix iterable not being detected as a reserved type (ntzm)
565
+ * bug #3924 FullyQualifiedStrictTypesFixer - space bug (dmvdbrugge)
566
+ * bug #3937 LowercaseStaticReferenceFixer - Fix "Parent" word in namespace (kubawerlos)
567
+ * bug #3944 ExplicitStringVariableFixer - fix array handling (gharlan)
568
+ * bug #3951 NoSuperfluousPhpdocTagsFixer - do not call strtolower with null (SpacePossum)
569
+ * bug #3954 NoSuperfluousPhpdocTagsFixer - Index invalid or out of range (kubawerlos)
570
+ * bug #3957 NoTrailingWhitespaceFixer - trim space after opening tag (kubawerlos)
571
+ * minor #3798 DX: enable native_function_invocation (keradus)
572
+ * minor #3882 PhpdocAnnotationWithoutDotFixer - Handle empty line in comment (kubawerlos)
573
+ * minor #3889 DX: Cleanup - remove unused variables (kubawerlos, SpacePossum)
574
+ * minor #3891 PhpdocNoEmptyReturnFixer - account for null[] (dmvdbrugge)
575
+ * minor #3892 PhpdocNoEmptyReturnFixer - fix docs (keradus)
576
+ * minor #3897 DX: FunctionsAnalyzer - simplifying return expression (kubawerlos)
577
+ * minor #3903 DX: cleanup - remove special treatment for PHP <5.6 (kubawerlos)
578
+ * minor #3905 DX: Upgrade composer-require-checker to stable version (keradus)
579
+ * minor #3919 Simplify single uses of Token::isGivenKind (ntzm)
580
+ * minor #3920 Docs: Fix typo (ntzm)
581
+ * minor #3940 DX: fix phpdoc parameter type (malukenho)
582
+ * minor #3948 DX: cleanup - remove redundant @param annotations (kubawerlos)
583
+ * minor #3950 Circle CI v2 yml (siad007)
584
+ * minor #3952 DX: AbstractFixerTestCase - drop testing method already provided by trait (keradus)
585
+ * minor #3973 Bump xdebug-handler (keradus)
586
+
587
+ Changelog for v2.12.2
588
+ ---------------------
589
+
590
+ * bug #3823 NativeConstantInvocationFixer - better constant detection (gharlan, SpacePossum, keradus)
591
+ * bug #3832 "yield from" as keyword (SpacePossum)
592
+ * bug #3835 Fix priority between PHPDoc return type fixers (julienfalque, keradus)
593
+ * bug #3839 MethodArgumentSpaceFixer - add empty line incorrectly (SpacePossum)
594
+ * bug #3866 SpaceAfterSemicolonFixer - loop over all tokens (SpacePossum)
595
+ * minor #3817 Update integrations tests (SpacePossum)
596
+ * minor #3829 Fix typos in changelog (mnabialek)
597
+ * minor #3848 Add install/update instructions for PHIVE to the README (SpacePossum)
598
+ * minor #3877 NamespacesAnalyzer - Optimize performance (stof)
599
+ * minor #3878 NativeFunctionInvocationFixer - use the NamespacesAnalyzer to remove duplicated code (stof)
600
+
601
+ Changelog for v2.12.1
602
+ ---------------------
603
+
604
+ * bug #3808 LowercaseStaticReferenceFixer - Fix constants handling (kubawerlos, keradus)
605
+ * bug #3815 NoSuperfluousPhpdocTagsFixer - support array/callable type hints (gharlan)
606
+ * minor #3824 DX: Support PHPUnit 7.2 (keradus)
607
+ * minor #3825 UX: Provide full diff for code samples (keradus)
608
+
609
+ Changelog for v2.12.0
610
+ ---------------------
611
+
612
+ * feature #2577 Add LogicalOperatorsFixer (hkdobrev, keradus)
613
+ * feature #3060 Add ErrorSuppressionFixer (kubawerlos)
614
+ * feature #3127 Add NativeConstantInvocationFixer (Slamdunk, keradus)
615
+ * feature #3223 NativeFunctionInvocationFixer - add namespace scope and include sets (SpacePossum)
616
+ * feature #3453 PhpdocAlignFixer - add align option (robert.ahmerov)
617
+ * feature #3476 Add PhpUnitTestCaseStaticMethodCallsFixer (Slamdunk, keradus)
618
+ * feature #3524 MethodArgumentSpaceFixer - Add ensure_single_line option (julienfalque, keradus)
619
+ * feature #3534 MultilineWhitespaceBeforeSemicolonsFixer - support static calls (ntzm)
620
+ * feature #3585 Add ReturnAssignmentFixer (SpacePossum, keradus)
621
+ * feature #3640 Add PhpdocToReturnTypeFixer (Slamdunk, keradus)
622
+ * feature #3691 Add PhpdocTrimAfterDescriptionFixer (nobuf, keradus)
623
+ * feature #3698 YodaStyleFixer - Add always_move_variable option (julienfalque, SpacePossum)
624
+ * feature #3709 Add SetTypeToCastFixer (SpacePossum)
625
+ * feature #3724 BlankLineBeforeStatementFixer - Add case and default as options (dmvdbrugge)
626
+ * feature #3734 Add NoSuperfluousPhpdocTagsFixer (julienfalque)
627
+ * feature #3735 Add LowercaseStaticReferenceFixer (kubawerlos, SpacePossum)
628
+ * feature #3737 Add NoUnsetOnPropertyFixer (BackEndTea, SpacePossum)
629
+ * feature #3745 Add PhpUnitInternalClassFixer (BackEndTea, SpacePossum, keradus)
630
+ * feature #3766 Add NoBinaryStringFixer (ntzm, SpacePossum, keradus)
631
+ * feature #3780 ShortScalarCastFixer - Change binary cast to string cast as well (ntzm)
632
+ * feature #3785 PhpUnitDedicateAssertFixer - fix to assertCount too (SpacePossum)
633
+ * feature #3802 Convert PhpdocTrimAfterDescriptionFixer into PhpdocTrimConsecutiveBlankLineSeparationFixer (keradus)
634
+ * minor #3738 ReturnAssignmentFixer description update (kubawerlos)
635
+ * minor #3761 Application: when run with FUTURE_MODE, error_reporting(-1) is done in entry file instead (keradus)
636
+ * minor #3772 DX: use PhpUnitTestCaseIndicator->isPhpUnitClass to discover PHPUnit classes (keradus)
637
+ * minor #3783 CI: Split COLLECT_COVERAGE job (keradus)
638
+ * minor #3789 DX: ProjectCodeTest.testThatDataProvidersAreCorrectlyNamed - performance optimization (keradus)
639
+ * minor #3791 DX: Fix collecting code coverage (keradus)
640
+ * minor #3792 DX: Upgrade DX deps (keradus)
641
+ * minor #3797 DX: ProjectCodeTest - shall not depends on xdebug/phpdbg anymore (keradus, SpacePossum)
642
+ * minor #3800 Symfony:risky ruleset: include set_type_to_cast rule (keradus)
643
+ * minor #3801 NativeFunctionInvocationFixer - fix buggy config validation (keradus, SpacePossum)
644
+
645
+ Changelog for v2.11.2
646
+ ---------------------
647
+
648
+ * bug #3233 PhpdocAlignFixer - Fix linebreak inconsistency (SpacePossum, keradus)
649
+ * bug #3445 Rewrite NoUnusedImportsFixer (kubawerlos, julienfalque)
650
+ * bug #3528 MethodChainingIndentationFixer - nested params bugfix (Slamdunk)
651
+ * bug #3547 MultilineWhitespaceBeforeSemicolonsFixer - chained call for a return fix (egircys, keradus)
652
+ * bug #3597 DeclareStrictTypesFixer - fix bug of removing line (kubawerlos, keradus)
653
+ * bug #3605 DoctrineAnnotationIndentationFixer - Fix indentation with mixed lines (julienfalque)
654
+ * bug #3606 PhpdocToCommentFixer - allow multiple ( (SpacePossum)
655
+ * bug #3614 Refactor PhpdocToCommentFixer - extract checking to CommentsAnalyzer (kubawerlos)
656
+ * bug #3668 Rewrite NoUnusedImportsFixer (kubawerlos, julienfalque)
657
+ * bug #3670 PhpdocTypesOrderFixer - Fix ordering of nested generics (julienfalque)
658
+ * bug #3671 ArrayIndentationFixer - Fix indentation in HTML (julienfalque)
659
+ * bug #3673 PhpdocScalarFixer - Add "types" option (julienfalque, keradus)
660
+ * bug #3674 YodaStyleFixer - Fix variable detection for multidimensional arrays (julienfalque, SpacePossum)
661
+ * bug #3684 PhpUnitStrictFixer - Do not fix if not correct # of arguments are used (SpacePossum)
662
+ * bug #3708 EspaceImplicitBackslashesFixer - Fix escaping multiple backslashes (julienfalque)
663
+ * bug #3715 SingleImportPerStatementFixer - Fix handling whitespace before opening brace (julienfalque)
664
+ * bug #3731 PhpdocIndentFixer - crash fix (SpacePossum)
665
+ * bug #3755 YodaStyleFixer - handle space between var name and index (SpacePossum)
666
+ * bug #3765 Fix binary-prefixed double-quoted strings to single quotes (ntzm)
667
+ * bug #3770 Handle binary flags in heredoc_to_nowdoc (ntzm)
668
+ * bug #3776 ExplicitStringVariableFixer - handle binary strings (ntzm)
669
+ * bug #3777 EscapeImplicitBackslashesFixer - handle binary strings (ntzm)
670
+ * bug #3790 ProcessLinter - don't execute external process without timeout! It can freeze! (keradus)
671
+ * minor #3188 AppVeyor - add PHP 7.x (keradus, julienfalque)
672
+ * minor #3451 Update findPHPUnit functions (BackEndTea, SpacePossum, keradus)
673
+ * minor #3548 Make shell scripts POSIX-compatible (EvgenyOrekhov, keradus)
674
+ * minor #3568 New Autoreview: Correct option casing (ntzm)
675
+ * minor #3578 Add interface for deprecated options (julienfalque, keradus)
676
+ * minor #3590 Use XdebugHandler to avoid perormance penalty (AJenbo, keradus)
677
+ * minor #3607 PhpdocVarWithoutNameFixer - update sample with @ type (SpacePossum)
678
+ * minor #3617 Tests stability patches (Tom Klingenberg, keradus)
679
+ * minor #3622 Docs: Update descriptions (localheinz)
680
+ * minor #3627 Fix tests execution under phpdbg (keradus)
681
+ * minor #3629 ProjectFixerConfigurationTest - test rules are sorted (SpacePossum)
682
+ * minor #3639 DX: use benefits of symfony/force-lowest (keradus)
683
+ * minor #3641 Update check_trailing_spaces script with upstream (keradus)
684
+ * minor #3646 Extract SameStringsConstraint and XmlMatchesXsdConstraint (keradus)
685
+ * minor #3647 DX: Add CachingLinter for tests (keradus)
686
+ * minor #3649 Update check_trailing_spaces script with upstream (keradus)
687
+ * minor #3652 CiIntegrationTest - run tests with POSIX sh, not Bash (keradus)
688
+ * minor #3656 DX: Clean ups (SpacePossum)
689
+ * minor #3657 update phpunitgoodpractices/traits (SpacePossum, keradus)
690
+ * minor #3658 DX: Clean ups (SpacePossum)
691
+ * minor #3660 Fix do not rely on order of fixing in CiIntegrationTest (kubawerlos)
692
+ * minor #3661 Fix: covers annotation for NoAlternativeSyntaxFixerTest (kubawerlos)
693
+ * minor #3662 DX: Add Smoke/InstallViaComposerTest (keradus)
694
+ * minor #3663 DX: During deployment, run all smoke tests and don't allow to skip phar-related ones (keradus)
695
+ * minor #3665 CircleCI fix (kubawerlos)
696
+ * minor #3666 Use "set -eu" in shell scripts (EvgenyOrekhov)
697
+ * minor #3669 Document possible values for subset options (julienfalque, keradus)
698
+ * minor #3672 Remove SameStringsConstraint and XmlMatchesXsdConstraint (keradus)
699
+ * minor #3676 RunnerTest - workaround for failing Symfony v2.8.37 (kubawerlos)
700
+ * minor #3680 DX: Tokens - removeLeadingWhitespace and removeTrailingWhitespace must act in same way (SpacePossum)
701
+ * minor #3686 README.rst - Format all code-like strings in fixer descriptions (ntzm, keradus)
702
+ * minor #3692 DX: Optimize tests (julienfalque)
703
+ * minor #3700 README.rst - Format all code-like strings in fixer description (ntzm)
704
+ * minor #3701 Use correct casing for "PHPDoc" (ntzm)
705
+ * minor #3703 DX: InstallViaComposerTest - groom naming (keradus)
706
+ * minor #3704 DX: Tokens - fix naming (keradus)
707
+ * minor #3706 Update homebrew installation instructions (ntzm)
708
+ * minor #3713 Use HTTPS whenever possible (fabpot)
709
+ * minor #3723 Extend tests coverage (ntzm)
710
+ * minor #3733 Disable Composer optimized autoloader by default (julienfalque)
711
+ * minor #3748 PhpUnitStrictFixer - extend risky note (jnvsor)
712
+ * minor #3749 Make sure PHPUnit is cased correctly in fixers descriptions (kubawerlos)
713
+ * minor #3768 Improve deprecation messages (julienfalque, SpacePossum)
714
+ * minor #3773 AbstractFixerWithAliasedOptionsTestCase - don't export (keradus)
715
+ * minor #3775 Add tests for binary strings in string_line_ending (ntzm)
716
+ * minor #3779 Misc fixes (ntzm, keradus)
717
+ * minor #3796 DX: StdinTest - do not assume name of folder, into which project was cloned (keradus)
718
+ * minor #3803 NoEmptyPhpdocFixer/PhpdocAddMissingParamAnnotationFixer - missing priority test (SpacePossum, keradus)
719
+ * minor #3804 Cleanup: remove useless constructor comment (kubawerlos)
720
+ * minor #3805 Cleanup: add missing @param type (kubawerlos, keradus)
721
+
722
+ Changelog for v2.11.1
723
+ ---------------------
724
+
725
+ * bug #3626 ArrayIndentationFixer: priority bug with BinaryOperatorSpacesFixer and MethodChainingIndentationFixer (Slamdunk)
726
+ * bug #3632 DateTimeImmutableFixer bug with adding tokens while iterating over them (kubawerlos)
727
+ * minor #3478 PhpUnitDedicateAssertFixer: handle static calls (Slamdunk)
728
+ * minor #3618 DateTimeImmutableFixer - grooming (keradus)
729
+
730
+ Changelog for v2.11.0
731
+ ---------------------
732
+
733
+ * feature #3135 Add ArrayIndentationFixer (julienfalque)
734
+ * feature #3235 Implement StandardizeIncrementFixer (ntzm, SpacePossum)
735
+ * feature #3260 Add DateTimeImmutableFixer (kubawerlos)
736
+ * feature #3276 Transform Fully Qualified parameters and return types to short version (veewee, keradus)
737
+ * feature #3299 SingleQuoteFixer - fix single quote char (Slamdunk)
738
+ * feature #3340 Verbose LintingException after fixing (Slamdunk)
739
+ * feature #3423 FunctionToConstantFixer - add fix "get_called_class" option (SpacePossum)
740
+ * feature #3434 Add PhpUnitSetUpTearDownVisibilityFixer (BackEndTea, SpacePossum)
741
+ * feature #3442 Add CommentToPhpdocFixer (kubawerlos, keradus)
742
+ * feature #3448 OrderedClassElementsFixer - added sortAlgorithm option (meridius)
743
+ * feature #3454 Add StringLineEndingFixer (iluuu1994, SpacePossum, keradus, julienfalque)
744
+ * feature #3477 PhpUnitStrictFixer: handle static calls (Slamdunk)
745
+ * feature #3479 PhpUnitConstructFixer: handle static calls (Slamdunk)
746
+ * feature #3507 Add PhpUnitOrderedCoversFixer (Slamdunk)
747
+ * feature #3545 Add the 'none' sort algorithm to OrderedImportsFixer (EvgenyOrekhov)
748
+ * feature #3588 Add NoAlternativeSyntaxFixer (eddmash, keradus)
749
+ * minor #3414 DescribeCommand: add fixer class when verbose (Slamdunk)
750
+ * minor #3432 ConfigurationDefinitionFixerInterface - fix deprecation notice (keradus)
751
+ * minor #3527 Deprecate last param of Tokens::findBlockEnd (ntzm, keradus)
752
+ * minor #3539 Update UnifiedDiffOutputBuilder from gecko-packages/gecko-diff-output-builder usage after it was incorporated into sebastian/diff (keradus)
753
+ * minor #3549 DescribeCommand - use our Differ wrapper class, not external one directly (keradus)
754
+ * minor #3592 Support PHPUnit 7 (keradus)
755
+ * minor #3619 Travis - extend additional files list (keradus)
756
+
757
+ Changelog for v2.10.5
758
+ ---------------------
759
+
760
+ * bug #3344 Fix method chaining indentation in HTML (julienfalque)
761
+ * bug #3594 ElseifFixer - Bug with alternative syntax (kubawerlos)
762
+ * bug #3600 StrictParamFixer - Fix issue when functions are imported (ntzm, keradus)
763
+ * minor #3589 FixerFactoryTest - add missing test (SpacePossum, keradus)
764
+ * minor #3610 make phar extension optional (Tom Klingenberg, keradus)
765
+ * minor #3612 Travis - allow for hhvm failures (keradus)
766
+ * minor #3615 Detect fabbot.io (julienfalque, keradus)
767
+ * minor #3616 FixerFactoryTest - Don't rely on autovivification (keradus)
768
+ * minor #3621 FixerFactoryTest - apply CS (keradus)
769
+
770
+ Changelog for v2.10.4
771
+ ---------------------
772
+
773
+ * bug #3446 Add PregWrapper (kubawerlos)
774
+ * bug #3464 IncludeFixer - fix incorrect order of fixing (kubawerlos, SpacePossum)
775
+ * bug #3496 Bug in Tokens::removeLeadingWhitespace (kubawerlos, SpacePossum, keradus)
776
+ * bug #3557 AbstractDoctrineAnnotationFixer: edge case bugfix (Slamdunk)
777
+ * bug #3574 GeneralPhpdocAnnotationRemoveFixer - remove PHPDoc if no content is left (SpacePossum)
778
+ * minor #3563 DX add missing covers annotations (keradus)
779
+ * minor #3564 Use ::class keyword when possible (keradus)
780
+ * minor #3565 Use EventDispatcherInterface instead of EventDispatcher when possible (keradus)
781
+ * minor #3566 Update PHPUnitGoodPractices\Traits (keradus)
782
+ * minor #3572 DX: allow for more phpunit-speedtrap versions to support more PHPUnit versions (keradus)
783
+ * minor #3576 Fix Doctrine Annotation test cases merging (julienfalque)
784
+ * minor #3577 DoctrineAnnotationArrayAssignmentFixer - Add test case (julienfalque)
785
+
786
+ Changelog for v2.10.3
787
+ ---------------------
788
+
789
+ * bug #3504 NoBlankLinesAfterPhpdocFixer - allow blank line before declare statement (julienfalque)
790
+ * bug #3522 Remove LOCK_EX (SpacePossum)
791
+ * bug #3560 SelfAccessorFixer is risky (Slamdunk)
792
+ * minor #3435 Add tests for general_phpdoc_annotation_remove (BackEndTea)
793
+ * minor #3484 Create Tokens::findBlockStart (ntzm)
794
+ * minor #3512 Add missing array typehints (ntzm)
795
+ * minor #3513 Making AppVeyor happy (kubawerlos)
796
+ * minor #3516 Use null|type instead of ?type in PHPDocs (ntzm)
797
+ * minor #3518 FixerFactoryTest - Test each priority test file is listed as test (SpacePossum)
798
+ * minor #3519 Fix typo (SpacePossum)
799
+ * minor #3520 Fix typos: ran vs. run (SpacePossum)
800
+ * minor #3521 Use HTTPS (carusogabriel)
801
+ * minor #3526 Remove gecko dependency (SpacePossum, keradus, julienfalque)
802
+ * minor #3531 Backport PHPMD to LTS version to ease maintainability (keradus)
803
+ * minor #3532 Implement Tokens::findOppositeBlockEdge (ntzm)
804
+ * minor #3533 DX: SCA - drop src/Resources exclusion (keradus)
805
+ * minor #3538 Don't use third parameter of Tokens::findBlockStart (ntzm)
806
+ * minor #3542 Enhancement: Run composer-normalize on Travis CI (localheinz, keradus)
807
+ * minor #3550 AutoReview\FixerFactoryTest - fix missing priority test, mark not fully valid test as incomplete (keradus)
808
+ * minor #3555 DX: composer.json - drop branch-alias, branch is already following the version (keradus)
809
+ * minor #3556 DX: Add AutoReview/ComposerTest (keradus)
810
+ * minor #3559 Don't expose new files under Test namespace (keradus)
811
+ * minor #3561 PHPUnit5 - add in place missing compat layer for PHPUnit6 (keradus)
812
+
813
+ Changelog for v2.10.2
814
+ ---------------------
815
+
816
+ * bug #3502 Fix missing file in export (keradus)
817
+
818
+ Changelog for v2.10.1
819
+ ---------------------
820
+
821
+ * bug #3265 YodaFixer - fix problems of block statements followed by ternary statements (weareoutman, keradus, SpacePossum)
822
+ * bug #3367 NoUnusedImportsFixer - fix comment handling (SpacePossum, keradus)
823
+ * bug #3438 PhpUnitTestAnnotationFixer: Do not prepend with test if method is test() (localheinz, SpacePossum)
824
+ * bug #3455 NoEmptyCommentFixer - comment block detection for line ending different than LF (kubawerlos, SpacePossum)
825
+ * bug #3458 SilencedDeprecationErrorFixer - fix edge cases (kubawerlos)
826
+ * bug #3466 no_whitespace_in_blank_line and no_blank_lines_after_phpdoc fixers bug (kubawerlos, keradus)
827
+ * bug #3472 YodaStyleFixer - do not un-Yoda if right side is assignment (SpacePossum, keradus)
828
+ * bug #3492 PhpdocScalarFixer - Add callback pesudo-type to callable type (carusogabriel)
829
+ * minor #3354 Added missing types to the PhpdocTypesFixer (GrahamCampbell)
830
+ * minor #3406 Fix for escaping in README (kubawerlos)
831
+ * minor #3430 Fix integration test (SpacePossum)
832
+ * minor #3431 Add missing tests (SpacePossum)
833
+ * minor #3440 Add a handful of integration tests (BackEndTea)
834
+ * minor #3443 ConfigurableFixerInterface - not deprecated but TODO (SpacePossum)
835
+ * minor #3444 IntegrationTest - ensure tests in priority dir are priority tests indeed (keradus)
836
+ * minor #3494 Add missing PHPDoc param type (ntzm)
837
+ * minor #3495 Swap @var type and element (ntzm)
838
+ * minor #3498 NoUnusedImportsFixer - fix deprecation (keradus)
839
+
840
+ Changelog for v2.10.0
841
+ ---------------------
842
+
843
+ * feature #3290 Add PhpdocOpeningClosingFixer (Slamdunk, keradus)
844
+ * feature #3327 Add MultilineWhitespaceBeforeSemicolonsFixer (egircys, keradus)
845
+ * feature #3351 PhuUnit: migrate getMock to createPartialMock when arguments count is 2 (Slamdunk)
846
+ * feature #3362 Add BacktickToShellExecFixer (Slamdunk)
847
+ * minor #3285 PHPUnit - use protective traits (keradus)
848
+ * minor #3329 ConfigurationResolver - detect deprecated fixers (keradus, SpacePossum)
849
+ * minor #3343 Tokens - improve block end lookup (keradus)
850
+ * minor #3360 Adjust Symfony ruleset (keradus)
851
+ * minor #3361 no_extra_consecutive_blank_lines - rename to no_extra_blank_lines (with BC layer) (keradus)
852
+ * minor #3363 progress-type - name main option value 'dots' (keradus)
853
+ * minor #3404 Deprecate "use_yoda_style" in IsNullFixer (kubawerlos, keradus)
854
+ * minor #3418 ConfigurableFixerInterface, ConfigurationDefinitionFixerInterface - update deprecations (keradus)
855
+ * minor #3419 Dont use deprecated fixer in itest (keradus)
856
+
857
+ Changelog for v2.9.3
858
+ --------------------
859
+
860
+ * bug #3502 Fix missing file in export (keradus)
861
+
862
+ Changelog for v2.9.2
863
+ --------------------
864
+
865
+ * bug #3265 YodaFixer - fix problems of block statements followed by ternary statements (weareoutman, keradus, SpacePossum)
866
+ * bug #3367 NoUnusedImportsFixer - fix comment handling (SpacePossum, keradus)
867
+ * bug #3438 PhpUnitTestAnnotationFixer: Do not prepend with test if method is test() (localheinz, SpacePossum)
868
+ * bug #3455 NoEmptyCommentFixer - comment block detection for line ending different than LF (kubawerlos, SpacePossum)
869
+ * bug #3458 SilencedDeprecationErrorFixer - fix edge cases (kubawerlos)
870
+ * bug #3466 no_whitespace_in_blank_line and no_blank_lines_after_phpdoc fixers bug (kubawerlos, keradus)
871
+ * bug #3472 YodaStyleFixer - do not un-Yoda if right side is assignment (SpacePossum, keradus)
872
+ * minor #3354 Added missing types to the PhpdocTypesFixer (GrahamCampbell)
873
+ * minor #3406 Fix for escaping in README (kubawerlos)
874
+ * minor #3430 Fix integration test (SpacePossum)
875
+ * minor #3431 Add missing tests (SpacePossum)
876
+ * minor #3440 Add a handful of integration tests (BackEndTea)
877
+ * minor #3444 IntegrationTest - ensure tests in priority dir are priority tests indeed (keradus)
878
+ * minor #3494 Add missing PHPDoc param type (ntzm)
879
+ * minor #3495 Swap @var type and element (ntzm)
880
+ * minor #3498 NoUnusedImportsFixer - fix deprecation (keradus)
881
+
882
+ Changelog for v2.9.1
883
+ --------------------
884
+
885
+ * bug #3298 DiffConsoleFormatter - fix output escaping. (SpacePossum)
886
+ * bug #3312 PhpUnitTestAnnotationFixer: Only remove prefix if it really is a prefix (localheinz)
887
+ * bug #3318 SingleLineCommentStyleFixer - fix closing tag inside comment causes an error (kubawerlos)
888
+ * bug #3334 ExplicitStringVariableFixer: handle parsed array and object (Slamdunk)
889
+ * bug #3337 BracesFixer: nowdoc bug on template files (Slamdunk)
890
+ * bug #3349 Fix stdin handling and add tests for it (keradus)
891
+ * bug #3350 PhpUnitNoExpectationAnnotationFixer - fix handling of multiline expectedExceptionMessage annotation (Slamdunk)
892
+ * bug #3352 FunctionToConstantFixer - bugfix for get_class with leading backslash (kubawerlos)
893
+ * bug #3359 BracesFixer - handle comment for content outside of given block (keradus)
894
+ * bug #3371 IsNullFixer must be run before YodaStyleFixer (kubawerlos)
895
+ * bug #3373 PhpdocAlignFixer - Fix removing of everything after @ when there is a space after the @ (ntzm)
896
+ * bug #3415 FileFilterIterator - input checks and utests (SpacePossum, keradus)
897
+ * bug #3420 SingleLineCommentStyleFixer - fix 'strpos() expects parameter 1 to be string, boolean given' (keradus, SpacePossum)
898
+ * bug #3428 Fix archive analysing (keradus)
899
+ * bug #3429 Fix archive analysing (keradus)
900
+ * minor #3137 PHPUnit - use common base class (keradus)
901
+ * minor #3311 FinalInternalClassFixer - fix typo (localheinz)
902
+ * minor #3328 Remove duplicated space in exceptions (keradus)
903
+ * minor #3342 PhpUnitDedicateAssertFixer - Remove unexistent method is_boolean (carusogabriel)
904
+ * minor #3345 StdinFileInfo - fix __toString (keradus)
905
+ * minor #3346 StdinFileInfo - drop getContents (keradus)
906
+ * minor #3347 DX: reapply newest CS (keradus)
907
+ * minor #3365 COOKBOOK-FIXERS.md - update to provide definition instead of description (keradus)
908
+ * minor #3370 AbstractFixer - FQCN in in exceptions (Slamdunk)
909
+ * minor #3372 ProjectCodeTest - fix comment (keradus)
910
+ * minor #3393 Method call typos (Slamdunk, keradus)
911
+ * minor #3402 Always provide delimiter to `preg_quote` calls (ntzm)
912
+ * minor #3403 Remove unused import (ntzm)
913
+ * minor #3405 Fix `fopen` mode (ntzm)
914
+ * minor #3407 CombineConsecutiveIssetsFixer - Improve description (kubawerlos)
915
+ * minor #3408 Improving fixers descriptions (kubawerlos)
916
+ * minor #3409 move itests from misc to priority (keradus)
917
+ * minor #3411 Better type hinting for AbstractFixerTestCase::$fixer (kubawerlos)
918
+ * minor #3412 Convert `strtolower` inside `strpos` to just `stripos` (ntzm)
919
+ * minor #3421 DX: Use ::class (keradus)
920
+ * minor #3424 AbstractFixerTest: fix expectException arguments (Slamdunk, keradus)
921
+ * minor #3425 FixerFactoryTest - test that priority pair fixers have itest (keradus, SpacePossum)
922
+ * minor #3427 ConfigurationResolver: fix @return annotation (Slamdunk)
923
+
924
+ Changelog for v2.9.0
925
+ --------------------
926
+
927
+ * feature #3063 Method chaining indentation fixer (boliev, julienfalque)
928
+ * feature #3076 Add ExplicitStringVariableFixer (Slamdunk, keradus)
929
+ * feature #3098 MethodSeparationFixer - add class elements separation options (SpacePossum, keradus)
930
+ * feature #3155 Add EscapeImplicitBackslashesFixer (Slamdunk)
931
+ * feature #3164 Add ExplicitIndirectVariableFixer (Slamdunk, keradus)
932
+ * feature #3183 FinalInternalClassFixer introduction (keradus, SpacePossum)
933
+ * feature #3187 StaticLambdaFixer - introduction (SpacePossum, keradus)
934
+ * feature #3209 PhpdocAlignFixer - Make @method alignable (ntzm)
935
+ * feature #3275 Add PhpUnitTestAnnotationFixer (BackEndTea, keradus)
936
+
937
+ Changelog for v2.8.4
938
+ --------------------
939
+
940
+ * bug #3281 SelfAccessorFixer - stop modifying traits (kubawerlos)
941
+ * minor #3195 Add self-update command test (julienfalque)
942
+ * minor #3287 FileCacheManagerTest - drop duplicated line (keradus)
943
+ * minor #3292 PHPUnit - set memory limit (veewee)
944
+ * minor #3306 Token - better input validation (keradus)
945
+ * minor #3310 Upgrade PHP Coveralls (keradus)
946
+
947
+ Changelog for v2.8.3
948
+ --------------------
949
+
950
+ * bug #3173 SimplifiedNullReturnFixer - handle nullable return types (Slamdunk)
951
+ * bug #3268 PhpUnitNoExpectationAnnotationFixer - add case with backslashes (keradus, Slamdunk)
952
+ * bug #3272 PhpdocTrimFixer - unicode support (SpacePossum)
953
+
954
+ Changelog for v2.8.2
955
+ --------------------
956
+
957
+ * bug #3225 PhpdocTrimFixer - Fix handling of lines without leading asterisk (julienfalque)
958
+ * bug #3241 NoExtraConsecutiveBlankLinesFixer - do not crash on ^M LF only (SpacePossum)
959
+ * bug #3242 PhpUnitNoExpectationAnnotationFixer - fix ' handling (keradus)
960
+ * bug #3243 PhpUnitExpectationFixer - don't create ->expectExceptionMessage(null) (keradus)
961
+ * bug #3244 PhpUnitNoExpectationAnnotationFixer - expectation extracted from annotation shall be separated from rest of code with one blank line (keradus)
962
+ * bug #3259 PhpUnitNamespacedFixer - fix isCandidate to not rely on class declaration (keradus)
963
+ * bug #3261 PhpUnitNamespacedFixer - properly fix next usage of already fixed class (keradus)
964
+ * bug #3262 ToolInfo - support installation by branch as well (keradus)
965
+ * bug #3263 NoBreakCommentFixer - Fix handling comment text with PCRE characters (julienfalque)
966
+ * bug #3266 PhpUnitConstructFixer - multiple asserts bug (kubawerlos)
967
+ * minor #3239 Improve contributing guide and issue template (julienfalque)
968
+ * minor #3246 Make ToolInfo methods non-static (julienfalque)
969
+ * minor #3249 PhpUnitNoExpectationAnnotationFixerTest - fix hidden conflict (keradus)
970
+ * minor #3250 Travis: fail early, spare resources, save the Earth (Slamdunk, keradus)
971
+ * minor #3251 Create Title for config file docs section (IanEdington)
972
+ * minor #3254 AutoReview/FixerFactoryTest::testFixersPriority: verbose assertion message (Slamdunk)
973
+ * minor #3255 IntegrationTest: output exception stack trace (Slamdunk)
974
+ * minor #3257 README.rst - Fixed bullet list formatting (moebrowne)
975
+
976
+ Changelog for v2.8.1
977
+ --------------------
978
+
979
+ * bug #3199 TokensAnalyzer - getClassyElements (SpacePossum)
980
+ * bug #3208 BracesFixer - Fix for instantiation in control structures (julienfalque, SpacePossum)
981
+ * bug #3215 BinaryOperatorSpacesFixer - Fix spaces around multiple exception catching (|) (ntzm)
982
+ * bug #3216 AbstractLinesBeforeNamespaceFixer - add min. and max. option, not only single target count (SpacePossum)
983
+ * bug #3217 TokenizerLinter - fix lack of linting when code is cached (SpacePossum, keradus)
984
+ * minor #3200 Skip slow test when Xdebug is loaded (julienfalque)
985
+ * minor #3211 Use udiff format in CI (julienfalque)
986
+ * minor #3212 Handle rulesets unknown to fabbot.io (julienfalque)
987
+ * minor #3219 Normalise references to GitHub in docs (ntzm)
988
+ * minor #3226 Remove unused imports (ntzm)
989
+ * minor #3231 Fix typos (ntzm)
990
+ * minor #3234 Simplify Cache\Signature::equals (ntzm)
991
+ * minor #3237 UnconfigurableFixer - use only LF (keradus)
992
+ * minor #3238 AbstractFixerTest - fix @cover annotation (keradus)
993
+
994
+ Changelog for v2.8.0
995
+ --------------------
996
+
997
+ * feature #3065 Add IncrementStyleFixer (kubawerlos)
998
+ * feature #3119 Feature checkstyle reporter (K-Phoen)
999
+ * feature #3162 Add udiff as diff format (SpacePossum, keradus)
1000
+ * feature #3170 Add CompactNullableTypehintFixer (jfcherng)
1001
+ * feature #3189 Add PHP_CS_FIXER_FUTURE_MODE env (keradus)
1002
+ * feature #3201 Add PHPUnit Migration rulesets and fixers (keradus)
1003
+ * minor #3149 AbstractProxyFixer - Support multiple proxied fixers (julienfalque)
1004
+ * minor #3160 Add DeprecatedFixerInterface (kubawerlos)
1005
+ * minor #3185 IndentationTypeFixerTest - clean up (SpacePossum, keradus)
1006
+ * minor #3198 Cleanup: add test that there is no deprecated fixer in rule set (kubawerlos)
1007
+
1008
+ Changelog for v2.7.5
1009
+ --------------------
1010
+
1011
+ * bug #3225 PhpdocTrimFixer - Fix handling of lines without leading asterisk (julienfalque)
1012
+ * bug #3241 NoExtraConsecutiveBlankLinesFixer - do not crash on ^M LF only (SpacePossum)
1013
+ * bug #3262 ToolInfo - support installation by branch as well (keradus)
1014
+ * bug #3263 NoBreakCommentFixer - Fix handling comment text with PCRE characters (julienfalque)
1015
+ * bug #3266 PhpUnitConstructFixer - multiple asserts bug (kubawerlos)
1016
+ * minor #3239 Improve contributing guide and issue template (julienfalque)
1017
+ * minor #3246 Make ToolInfo methods non-static (julienfalque)
1018
+ * minor #3250 Travis: fail early, spare resources, save the Earth (Slamdunk, keradus)
1019
+ * minor #3251 Create Title for config file docs section (IanEdington)
1020
+ * minor #3254 AutoReview/FixerFactoryTest::testFixersPriority: verbose assertion message (Slamdunk)
1021
+ * minor #3255 IntegrationTest: output exception stack trace (Slamdunk)
1022
+
1023
+ Changelog for v2.7.4
1024
+ --------------------
1025
+
1026
+ * bug #3199 TokensAnalyzer - getClassyElements (SpacePossum)
1027
+ * bug #3208 BracesFixer - Fix for instantiation in control structures (julienfalque, SpacePossum)
1028
+ * bug #3215 BinaryOperatorSpacesFixer - Fix spaces around multiple exception catching (|) (ntzm)
1029
+ * bug #3216 AbstractLinesBeforeNamespaceFixer - add min. and max. option, not only single target count (SpacePossum)
1030
+ * bug #3217 TokenizerLinter - fix lack of linting when code is cached (SpacePossum, keradus)
1031
+ * minor #3200 Skip slow test when Xdebug is loaded (julienfalque)
1032
+ * minor #3219 Normalise references to GitHub in docs (ntzm)
1033
+ * minor #3226 Remove unused imports (ntzm)
1034
+ * minor #3231 Fix typos (ntzm)
1035
+ * minor #3234 Simplify Cache\Signature::equals (ntzm)
1036
+ * minor #3237 UnconfigurableFixer - use only LF (keradus)
1037
+ * minor #3238 AbstractFixerTest - fix @cover annotation (keradus)
1038
+
1039
+ Changelog for v2.7.3
1040
+ --------------------
1041
+
1042
+ * bug #3114 SelfAccessorFixer - Fix type declarations replacement (julienfalque)
1043
+
1044
+ Changelog for v2.7.2
1045
+ --------------------
1046
+
1047
+ * bug #3062 BraceClassInstantiationTransformer - Fix instantiation inside method call braces case (julienfalque, keradus)
1048
+ * bug #3083 SingleBlankLineBeforeNamespaceFixer - Fix handling namespace right after opening tag (mlocati)
1049
+ * bug #3109 SwitchCaseSemicolonToColonFixer - Fix bug with nested constructs (SpacePossum)
1050
+ * bug #3117 Multibyte character in array key makes alignment incorect (kubawerlos)
1051
+ * bug #3123 Cache - File permissions (SpacePossum)
1052
+ * bug #3138 NoHomoglyphNamesFixer - fix crash on non-ascii but not mapped either (SpacePossum)
1053
+ * bug #3172 IndentationTypeFixer - do not touch whitespace that is not indentation (SpacePossum)
1054
+ * bug #3176 NoMultilineWhitespaceBeforeSemicolonsFixer - SpaceAfterSemicolonFixer - priority fix (SpacePossum)
1055
+ * bug #3193 TokensAnalyzer::getClassyElements - sort result before returning (SpacePossum)
1056
+ * bug #3196 SelfUpdateCommand - fix exit status when can't determine newest version (julienfalque)
1057
+ * minor #3107 ConfigurationResolver - improve error message when rule is not found (SpacePossum)
1058
+ * minor #3113 Add WordMatcher (keradus)
1059
+ * minor #3128 README: remove deprecated rule from CLI examples (chteuchteu)
1060
+ * minor #3133 Unify Reporter tests (keradus)
1061
+ * minor #3134 Allow Symfony 4 (keradus, garak)
1062
+ * minor #3136 PHPUnit - call hooks from parent class as well (keradus)
1063
+ * minor #3141 Unify description of deprecated fixer (kubawerlos)
1064
+ * minor #3144 PhpUnitDedicateAssertFixer - Sort map and array by function name (localheinz)
1065
+ * minor #3145 misc - Typo (localheinz)
1066
+ * minor #3150 Fix CircleCI (julienfalque)
1067
+ * minor #3151 Update gitattributes to ignore next file (keradus)
1068
+ * minor #3156 Update php-coveralls (keradus)
1069
+ * minor #3166 README - add link to new gitter channel. (SpacePossum)
1070
+ * minor #3174 Update UPGRADE.md (vitek-rostislav)
1071
+ * minor #3180 Fix usage of static variables (kubawerlos)
1072
+ * minor #3182 Add support for PHPUnit 6, drop PHPUnit 4 (keradus)
1073
+ * minor #3184 Code grooming - sort content of arrays (keradus)
1074
+ * minor #3191 Travis - add nightly build to allow_failures due to Travis issues (keradus)
1075
+ * minor #3197 DX groom CS (keradus)
1076
+
1077
+ Changelog for v2.7.1
1078
+ --------------------
1079
+
1080
+ * bug #3115 NoUnneededFinalMethodFixer - fix edge case (Slamdunk)
1081
+
1082
+ Changelog for v2.7.0
1083
+ --------------------
1084
+
1085
+ * feature #2573 BinaryOperatorSpaces reworked (SpacePossum, keradus)
1086
+ * feature #3073 SpaceAfterSemicolonFixer - Add option to remove space in empty for expressions (julienfalque)
1087
+ * feature #3089 NoAliasFunctionsFixer - add imap aliases (Slamdunk)
1088
+ * feature #3093 NoUnneededFinalMethodFixer - Remove final keyword from private methods (localheinz, keradus)
1089
+ * minor #3068 Symfony:risky ruleset - add no_homoglyph_names (keradus)
1090
+ * minor #3074 [IO] Replace Diff with fork version (SpacePossum)
1091
+
1092
+ Changelog for v2.6.1
1093
+ --------------------
1094
+
1095
+ * bug #3052 Fix false positive warning about paths overridden by provided as command arguments (kubawerlos)
1096
+ * bug #3053 CombineConsecutiveIssetsFixer - fix priority (SpacePossum)
1097
+ * bug #3058 IsNullFixer - fix whitespace handling (roukmoute)
1098
+ * bug #3069 MethodArgumentSpaceFixer - new test case (keradus)
1099
+ * bug #3072 IsNullFixer - fix non_yoda_style edge case (keradus)
1100
+ * bug #3088 Drop dedicated Phar stub (keradus)
1101
+ * bug #3100 NativeFunctionInvocationFixer - Fix test if previous token is already namespace separator (SpacePossum)
1102
+ * bug #3104 DoctrineAnnotationIndentationFixer - Fix str_repeat() error (julienfalque)
1103
+ * minor #3038 Support PHP 7.2 (SpacePossum, keradus)
1104
+ * minor #3064 Fix couple of typos (KKSzymanowski)
1105
+ * minor #3070 YodaStyleFixer - Clarify configuration parameters (SteveJobzniak)
1106
+ * minor #3078 ConfigurationResolver - hide context while including config file (keradus)
1107
+ * minor #3080 Direct function call instead of by string (kubawerlos)
1108
+ * minor #3085 CiIntegrationTest - skip when no git is available (keradus)
1109
+ * minor #3087 phar-stub.php - allow PHP 7.2 (keradus)
1110
+ * minor #3092 .travis.yml - fix matrix for PHP 7.1 (keradus)
1111
+ * minor #3094 NoUnneededFinalMethodFixer - Add test cases (julienfalque)
1112
+ * minor #3111 DoctrineAnnotationIndentationFixer - Restore test case (julienfalque)
1113
+
1114
+ Changelog for v2.6.0
1115
+ --------------------
1116
+
1117
+ * bug #3039 YodaStyleFixer - Fix echo case (SpacePossum, keradus)
1118
+ * feature #2446 Add YodaStyleFixer (SpacePossum)
1119
+ * feature #2940 Add NoHomoglyphNamesFixer (mcfedr, keradus)
1120
+ * feature #3012 Add CombineConsecutiveIssetsFixer (SpacePossum)
1121
+ * minor #3037 Update SF rule set (SpacePossum)
1122
+
1123
+ Changelog for v2.5.1
1124
+ --------------------
1125
+
1126
+ * bug #3002 Bugfix braces (mnabialek)
1127
+ * bug #3010 Fix handling of Github releases (julienfalque, keradus)
1128
+ * bug #3015 Fix exception arguments (julienfalque)
1129
+ * bug #3016 Verify phar file (keradus)
1130
+ * bug #3021 Risky rules cleanup (kubawerlos)
1131
+ * bug #3023 RandomApiMigrationFixer - "rand();" to "random_int(0, getrandmax());" fixing (SpacePossum)
1132
+ * bug #3024 ConfigurationResolver - Handle empty "rules" value (SpacePossum, keradus)
1133
+ * bug #3031 IndentationTypeFixer - fix handling tabs in indented comments (keradus)
1134
+ * minor #2999 Notice when paths from config file are overridden by command arguments (julienfalque, keradus)
1135
+ * minor #3007 Add PHP 7.2 to Travis build matrix (Jean85)
1136
+ * minor #3009 CiIntegrationTest - run local (SpacePossum)
1137
+ * minor #3013 Adjust phpunit configuration (localheinz)
1138
+ * minor #3017 Fix: Risky tests (localheinz)
1139
+ * minor #3018 Fix: Make sure that data providers are named correctly (localheinz, keradus)
1140
+ * minor #3032 .php_cs.dist - handling UnexpectedValueException (keradus)
1141
+ * minor #3033 Use ::class (keradus)
1142
+ * minor #3034 Follow newest CS (keradus)
1143
+ * minor #3036 Drop not existing Standalone group from PHPUnit configuration and duplicated internal tags (keradus)
1144
+ * minor #3042 Update gitter address (keradus)
1145
+
1146
+ Changelog for v2.5.0
1147
+ --------------------
1148
+
1149
+ * feature #2770 DoctrineAnnotationSpaces - split assignments options (julienfalque)
1150
+ * feature #2843 Add estimating-max progress output type (julienfalque)
1151
+ * feature #2885 Add NoSuperfluousElseifFixer (julienfalque)
1152
+ * feature #2929 Add NoUnneededCurlyBracesFixer (SpacePossum)
1153
+ * feature #2944 FunctionToConstantFixer - handle get_class() -> __CLASS__ as well (SpacePossum)
1154
+ * feature #2953 BlankLineBeforeStatementFixer - Add more statements (localheinz, keradus)
1155
+ * feature #2972 Add NoUnneededFinalMethodFixer (Slamdunk, keradus)
1156
+ * feature #2992 Add Doctrine Annotation ruleset (julienfalque)
1157
+ * minor #2926 Token::getNameForId (SpacePossum)
1158
+
1159
+ Changelog for v2.4.2
1160
+ --------------------
1161
+
1162
+ * bug #3002 Bugfix braces (mnabialek)
1163
+ * bug #3010 Fix handling of Github releases (julienfalque, keradus)
1164
+ * bug #3015 Fix exception arguments (julienfalque)
1165
+ * bug #3016 Verify phar file (keradus)
1166
+ * bug #3021 Risky rules cleanup (kubawerlos)
1167
+ * bug #3023 RandomApiMigrationFixer - "rand();" to "random_int(0, getrandmax());" fixing (SpacePossum)
1168
+ * bug #3024 ConfigurationResolver - Handle empty "rules" value (SpacePossum, keradus)
1169
+ * bug #3031 IndentationTypeFixer - fix handling tabs in indented comments (keradus)
1170
+ * minor #2999 Notice when paths from config file are overridden by command arguments (julienfalque, keradus)
1171
+ * minor #3007 Add PHP 7.2 to Travis build matrix (Jean85)
1172
+ * minor #3009 CiIntegrationTest - run local (SpacePossum)
1173
+ * minor #3013 Adjust phpunit configuration (localheinz)
1174
+ * minor #3017 Fix: Risky tests (localheinz)
1175
+ * minor #3018 Fix: Make sure that data providers are named correctly (localheinz, keradus)
1176
+ * minor #3032 .php_cs.dist - handling UnexpectedValueException (keradus)
1177
+ * minor #3033 Use ::class (keradus)
1178
+ * minor #3034 Follow newest CS (keradus)
1179
+ * minor #3036 Drop not existing Standalone group from PHPUnit configuration and duplicated internal tags (keradus)
1180
+ * minor #3042 Update gitter address (keradus)
1181
+
1182
+ Changelog for v2.4.1
1183
+ --------------------
1184
+
1185
+ * bug #2925 Improve CI integration suggestion (julienfalque)
1186
+ * bug #2928 TokensAnalyzer::getClassyElements - Anonymous class support (SpacePossum)
1187
+ * bug #2931 Psr0Fixer, Psr4Fixer - ignore "new class" syntax (dg, keradus)
1188
+ * bug #2934 Config - fix handling rule without value (keradus, SpacePossum)
1189
+ * bug #2939 NoUnusedImportsFixer - Fix extra blank line (julienfalque)
1190
+ * bug #2941 PHP 7.2 - Group imports with trailing comma support (SpacePossum, julienfalque)
1191
+ * bug #2954 NoBreakCommentFixer - Disable case sensitivity (julienfalque)
1192
+ * bug #2959 MethodArgumentSpaceFixer - Skip body of fixed function (greg0ire)
1193
+ * bug #2984 AlignMultilineCommentFixer - handle uni code (SpacePossum)
1194
+ * bug #2987 Fix incorrect indentation of comments in `braces` fixer (rob006)
1195
+ * minor #2924 Add missing Token deprecations (julienfalque)
1196
+ * minor #2927 WhiteSpaceConfig - update message copy and more strict tests (SpacePossum, keradus)
1197
+ * minor #2930 Trigger website build (keradus)
1198
+ * minor #2932 Integrate CircleCI (keradus, aidantwoods)
1199
+ * minor #2933 ProcessLinterTest - Ensure Windows test only runs on Windows, add a Mac test execution (aidantwoods)
1200
+ * minor #2935 special handling of fabbot.io service if it's using too old PHP CS Fixer version (keradus)
1201
+ * minor #2937 Travis: execute 5.3 job on precise (keradus)
1202
+ * minor #2938 Tests fix configuration of project (SpacePossum, keradus)
1203
+ * minor #2943 FunctionToConstantFixer - test with diff. arguments than fixable (SpacePossum)
1204
+ * minor #2945 BlankLineBeforeStatementFixerTest - Fix covered class (julienfalque)
1205
+ * minor #2946 Detect extra old installations (keradus)
1206
+ * minor #2947 Test suggested CI integration (keradus)
1207
+ * minor #2951 AccessibleObject - remove most of usage (keradus)
1208
+ * minor #2952 BlankLineBeforeStatementFixer - Reference fixer instead of test class (localheinz)
1209
+ * minor #2955 Travis - stop using old TASK_SCA residue (keradus)
1210
+ * minor #2968 AssertTokensTrait - don't use AccessibleObject (keradus)
1211
+ * minor #2969 Shrink down AccessibleObject usage (keradus)
1212
+ * minor #2982 TrailingCommaInMultilineArrayFixer - simplify isMultilineArray condition (TomasVotruba)
1213
+ * minor #2989 CiIntegrationTest - fix min supported PHP versions (keradus)
1214
+
1215
+ Changelog for v2.4.0
1216
+ --------------------
1217
+
1218
+ * bug #2880 NoBreakCommentFixer - fix edge case (julienfalque)
1219
+ * bug #2900 VoidReturnFixer - handle functions containing anonymous functions/classes (bendavies, keradus)
1220
+ * bug #2902 Fix test classes constructor (julienfalque)
1221
+ * feature #2384 Add BlankLineBeforeStatementFixer (localheinz, keradus, SpacePossum)
1222
+ * feature #2440 MethodArgumentSpaceFixer - add ensure_fully_multiline option (greg0ire)
1223
+ * feature #2649 PhpdocAlignFixer - make fixer configurable (ntzm)
1224
+ * feature #2664 Add DoctrineAnnotationArrayAssignmentFixer (julienfalque)
1225
+ * feature #2667 Add NoBreakCommentFixer (julienfalque)
1226
+ * feature #2684 BracesFixer - new options for braces position after control structures and anonymous constructs (aidantwoods, keradus)
1227
+ * feature #2701 NoExtraConsecutiveBlankLinesFixer - Add more configuration options related to switch statements (SpacePossum)
1228
+ * feature #2740 Add VoidReturnFixer (mrmark)
1229
+ * feature #2765 DoctrineAnnotationIndentationFixer - add option to indent mixed lines (julienfalque)
1230
+ * feature #2815 NonPrintableCharacterFixer - Add option to replace with escape sequences (julienfalque, keradus)
1231
+ * feature #2822 Add NoNullPropertyInitializationFixer (ntzm, julienfalque, SpacePossum)
1232
+ * feature #2825 Add PhpdocTypesOrderFixer (julienfalque, keradus)
1233
+ * feature #2856 CastSpacesFixer - add space option (kubawerlos, keradus)
1234
+ * feature #2857 Add AlignMultilineCommentFixer (Slamdunk, keradus)
1235
+ * feature #2866 Add SingleLineCommentStyleFixer, deprecate HashToSlashCommentFixer (Slamdunk, keradus)
1236
+ * minor #2773 Travis - use stages (keradus)
1237
+ * minor #2794 Drop HHVM support (keradus, julienfalque)
1238
+ * minor #2801 ProjectCodeTest - Fix typo in deprecation message (SpacePossum)
1239
+ * minor #2818 Token become immutable, performance optimizations (keradus)
1240
+ * minor #2877 Fix PHPMD report (julienfalque)
1241
+ * minor #2894 NonPrintableCharacterFixer - fix handling required PHP version on PHPUnit 4.x (keradus)
1242
+ * minor #2921 InvalidForEnvFixerConfigurationException - fix handling in tests on 2.4 line (keradus)
1243
+
1244
+ Changelog for v2.3.3
1245
+ --------------------
1246
+
1247
+ * bug #2807 NoUselessElseFixer - Fix detection of conditional block (SpacePossum)
1248
+ * bug #2809 Phar release - fix readme generation (SpacePossum, keradus)
1249
+ * bug #2827 MethodArgumentSpaceFixer - Always remove trailing spaces (julienfalque)
1250
+ * bug #2835 SelfAcessorFixer - class property fix (mnabialek)
1251
+ * bug #2848 PhpdocIndentFixer - fix edge case with inline phpdoc (keradus)
1252
+ * bug #2849 BracesFixer - Fix indentation issues with comments (julienfalque)
1253
+ * bug #2851 Tokens - ensureWhitespaceAtIndex (GrahamCampbell, SpacePossum)
1254
+ * bug #2854 NoLeadingImportSlashFixer - Removing leading slash from import even when in global space (kubawerlos)
1255
+ * bug #2858 Support generic types (keradus)
1256
+ * bug #2869 Fix handling required configuration (keradus)
1257
+ * bug #2881 NoUnusedImportsFixer - Bug when trying to insert empty token (GrahamCampbell, keradus)
1258
+ * bug #2882 DocBlock\Annotation - Fix parsing of collections with multiple key types (julienfalque)
1259
+ * bug #2886 NoSpacesInsideParenthesisFixer - Do not remove whitespace if next token is comment (SpacePossum)
1260
+ * bug #2888 SingleImportPerStatementFixer - Add support for function and const (SpacePossum)
1261
+ * bug #2901 Add missing files to archive files (keradus)
1262
+ * bug #2914 HeredocToNowdocFixer - works with CRLF line ending (dg)
1263
+ * bug #2920 RuleSet - Update deprecated configuration of fixers (SpacePossum, keradus)
1264
+ * minor #1531 Update docs for few generic types (keradus)
1265
+ * minor #2793 COOKBOOK-FIXERS.md - update to current version, fix links (keradus)
1266
+ * minor #2812 ProcessLinter - compatibility with Symfony 3.3 (keradus)
1267
+ * minor #2816 Tokenizer - better docs and validation (keradus)
1268
+ * minor #2817 Tokenizer - use future-compatible interface (keradus)
1269
+ * minor #2819 Fix benchmark (keradus)
1270
+ * minor #2820 MagicConstantCasingFixer - Remove defined check (SpacePossum)
1271
+ * minor #2823 Tokenizer - use future-compatible interface (keradus)
1272
+ * minor #2824 code grooming (keradus)
1273
+ * minor #2826 Exceptions - provide utests (localheinz)
1274
+ * minor #2828 Enhancement: Reference phpunit.xsd from phpunit.xml.dist (localheinz)
1275
+ * minor #2830 Differs - add tests (localheinz)
1276
+ * minor #2832 Fix: Use all the columns (localheinz)
1277
+ * minor #2833 Doctrine\Annotation\Token - provide utests (localheinz)
1278
+ * minor #2839 Use PHP 7.2 polyfill instead of xml one (keradus)
1279
+ * minor #2842 Move null to first position in PHPDoc types (julienfalque)
1280
+ * minor #2850 ReadmeCommandTest - Prevent diff output (julienfalque)
1281
+ * minor #2859 Fixed typo and dead code removal (GrahamCampbell)
1282
+ * minor #2863 FileSpecificCodeSample - add tests (localheinz)
1283
+ * minor #2864 WhitespacesAwareFixerInterface clean up (Slamdunk)
1284
+ * minor #2865 AutoReview\FixerTest - test configuration samples (SpacePossum, keradus)
1285
+ * minor #2867 VersionSpecification - Fix copy-paste typo (SpacePossum)
1286
+ * minor #2870 Tokens - ensureWhitespaceAtIndex - Clear tokens before compare. (SpacePossum)
1287
+ * minor #2874 LineTest - fix typo (keradus)
1288
+ * minor #2875 HelpCommand - recursive layout fix (SpacePossum)
1289
+ * minor #2883 DescribeCommand - Show which sample uses the default configuration (SpacePossum)
1290
+ * minor #2887 Housekeeping - Strict whitespace checks (SpacePossum)
1291
+ * minor #2895 ProjectCodeTest - check that classes in no-tests exception exist (keradus)
1292
+ * minor #2896 Move testing related classes from src to tests (keradus)
1293
+ * minor #2904 Reapply CS (keradus)
1294
+ * minor #2910 PhpdocAnnotationWithoutDotFixer - Restrict lowercasing (oschwald)
1295
+ * minor #2913 Tests - tweaks (SpacePossum, keradus)
1296
+ * minor #2916 FixerFactory - drop return in sortFixers(), never used (TomasVotruba)
1297
+
1298
+ Changelog for v2.3.2
1299
+ --------------------
1300
+
1301
+ * bug #2682 DoctrineAnnotationIndentationFixer - fix handling nested annotations (edhgoose, julienfalque)
1302
+ * bug #2700 Fix Doctrine Annotation end detection (julienfalque)
1303
+ * bug #2715 OrderedImportsFixer - handle indented groups (pilgerone)
1304
+ * bug #2732 HeaderCommentFixer - fix handling blank lines (s7b4)
1305
+ * bug #2745 Fix Doctrine Annotation newlines (julienfalque)
1306
+ * bug #2752 FixCommand - fix typo in warning message (mnapoli)
1307
+ * bug #2757 GeckoPHPUnit is not dev dependency (keradus)
1308
+ * bug #2759 Update gitattributes (SpacePossum)
1309
+ * bug #2763 Fix describe command with PSR-0 fixer (julienfalque)
1310
+ * bug #2768 Tokens::ensureWhitespaceAtIndex - clean up comment check, add check for T_OPEN (SpacePossum)
1311
+ * bug #2783 Tokens::ensureWhitespaceAtIndex - Fix handling line endings (SpacePossum)
1312
+ * minor #2304 DX: use PHPMD (keradus)
1313
+ * minor #2663 Use colors for keywords in commands output (julienfalque, keradus)
1314
+ * minor #2706 Update README (SpacePossum)
1315
+ * minor #2714 README.rst - fix wrong value in example (mleko)
1316
+ * minor #2718 Remove old Symfony exception message expectation (julienfalque)
1317
+ * minor #2721 Update phpstorm article link to a fresh blog post (valeryan)
1318
+ * minor #2725 Use method chaining for configuration definitions (julienfalque)
1319
+ * minor #2727 PHPUnit - use speedtrap (keradus)
1320
+ * minor #2728 SelfUpdateCommand - verify that it's possible to replace current file (keradus)
1321
+ * minor #2729 DescribeCommand - add decorated output test (julienfalque)
1322
+ * minor #2731 BracesFixer - properly pass config in utest dataProvider (keradus)
1323
+ * minor #2738 Upgrade tests to use new, namespaced PHPUnit TestCase class (keradus)
1324
+ * minor #2742 Code cleanup (GrahamCampbell, keradus)
1325
+ * minor #2743 Fixing example and description for GeneralPhpdocAnnotationRemoveFixer (kubawerlos)
1326
+ * minor #2744 AbstractDoctrineAnnotationFixerTestCase - split fixers test cases (julienfalque)
1327
+ * minor #2755 Fix compatibility with PHPUnit 5.4.x (keradus)
1328
+ * minor #2758 Readme - improve CI integration guidelines (keradus)
1329
+ * minor #2769 Psr0Fixer - remove duplicated example (julienfalque)
1330
+ * minor #2774 AssertTokens Trait (keradus)
1331
+ * minor #2775 NoExtraConsecutiveBlankLinesFixer - remove duplicate code sample. (SpacePossum)
1332
+ * minor #2778 AutoReview - watch that code samples are unique (keradus)
1333
+ * minor #2787 Add warnings about missing dom ext and require json ext (keradus)
1334
+ * minor #2792 Use composer-require-checker (keradus)
1335
+ * minor #2796 Update .gitattributes (SpacePossum)
1336
+ * minor #2797 Update .gitattributes (SpacePossum)
1337
+ * minor #2800 PhpdocTypesFixerTest - Fix typo in covers annotation (SpacePossum)
1338
+
1339
+ Changelog for v2.3.1
1340
+ --------------------
1341
+
1342
+ Port of v2.2.3.
1343
+
1344
+ * bug #2724 Revert #2554 Add short diff. output format (keradus)
1345
+
1346
+ Changelog for v2.3.0
1347
+ --------------------
1348
+
1349
+ * feature #2450 Add ListSyntaxFixer (SpacePossum)
1350
+ * feature #2708 Add PhpUnitTestClassRequiresCoversFixer (keradus)
1351
+ * minor #2568 Require PHP 5.6+ (keradus)
1352
+ * minor #2672 Bump symfony/* deps (keradus)
1353
+
1354
+ Changelog for v2.2.20
1355
+ ---------------------
1356
+
1357
+ * bug #3233 PhpdocAlignFixer - Fix linebreak inconsistency (SpacePossum, keradus)
1358
+ * bug #3445 Rewrite NoUnusedImportsFixer (kubawerlos, julienfalque)
1359
+ * bug #3597 DeclareStrictTypesFixer - fix bug of removing line (kubawerlos, keradus)
1360
+ * bug #3605 DoctrineAnnotationIndentationFixer - Fix indentation with mixed lines (julienfalque)
1361
+ * bug #3606 PhpdocToCommentFixer - allow multiple ( (SpacePossum)
1362
+ * bug #3684 PhpUnitStrictFixer - Do not fix if not correct # of arguments are used (SpacePossum)
1363
+ * bug #3715 SingleImportPerStatementFixer - Fix handling whitespace before opening brace (julienfalque)
1364
+ * bug #3731 PhpdocIndentFixer - crash fix (SpacePossum)
1365
+ * bug #3765 Fix binary-prefixed double-quoted strings to single quotes (ntzm)
1366
+ * bug #3770 Handle binary flags in heredoc_to_nowdoc (ntzm)
1367
+ * bug #3790 ProcessLinter - don't execute external process without timeout! It can freeze! (keradus)
1368
+ * minor #3548 Make shell scripts POSIX-compatible (EvgenyOrekhov, keradus)
1369
+ * minor #3568 New Autoreview: Correct option casing (ntzm)
1370
+ * minor #3590 Use XdebugHandler to avoid performance penalty (AJenbo, keradus)
1371
+ * minor #3607 PhpdocVarWithoutNameFixer - update sample with @ type (SpacePossum)
1372
+ * minor #3617 Tests stability patches (Tom Klingenberg, keradus)
1373
+ * minor #3627 Fix tests execution under phpdbg (keradus)
1374
+ * minor #3629 ProjectFixerConfigurationTest - test rules are sorted (SpacePossum)
1375
+ * minor #3639 DX: use benefits of symfony/force-lowest (keradus)
1376
+ * minor #3641 Update check_trailing_spaces script with upstream (keradus)
1377
+ * minor #3646 Extract SameStringsConstraint and XmlMatchesXsdConstraint (keradus)
1378
+ * minor #3647 DX: Add CachingLinter for tests (keradus)
1379
+ * minor #3649 Update check_trailing_spaces script with upstream (keradus)
1380
+ * minor #3652 CiIntegrationTest - run tests with POSIX sh, not Bash (keradus)
1381
+ * minor #3656 DX: Clean ups (SpacePossum)
1382
+ * minor #3660 Fix do not rely on order of fixing in CiIntegrationTest (kubawerlos)
1383
+ * minor #3662 DX: Add Smoke/InstallViaComposerTest (keradus)
1384
+ * minor #3663 DX: During deployment, run all smoke tests and don't allow to skip phar-related ones (keradus)
1385
+ * minor #3665 CircleCI fix (kubawerlos)
1386
+ * minor #3666 Use "set -eu" in shell scripts (EvgenyOrekhov)
1387
+ * minor #3669 Document possible values for subset options (julienfalque, keradus)
1388
+ * minor #3676 RunnerTest - workaround for failing Symfony v2.8.37 (kubawerlos)
1389
+ * minor #3680 DX: Tokens - removeLeadingWhitespace and removeTrailingWhitespace must act in same way (SpacePossum)
1390
+ * minor #3686 README.rst - Format all code-like strings in fixer descriptions (ntzm, keradus)
1391
+ * minor #3692 DX: Optimize tests (julienfalque)
1392
+ * minor #3701 Use correct casing for "PHPDoc" (ntzm)
1393
+ * minor #3703 DX: InstallViaComposerTets - groom naming (keradus)
1394
+ * minor #3704 DX: Tokens - fix naming (keradus)
1395
+ * minor #3706 Update homebrew installation instructions (ntzm)
1396
+ * minor #3713 Use HTTPS whenever possible (fabpot)
1397
+ * minor #3723 Extend tests coverage (ntzm)
1398
+ * minor #3733 Disable Composer optimized autoloader by default (julienfalque)
1399
+ * minor #3748 PhpUnitStrictFixer - extend risky note (jnvsor)
1400
+ * minor #3749 Make sure PHPUnit is cased correctly in fixers descriptions (kubawerlos)
1401
+ * minor #3773 AbstractFixerWithAliasedOptionsTestCase - don't export (keradus)
1402
+ * minor #3796 DX: StdinTest - do not assume name of folder, into which project was cloned (keradus)
1403
+ * minor #3803 NoEmptyPhpdocFixer/PhpdocAddMissingParamAnnotationFixer - missing priority test (SpacePossum, keradus)
1404
+ * minor #3804 Cleanup: remove useless constructor comment (kubawerlos)
1405
+
1406
+ Changelog for v2.2.19
1407
+ ---------------------
1408
+
1409
+ * bug #3594 ElseifFixer - Bug with alternative syntax (kubawerlos)
1410
+ * bug #3600 StrictParamFixer - Fix issue when functions are imported (ntzm, keradus)
1411
+ * minor #3589 FixerFactoryTest - add missing test (SpacePossum, keradus)
1412
+ * minor #3610 make phar extension optional (Tom Klingenberg, keradus)
1413
+ * minor #3612 Travis - allow for hhvm failures (keradus)
1414
+ * minor #3615 Detect fabbot.io (julienfalque, keradus)
1415
+ * minor #3616 FixerFactoryTest - Don't rely on autovivification (keradus)
1416
+
1417
+ Changelog for v2.2.18
1418
+ ---------------------
1419
+
1420
+ * bug #3446 Add PregWrapper (kubawerlos)
1421
+ * bug #3464 IncludeFixer - fix incorrect order of fixing (kubawerlos, SpacePossum)
1422
+ * bug #3496 Bug in Tokens::removeLeadingWhitespace (kubawerlos, SpacePossum, keradus)
1423
+ * bug #3557 AbstractDoctrineAnnotationFixer: edge case bugfix (Slamdunk)
1424
+ * bug #3574 GeneralPhpdocAnnotationRemoveFixer - remove PHPDoc if no content is left (SpacePossum)
1425
+ * minor #3563 DX add missing covers annotations (keradus)
1426
+ * minor #3565 Use EventDispatcherInterface instead of EventDispatcher when possible (keradus)
1427
+ * minor #3572 DX: allow for more phpunit-speedtrap versions to support more PHPUnit versions (keradus)
1428
+ * minor #3576 Fix Doctrine Annotation test cases merging (julienfalque)
1429
+
1430
+ Changelog for v2.2.17
1431
+ ---------------------
1432
+
1433
+ * bug #3504 NoBlankLinesAfterPhpdocFixer - allow blank line before declare statement (julienfalque)
1434
+ * bug #3522 Remove LOCK_EX (SpacePossum)
1435
+ * bug #3560 SelfAccessorFixer is risky (Slamdunk)
1436
+ * minor #3435 Add tests for general_phpdoc_annotation_remove (BackEndTea)
1437
+ * minor #3484 Create Tokens::findBlockStart (ntzm)
1438
+ * minor #3512 Add missing array typehints (ntzm)
1439
+ * minor #3516 Use null|type instead of ?type in PHPDocs (ntzm)
1440
+ * minor #3518 FixerFactoryTest - Test each priority test file is listed as test (SpacePossum)
1441
+ * minor #3520 Fix typos: ran vs. run (SpacePossum)
1442
+ * minor #3521 Use HTTPS (carusogabriel)
1443
+ * minor #3526 Remove gecko dependency (SpacePossum, keradus, julienfalque)
1444
+ * minor #3531 Backport PHPMD to LTS version to ease maintainability (keradus)
1445
+ * minor #3532 Implement Tokens::findOppositeBlockEdge (ntzm)
1446
+ * minor #3533 DX: SCA - drop src/Resources exclusion (keradus)
1447
+ * minor #3538 Don't use third parameter of Tokens::findBlockStart (ntzm)
1448
+ * minor #3542 Enhancement: Run composer-normalize on Travis CI (localheinz, keradus)
1449
+ * minor #3555 DX: composer.json - drop branch-alias, branch is already following the version (keradus)
1450
+ * minor #3556 DX: Add AutoReview/ComposerTest (keradus)
1451
+ * minor #3559 Don't expose new files under Test namespace (keradus)
1452
+
1453
+ Changelog for v2.2.16
1454
+ ---------------------
1455
+
1456
+ * bug #3502 Fix missing file in export (keradus)
1457
+
1458
+ Changelog for v2.2.15
1459
+ ---------------------
1460
+
1461
+ * bug #3367 NoUnusedImportsFixer - fix comment handling (SpacePossum, keradus)
1462
+ * bug #3455 NoEmptyCommentFixer - comment block detection for line ending different than LF (kubawerlos, SpacePossum)
1463
+ * bug #3458 SilencedDeprecationErrorFixer - fix edge cases (kubawerlos)
1464
+ * bug #3466 no_whitespace_in_blank_line and no_blank_lines_after_phpdoc fixers bug (kubawerlos, keradus)
1465
+ * minor #3354 Added missing types to the PhpdocTypesFixer (GrahamCampbell)
1466
+ * minor #3406 Fix for escaping in README (kubawerlos)
1467
+ * minor #3431 Add missing tests (SpacePossum)
1468
+ * minor #3440 Add a handful of integration tests (BackEndTea)
1469
+ * minor #3444 IntegrationTest - ensure tests in priority dir are priority tests indeed (keradus)
1470
+ * minor #3494 Add missing PHPDoc param type (ntzm)
1471
+ * minor #3495 Swap @var type and element (ntzm)
1472
+ * minor #3498 NoUnusedImportsFixer - fix deprecation (keradus)
1473
+
1474
+ Changelog for v2.2.14
1475
+ ---------------------
1476
+
1477
+ * bug #3298 DiffConsoleFormatter - fix output escaping. (SpacePossum)
1478
+ * bug #3337 BracesFixer: nowdoc bug on template files (Slamdunk)
1479
+ * bug #3349 Fix stdin handling and add tests for it (keradus)
1480
+ * bug #3359 BracesFixer - handle comment for content outside of given block (keradus)
1481
+ * bug #3415 FileFilterIterator - input checks and utests (SpacePossum, keradus)
1482
+ * bug #3429 Fix archive analysing (keradus)
1483
+ * minor #3137 PHPUnit - use common base class (keradus)
1484
+ * minor #3342 PhpUnitDedicateAssertFixer - Remove unexistent method is_boolean (carusogabriel)
1485
+ * minor #3345 StdinFileInfo - fix `__toString` (keradus)
1486
+ * minor #3346 StdinFileInfo - drop getContents (keradus)
1487
+ * minor #3347 DX: reapply newest CS (keradus)
1488
+ * minor #3365 COOKBOOK-FIXERS.md - update to provide definition instead of description (keradus)
1489
+ * minor #3370 AbstractFixer - FQCN in in exceptions (Slamdunk)
1490
+ * minor #3372 ProjectCodeTest - fix comment (keradus)
1491
+ * minor #3402 Always provide delimiter to `preg_quote` calls (ntzm)
1492
+ * minor #3403 Remove unused import (ntzm)
1493
+ * minor #3405 Fix `fopen` mode (ntzm)
1494
+ * minor #3408 Improving fixers descriptions (kubawerlos)
1495
+ * minor #3409 move itests from misc to priority (keradus)
1496
+ * minor #3411 Better type hinting for AbstractFixerTestCase::$fixer (kubawerlos)
1497
+ * minor #3412 Convert `strtolower` inside `strpos` to just `stripos` (ntzm)
1498
+ * minor #3425 FixerFactoryTest - test that priority pair fixers have itest (keradus, SpacePossum)
1499
+ * minor #3427 ConfigurationResolver: fix @return annotation (Slamdunk)
1500
+
1501
+ Changelog for v2.2.13
1502
+ ---------------------
1503
+
1504
+ * bug #3281 SelfAccessorFixer - stop modifying traits (kubawerlos)
1505
+ * minor #3195 Add self-update command test (julienfalque)
1506
+ * minor #3292 PHPUnit - set memory limit (veewee)
1507
+ * minor #3306 Token - better input validation (keradus)
1508
+
1509
+ Changelog for v2.2.12
1510
+ ---------------------
1511
+
1512
+ * bug #3173 SimplifiedNullReturnFixer - handle nullable return types (Slamdunk)
1513
+ * bug #3272 PhpdocTrimFixer - unicode support (SpacePossum)
1514
+
1515
+ Changelog for v2.2.11
1516
+ ---------------------
1517
+
1518
+ * bug #3225 PhpdocTrimFixer - Fix handling of lines without leading asterisk (julienfalque)
1519
+ * bug #3262 ToolInfo - support installation by branch as well (keradus)
1520
+ * bug #3266 PhpUnitConstructFixer - multiple asserts bug (kubawerlos)
1521
+ * minor #3239 Improve contributing guide and issue template (julienfalque)
1522
+ * minor #3246 Make ToolInfo methods non-static (julienfalque)
1523
+ * minor #3250 Travis: fail early, spare resources, save the Earth (Slamdunk, keradus)
1524
+ * minor #3251 Create Title for config file docs section (IanEdington)
1525
+ * minor #3254 AutoReview/FixerFactoryTest::testFixersPriority: verbose assertion message (Slamdunk)
1526
+
1527
+ Changelog for v2.2.10
1528
+ ---------------------
1529
+
1530
+ * bug #3199 TokensAnalyzer - getClassyElements (SpacePossum)
1531
+ * bug #3208 BracesFixer - Fix for instantiation in control structures (julienfalque, SpacePossum)
1532
+ * bug #3215 BinaryOperatorSpacesFixer - Fix spaces around multiple exception catching (|) (ntzm)
1533
+ * bug #3216 AbstractLinesBeforeNamespaceFixer - add min. and max. option, not only single target count (SpacePossum)
1534
+ * bug #3217 TokenizerLinter - fix lack of linting when code is cached (SpacePossum, keradus)
1535
+ * minor #3200 Skip slow test when Xdebug is loaded (julienfalque)
1536
+ * minor #3219 Normalise references to GitHub in docs (ntzm)
1537
+ * minor #3226 Remove unused imports (ntzm)
1538
+ * minor #3231 Fix typos (ntzm)
1539
+ * minor #3234 Simplify Cache\Signature::equals (ntzm)
1540
+ * minor #3237 UnconfigurableFixer - use only LF (keradus)
1541
+ * minor #3238 AbstractFixerTest - fix @cover annotation (keradus)
1542
+
1543
+ Changelog for v2.2.9
1544
+ --------------------
1545
+
1546
+ * bug #3062 BraceClassInstantiationTransformer - Fix instantiation inside method call braces case (julienfalque, keradus)
1547
+ * bug #3083 SingleBlankLineBeforeNamespaceFixer - Fix handling namespace right after opening tag (mlocati)
1548
+ * bug #3109 SwitchCaseSemicolonToColonFixer - Fix bug with nested constructs (SpacePossum)
1549
+ * bug #3123 Cache - File permissions (SpacePossum)
1550
+ * bug #3172 IndentationTypeFixer - do not touch whitespace that is not indentation (SpacePossum)
1551
+ * bug #3176 NoMultilineWhitespaceBeforeSemicolonsFixer - SpaceAfterSemicolonFixer - priority fix (SpacePossum)
1552
+ * bug #3193 TokensAnalyzer::getClassyElements - sort result before returning (SpacePossum)
1553
+ * bug #3196 SelfUpdateCommand - fix exit status when can't determine newest version (julienfalque)
1554
+ * minor #3107 ConfigurationResolver - improve error message when rule is not found (SpacePossum)
1555
+ * minor #3113 Add WordMatcher (keradus)
1556
+ * minor #3133 Unify Reporter tests (keradus)
1557
+ * minor #3134 Allow Symfony 4 (keradus, garak)
1558
+ * minor #3136 PHPUnit - call hooks from parent class as well (keradus)
1559
+ * minor #3145 misc - Typo (localheinz)
1560
+ * minor #3150 Fix CircleCI (julienfalque)
1561
+ * minor #3151 Update gitattributes to ignore next file (keradus)
1562
+ * minor #3156 Update php-coveralls (keradus)
1563
+ * minor #3166 README - add link to new gitter channel. (SpacePossum)
1564
+ * minor #3174 Update UPGRADE.md (vitek-rostislav)
1565
+ * minor #3180 Fix usage of static variables (kubawerlos)
1566
+ * minor #3184 Code grooming - sort content of arrays (keradus)
1567
+ * minor #3191 Travis - add nightly build to allow_failures due to Travis issues (keradus)
1568
+ * minor #3197 DX groom CS (keradus)
1569
+
1570
+ Changelog for v2.2.8
1571
+ --------------------
1572
+
1573
+ * bug #3052 Fix false positive warning about paths overridden by provided as command arguments (kubawerlos)
1574
+ * bug #3058 IsNullFixer - fix whitespace handling (roukmoute)
1575
+ * bug #3072 IsNullFixer - fix non_yoda_style edge case (keradus)
1576
+ * bug #3088 Drop dedicated Phar stub (keradus)
1577
+ * bug #3100 NativeFunctionInvocationFixer - Fix test if previous token is already namespace separator (SpacePossum)
1578
+ * bug #3104 DoctrineAnnotationIndentationFixer - Fix str_repeat() error (julienfalque)
1579
+ * minor #3038 Support PHP 7.2 (SpacePossum, keradus)
1580
+ * minor #3064 Fix couple of typos (KKSzymanowski)
1581
+ * minor #3078 ConfigurationResolver - hide context while including config file (keradus)
1582
+ * minor #3080 Direct function call instead of by string (kubawerlos)
1583
+ * minor #3085 CiIntegrationTest - skip when no git is available (keradus)
1584
+ * minor #3087 phar-stub.php - allow PHP 7.2 (keradus)
1585
+
1586
+ Changelog for v2.2.7
1587
+ --------------------
1588
+
1589
+ * bug #3002 Bugfix braces (mnabialek)
1590
+ * bug #3010 Fix handling of Github releases (julienfalque, keradus)
1591
+ * bug #3015 Fix exception arguments (julienfalque)
1592
+ * bug #3016 Verify phar file (keradus)
1593
+ * bug #3021 Risky rules cleanup (kubawerlos)
1594
+ * bug #3023 RandomApiMigrationFixer - "rand();" to "random_int(0, getrandmax());" fixing (SpacePossum)
1595
+ * bug #3024 ConfigurationResolver - Handle empty "rules" value (SpacePossum, keradus)
1596
+ * bug #3031 IndentationTypeFixer - fix handling tabs in indented comments (keradus)
1597
+ * minor #2999 Notice when paths from config file are overridden by command arguments (julienfalque, keradus)
1598
+ * minor #3007 Add PHP 7.2 to Travis build matrix (Jean85)
1599
+ * minor #3009 CiIntegrationTest - run local (SpacePossum)
1600
+ * minor #3013 Adjust phpunit configuration (localheinz)
1601
+ * minor #3017 Fix: Risky tests (localheinz)
1602
+ * minor #3018 Fix: Make sure that data providers are named correctly (localheinz, keradus)
1603
+ * minor #3032 .php_cs.dist - handling UnexpectedValueException (keradus)
1604
+ * minor #3034 Follow newest CS (keradus)
1605
+ * minor #3036 Drop not existing Standalone group from PHPUnit configuration and duplicated internal tags (keradus)
1606
+ * minor #3042 Update gitter address (keradus)
1607
+
1608
+ Changelog for v2.2.6
1609
+ --------------------
1610
+
1611
+ * bug #2925 Improve CI integration suggestion (julienfalque)
1612
+ * bug #2928 TokensAnalyzer::getClassyElements - Anonymous class support (SpacePossum)
1613
+ * bug #2931 Psr0Fixer, Psr4Fixer - ignore "new class" syntax (dg, keradus)
1614
+ * bug #2934 Config - fix handling rule without value (keradus, SpacePossum)
1615
+ * bug #2939 NoUnusedImportsFixer - Fix extra blank line (julienfalque)
1616
+ * bug #2941 PHP 7.2 - Group imports with trailing comma support (SpacePossum, julienfalque)
1617
+ * bug #2987 Fix incorrect indentation of comments in `braces` fixer (rob006)
1618
+ * minor #2927 WhiteSpaceConfig - update message copy and more strict tests (SpacePossum, keradus)
1619
+ * minor #2930 Trigger website build (keradus)
1620
+ * minor #2932 Integrate CircleCI (keradus, aidantwoods)
1621
+ * minor #2933 ProcessLinterTest - Ensure Windows test only runs on Windows, add a Mac test execution (aidantwoods)
1622
+ * minor #2935 special handling of fabbot.io service if it's using too old PHP CS Fixer version (keradus)
1623
+ * minor #2937 Travis: execute 5.3 job on precise (keradus)
1624
+ * minor #2938 Tests fix configuration of project (SpacePossum, keradus)
1625
+ * minor #2943 FunctionToConstantFixer - test with diff. arguments than fixable (SpacePossum)
1626
+ * minor #2946 Detect extra old installations (keradus)
1627
+ * minor #2947 Test suggested CI integration (keradus)
1628
+ * minor #2951 AccessibleObject - remove most of usage (keradus)
1629
+ * minor #2969 Shrink down AccessibleObject usage (keradus)
1630
+ * minor #2982 TrailingCommaInMultilineArrayFixer - simplify isMultilineArray condition (TomasVotruba)
1631
+
1632
+ Changelog for v2.2.5
1633
+ --------------------
1634
+
1635
+ * bug #2807 NoUselessElseFixer - Fix detection of conditional block (SpacePossum)
1636
+ * bug #2809 Phar release - fix readme generation (SpacePossum, keradus)
1637
+ * bug #2827 MethodArgumentSpaceFixer - Always remove trailing spaces (julienfalque)
1638
+ * bug #2835 SelfAcessorFixer - class property fix (mnabialek)
1639
+ * bug #2848 PhpdocIndentFixer - fix edge case with inline phpdoc (keradus)
1640
+ * bug #2849 BracesFixer - Fix indentation issues with comments (julienfalque)
1641
+ * bug #2851 Tokens - ensureWhitespaceAtIndex (GrahamCampbell, SpacePossum)
1642
+ * bug #2854 NoLeadingImportSlashFixer - Removing leading slash from import even when in global space (kubawerlos)
1643
+ * bug #2858 Support generic types (keradus)
1644
+ * bug #2869 Fix handling required configuration (keradus)
1645
+ * bug #2881 NoUnusedImportsFixer - Bug when trying to insert empty token (GrahamCampbell, keradus)
1646
+ * bug #2882 DocBlock\Annotation - Fix parsing of collections with multiple key types (julienfalque)
1647
+ * bug #2886 NoSpacesInsideParenthesisFixer - Do not remove whitespace if next token is comment (SpacePossum)
1648
+ * bug #2888 SingleImportPerStatementFixer - Add support for function and const (SpacePossum)
1649
+ * bug #2901 Add missing files to archive files (keradus)
1650
+ * bug #2914 HeredocToNowdocFixer - works with CRLF line ending (dg)
1651
+ * bug #2920 RuleSet - Update deprecated configuration of fixers (SpacePossum, keradus)
1652
+ * minor #1531 Update docs for few generic types (keradus)
1653
+ * minor #2793 COOKBOOK-FIXERS.md - update to current version, fix links (keradus)
1654
+ * minor #2812 ProcessLinter - compatibility with Symfony 3.3 (keradus)
1655
+ * minor #2816 Tokenizer - better docs and validation (keradus)
1656
+ * minor #2817 Tokenizer - use future-compatible interface (keradus)
1657
+ * minor #2819 Fix benchmark (keradus)
1658
+ * minor #2824 code grooming (keradus)
1659
+ * minor #2826 Exceptions - provide utests (localheinz)
1660
+ * minor #2828 Enhancement: Reference phpunit.xsd from phpunit.xml.dist (localheinz)
1661
+ * minor #2830 Differs - add tests (localheinz)
1662
+ * minor #2832 Fix: Use all the columns (localheinz)
1663
+ * minor #2833 Doctrine\Annotation\Token - provide utests (localheinz)
1664
+ * minor #2839 Use PHP 7.2 polyfill instead of xml one (keradus)
1665
+ * minor #2842 Move null to first position in PHPDoc types (julienfalque)
1666
+ * minor #2850 ReadmeCommandTest - Prevent diff output (julienfalque)
1667
+ * minor #2859 Fixed typo and dead code removal (GrahamCampbell)
1668
+ * minor #2863 FileSpecificCodeSample - add tests (localheinz)
1669
+ * minor #2864 WhitespacesAwareFixerInterface clean up (Slamdunk)
1670
+ * minor #2865 AutoReview\FixerTest - test configuration samples (SpacePossum, keradus)
1671
+ * minor #2867 VersionSpecification - Fix copy-paste typo (SpacePossum)
1672
+ * minor #2874 LineTest - fix typo (keradus)
1673
+ * minor #2875 HelpCommand - recursive layout fix (SpacePossum)
1674
+ * minor #2883 DescribeCommand - Show which sample uses the default configuration (SpacePossum)
1675
+ * minor #2887 Housekeeping - Strict whitespace checks (SpacePossum)
1676
+ * minor #2895 ProjectCodeTest - check that classes in no-tests exception exist (keradus)
1677
+ * minor #2896 Move testing related classes from src to tests (keradus)
1678
+ * minor #2904 Reapply CS (keradus)
1679
+ * minor #2910 PhpdocAnnotationWithoutDotFixer - Restrict lowercasing (oschwald)
1680
+ * minor #2913 Tests - tweaks (SpacePossum, keradus)
1681
+ * minor #2916 FixerFactory - drop return in sortFixers(), never used (TomasVotruba)
1682
+
1683
+ Changelog for v2.2.4
1684
+ --------------------
1685
+
1686
+ * bug #2682 DoctrineAnnotationIndentationFixer - fix handling nested annotations (edhgoose, julienfalque)
1687
+ * bug #2700 Fix Doctrine Annotation end detection (julienfalque)
1688
+ * bug #2715 OrderedImportsFixer - handle indented groups (pilgerone)
1689
+ * bug #2732 HeaderCommentFixer - fix handling blank lines (s7b4)
1690
+ * bug #2745 Fix Doctrine Annotation newlines (julienfalque)
1691
+ * bug #2752 FixCommand - fix typo in warning message (mnapoli)
1692
+ * bug #2757 GeckoPHPUnit is not dev dependency (keradus)
1693
+ * bug #2759 Update gitattributes (SpacePossum)
1694
+ * bug #2763 Fix describe command with PSR-0 fixer (julienfalque)
1695
+ * bug #2768 Tokens::ensureWhitespaceAtIndex - clean up comment check, add check for T_OPEN (SpacePossum)
1696
+ * bug #2783 Tokens::ensureWhitespaceAtIndex - Fix handling line endings (SpacePossum)
1697
+ * minor #2663 Use colors for keywords in commands output (julienfalque, keradus)
1698
+ * minor #2706 Update README (SpacePossum)
1699
+ * minor #2714 README.rst - fix wrong value in example (mleko)
1700
+ * minor #2721 Update phpstorm article link to a fresh blog post (valeryan)
1701
+ * minor #2727 PHPUnit - use speedtrap (keradus)
1702
+ * minor #2728 SelfUpdateCommand - verify that it's possible to replace current file (keradus)
1703
+ * minor #2729 DescribeCommand - add decorated output test (julienfalque)
1704
+ * minor #2731 BracesFixer - properly pass config in utest dataProvider (keradus)
1705
+ * minor #2738 Upgrade tests to use new, namespaced PHPUnit TestCase class (keradus)
1706
+ * minor #2743 Fixing example and description for GeneralPhpdocAnnotationRemoveFixer (kubawerlos)
1707
+ * minor #2744 AbstractDoctrineAnnotationFixerTestCase - split fixers test cases (julienfalque)
1708
+ * minor #2755 Fix compatibility with PHPUnit 5.4.x (keradus)
1709
+ * minor #2758 Readme - improve CI integration guidelines (keradus)
1710
+ * minor #2769 Psr0Fixer - remove duplicated example (julienfalque)
1711
+ * minor #2775 NoExtraConsecutiveBlankLinesFixer - remove duplicate code sample. (SpacePossum)
1712
+ * minor #2778 AutoReview - watch that code samples are unique (keradus)
1713
+ * minor #2787 Add warnings about missing dom ext and require json ext (keradus)
1714
+ * minor #2792 Use composer-require-checker (keradus)
1715
+ * minor #2796 Update .gitattributes (SpacePossum)
1716
+ * minor #2800 PhpdocTypesFixerTest - Fix typo in covers annotation (SpacePossum)
1717
+
1718
+ Changelog for v2.2.3
1719
+ --------------------
1720
+
1721
+ * bug #2724 Revert #2554 Add short diff. output format (keradus)
1722
+
1723
+ Changelog for v2.2.2
1724
+ --------------------
1725
+
1726
+ Warning, this release breaks BC due to introduction of:
1727
+ * minor #2554 Add short diff. output format (SpacePossum, keradus)
1728
+ That PR was reverted in v2.2.3, which should be used instead of v2.2.2.
1729
+
1730
+ * bug #2545 RuleSet - change resolvement (SpacePossum)
1731
+ * bug #2686 Commands readme and describe - fix rare casing when not displaying some possible options of configuration (keradus)
1732
+ * bug #2711 FixCommand - fix diff optional value handling (keradus)
1733
+ * minor #2688 AppVeyor - Remove github oauth (keradus)
1734
+ * minor #2703 Clean ups - No mixed annotations (SpacePossum)
1735
+ * minor #2704 Create PHP70Migration:risky ruleset (keradus)
1736
+ * minor #2707 Deprecate other than "yes" or "no" for input options (SpacePossum)
1737
+ * minor #2709 code grooming (keradus)
1738
+ * minor #2710 Travis - run more rules on TASK_SCA (keradus)
1739
+
1740
+ Changelog for v2.2.1
1741
+ --------------------
1742
+
1743
+ * bug #2621 Tokenizer - fix edge cases with empty code, registered found tokens and code hash (SpacePossum, keradus)
1744
+ * bug #2674 SemicolonAfterInstructionFixer - Fix case where block ends with an opening curly brace (ntzm)
1745
+ * bug #2675 ProcessOutputTest - update tests to pass on newest Symfony components under Windows (keradus)
1746
+ * minor #2651 Fix UPGRADE.md table syntax so it works in GitHub (ntzm, keradus)
1747
+ * minor #2665 Travis - Improve trailing spaces detection (julienfalque)
1748
+ * minor #2666 TransformersTest - move test to auto-review group (keradus)
1749
+ * minor #2668 add covers annotation (keradus)
1750
+ * minor #2669 TokensTest - grooming (SpacePossum)
1751
+ * minor #2670 AbstractFixer: use applyFix instead of fix (Slamdunk)
1752
+ * minor #2677 README: Correct progressbar option support (Laurens St�tzel)
1753
+
1754
+ Changelog for v2.2.0
1755
+ --------------------
1756
+
1757
+ * bug #2640 NoExtraConsecutiveBlankLinesFixer - Fix single indent characters not working (ntzm)
1758
+ * feature #2220 Doctrine annotation fixers (julienfalque)
1759
+ * feature #2431 MethodArgumentSpaceFixer: allow to retain multiple spaces after comma (Slamdunk)
1760
+ * feature #2459 BracesFixer - Add option for keeping opening brackets on the same line (jtojnar, SpacePossum)
1761
+ * feature #2486 Add FunctionToConstantFixer (SpacePossum, keradus)
1762
+ * feature #2505 FunctionDeclarationFixer - Make space after anonymous function configurable (jtojnar, keradus)
1763
+ * feature #2509 FullOpeningTagFixer - Ensure opening PHP tag is lowercase (jtojnar)
1764
+ * feature #2532 FixCommand - add stop-on-violation option (keradus)
1765
+ * feature #2591 Improve process output (julienfalque)
1766
+ * feature #2603 Add InvisibleSymbols Fixer (ivan1986, keradus)
1767
+ * feature #2642 Add MagicConstantCasingFixer (ntzm)
1768
+ * feature #2657 PhpdocToCommentFixer - Allow phpdoc for language constructs (ceeram, SpacePossum)
1769
+ * minor #2500 Configuration resolver (julienfalque, SpacePossum, keradus)
1770
+ * minor #2566 Show more details on errors and exceptions. (SpacePossum, julienfalque)
1771
+ * minor #2597 HHVM - bump required version to 3.18 (keradus)
1772
+ * minor #2606 FixCommand - fix missing comment close tag (keradus)
1773
+ * minor #2623 OrderedClassElementsFixer - remove dead code (SpacePossum)
1774
+ * minor #2625 Update Symfony and Symfony:risky rulesets (keradus)
1775
+ * minor #2626 TernaryToNullCoalescingFixer - adjust ruleset membership and description (keradus)
1776
+ * minor #2635 ProjectCodeTest - watch that all classes have dedicated tests (keradus)
1777
+ * minor #2647 DescribeCommandTest - remove deprecated code usage (julienfalque)
1778
+ * minor #2648 Move non-code covering tests to AutoReview subnamespace (keradus)
1779
+ * minor #2652 NoSpacesAroundOffsetFixerTest - fix deprecation (keradus)
1780
+ * minor #2656 Code grooming (keradus)
1781
+ * minor #2659 Travis - speed up preparation for phar building (keradus)
1782
+ * minor #2660 Fixed typo in suggest for ext-mbstring (pascal-hofmann)
1783
+ * minor #2661 NonPrintableCharacterFixer - include into Symfony:risky ruleset (keradus)
1784
+
1785
+ Changelog for v2.1.3
1786
+ --------------------
1787
+
1788
+ * bug #2358 Cache - Deal with signature encoding (keradus, GrahamCampbell)
1789
+ * bug #2475 Add shorthand array destructing support (SpacePossum, keradus)
1790
+ * bug #2595 NoUnusedImportsFixer - Fix import usage detection with properties (julienfalque)
1791
+ * bug #2605 PhpdocAddMissingParamAnnotationFixer, PhpdocOrderFixer - fix priority issue (SpacePossum)
1792
+ * bug #2607 Fixers - better comments handling (SpacePossum)
1793
+ * bug #2612 BracesFixer - Fix early bracket close for do-while loop inside an if without brackets (felixgomez)
1794
+ * bug #2614 Ensure that '*Fixer::fix()' won't crash when running on non-candidate collection (keradus)
1795
+ * bug #2630 HeaderCommentFixer - Fix trailing whitespace not removed after <?php (julienfalque)
1796
+ * bug #2637 ToolInfo - use static dir check for composer discovery (Slamdunk)
1797
+ * bug #2639 SemicolonAfterInstructionFixer - Handle alternative syntax (SpacePossum)
1798
+ * bug #2645 HHVM: handle T_HH_ERROR (keradus)
1799
+ * bug #2653 IsNullFixer - fix edge case (localheinz, kalessil)
1800
+ * bug #2654 PhpdocAddMissingParamAnnotationFixer - handle one-line docblocks (keradus)
1801
+ * minor #2594 Travis - generate coverage report at 7.1 and clean up build matrix (keradus)
1802
+ * minor #2613 HeaderCommentFixer - add missing case for exception raising (keradus)
1803
+ * minor #2615 Add DescribeCommand test (julienfalque)
1804
+ * minor #2616 Exclude more tests in phar version (keradus)
1805
+ * minor #2618 Update README.rst (mhitza)
1806
+ * minor #2620 Finder - Remove `*.twig` as default (SpacePossum)
1807
+ * minor #2641 Cookbook - remove information about levels (keradus)
1808
+ * minor #2644 DescribeCommandTest - fix test execution on decorated console (keradus)
1809
+ * minor #2655 AppVeyor - Cache Composer Installation (julienfalque)
1810
+
1811
+ Changelog for v2.1.2
1812
+ --------------------
1813
+
1814
+ * bug #2580 NoSpacesAfterFunctionNameFixer - Fix after dynamic call (SpacePossum, keradus)
1815
+ * bug #2586 NoUnusedImportsFixerTest - handle FQCN import (keradus)
1816
+ * bug #2587 NoClosingTagFixerTest - handle file without operations (keradus, SpacePossum)
1817
+ * minor #2552 Initial compatibility with PHP 7.2-DEV (keradus)
1818
+ * minor #2582 Improve AppVeyor and Travis CI build time (julienfalque)
1819
+ * minor #2584 NoUnreachableDefaultArgumentValueFixer - fix typo (chadburrus)
1820
+ * minor #2593 PhpUnitFqcnAnnotationFixer - move test to proper namespace (keradus)
1821
+ * minor #2596 AppVeyor - update PHP versions (keradus)
1822
+
1823
+ Changelog for v2.1.1
1824
+ --------------------
1825
+
1826
+ * bug #2547 NoUnneededControlParenthesesFixer - Handle T_COALESCE in clone (keksa)
1827
+ * bug #2557 BracesFixer - Better comments handling (SpacePossum)
1828
+ * bug #2558 require symfony/polyfill-xml (SpacePossum)
1829
+ * bug #2560 PhpdocNoAliasTagFixer - Fix circular replacements detection (julienfalque)
1830
+ * bug #2567 Filename with spaces usage (jaymecd)
1831
+ * bug #2572 NoUnreachableDefaultArgumentValueFixer - Mark as risky (SpacePossum)
1832
+ * minor #2533 AppVeyor - adjust phpunit version (keradus)
1833
+ * minor #2535 Make .gitignore entries more specific (julienfalque)
1834
+ * minor #2541 README.rst - provide download link for latest version (keradus)
1835
+ * minor #2562 Add schema.json (keradus)
1836
+ * minor #2563 Add deprecation notices tests (julienfalque)
1837
+ * minor #2564 Add rules configuration by passing json encode config by CLI (SpacePossum)
1838
+ * minor #2569 Make symfony/phpunit-bridge a dev dependency only (julienfalque)
1839
+ * minor #2574 Add xml.xsd (keradus)
1840
+
1841
+ Changelog for v2.1.0
1842
+ --------------------
1843
+
1844
+ * feature #2124 Add TernaryToNullCoalescingFixer (Slamdunk, SpacePossum)
1845
+ * feature #2280 Configurable OrderedImportsFixer (DarkaOnLine)
1846
+ * feature #2351 Enhancement: Allow to configure return_type_declaration rule (localheinz)
1847
+ * feature #2359 Add PhpdocNoUselessInheritdocFixer (SpacePossum, keradus)
1848
+ * feature #2414 Add PhpdocReturnSelfReferenceFixer (SpacePossum)
1849
+ * feature #2415 Add IsNullFixer (kalessil, keradus)
1850
+ * feature #2421 BracesFixer - Add allow_single_line_closure configuration (keradus)
1851
+ * feature #2461 PhpdocNoUselessInheritdocFixer - support multiline docblock (keradus)
1852
+ * feature #2462 Add NativeFunctionInvocationFixer (localheinz, keradus, Slamdunk)
1853
+ * feature #2478 DeclareEqualNormalizeFixer - Add config option (SpacePossum)
1854
+ * feature #2494 FixCommand - Support rules with params (ptcong, keradus)
1855
+ * minor #2452 Provide rules definitions (keradus)
1856
+ * minor #2460 RuleSet - extend Symfony (keradus)
1857
+ * minor #2483 DX: AbstractIntegrationTestCase does not use IntegrationCase::shouldCheckPriority, logic is now automated and method is now deprecated (keradus)
1858
+ * minor #2488 IsNullFixer - Fix bug when calling without params (SpacePossum)
1859
+ * minor #2519 remove trailing whitespace (keradus)
1860
+
1861
+ Changelog for v2.0.1
1862
+ --------------------
1863
+
1864
+ * bug #2357 Better handling of file name that is the same in multiple finder paths (keradus)
1865
+ * bug #2373 FunctionDeclarationFixer - Fix static anonymous functions (SpacePossum)
1866
+ * bug #2377 PhpdocSeparationFixer - Ignore incorrect PHPDoc (SpacePossum, keradus)
1867
+ * bug #2388 PhpdocAlignFixer - unicode characters support (SpacePossum)
1868
+ * bug #2399 HashToSlashCommentFixer - Fix edge cases (SpacePossum)
1869
+ * bug #2403 ClassDefinitionFixer - Anonymous classes format by PSR12 (SpacePossum)
1870
+ * bug #2408 SingleClassElementPerStatementFixer, PhpdocSeparationFixer - add missing WhitespacesAwareFixerInterface interface (keradus)
1871
+ * bug #2425 ClassKeywordRemoveFixer - Fix handling leading backslash and comments (SpacePossum)
1872
+ * bug #2430 PhpdocAlignFixer - Fix alignment of variadic params. (SpacePossum)
1873
+ * bug #2437 NoWhitespaceInBlankLineFixer - Fix more cases (SpacePossum)
1874
+ * bug #2444 MbStrFunctionsFixer - handle return reference in method declaration (SpacePossum)
1875
+ * bug #2449 PhpdocAlignFixer - don't crash poorly formatted phpdoc (GrahamCampbell)
1876
+ * bug #2477 BracesFixer - Do not remove white space inside declare statement (SpacePossum)
1877
+ * bug #2481 Fix priorities between declare_strict_types and blank_line_after_opening_tag (juliendufresne, keradus)
1878
+ * bug #2507 NoClosingTagFixer - Do not insert semicolon in comment (SpacePossum)
1879
+ * minor #2347 UPGRADE.md - Fix multi-row description (drAlberT, keradus)
1880
+ * minor #2352 Corrected method visibility (GrahamCampbell)
1881
+ * minor #2353 Fix: Typos (localheinz)
1882
+ * minor #2354 Enhancement: Allow to specify minimum and maximum PHP versions for code samples (localheinz)
1883
+ * minor #2356 Fixed spelling on "blank line" (GrahamCampbell)
1884
+ * minor #2361 ConfigurationResolver - Reject unknown rules (localheinz)
1885
+ * minor #2368 clean ups (SpacePossum, localheinz)
1886
+ * minor #2380 DescribeCommand - filter code samples and output note when none can be demonstrated (localheinz)
1887
+ * minor #2381 Tests - Do not use annotations for asserting exceptions (localheinz, keradus)
1888
+ * minor #2382 Consistently provide a default configuration field (localheinz)
1889
+ * minor #2383 update .php_cs.dist configuration (keradus)
1890
+ * minor #2386 PHP7.1 Integration test - Add features added in PHP7.1. (SpacePossum)
1891
+ * minor #2392 FixCommandHelp - fix typo (keradus)
1892
+ * minor #2393 Remove overcomplete tests (SpacePossum)
1893
+ * minor #2394 Update .gitattributes (SpacePossum)
1894
+ * minor #2395 NoEmptyCommentFixer - Fix typo (fritz-c)
1895
+ * minor #2396 MethodArgumentSpaceFixer - scope down endpoint (SpacePossum)
1896
+ * minor #2397 RuleSet - Check risky (SpacePossum, keradus)
1897
+ * minor #2400 Add Fixer descriptions (SpacePossum)
1898
+ * minor #2401 Fix UPGRADE.md (issei-m)
1899
+ * minor #2405 Transformers - Must be final (SpacePossum)
1900
+ * minor #2406 ProtectedToPrivateFixer - Use backticks for visibility in description (localheinz)
1901
+ * minor #2407 Add tests for not abusing interfaces (keradus)
1902
+ * minor #2410 DX: Keep packages sorted (localheinz)
1903
+ * minor #2412 Enhancement: Add more descriptions (localheinz)
1904
+ * minor #2413 Update Symfony ruleset (fabpot)
1905
+ * minor #2419 README.rst - use double backticks for code pieces in rule descriptions (keradus)
1906
+ * minor #2422 BracesFixer - cleanup code after introducing CT::T_FUNCTION_IMPORT (keradus)
1907
+ * minor #2426 .php_cs.dist - update local CS config (keradus)
1908
+ * minor #2428 SCA with Php Inspections (EA Extended) (kalessil)
1909
+ * minor #2433 AbstractFixerTestCase - give all the details available during catch (Slamdunk)
1910
+ * minor #2434 COOKBOOK-FIXERS.md - Replace reference to outdated class with current (greg0ire)
1911
+ * minor #2436 MethodArgumentSpaceFixer - Remove duplicate class name (greg0ire)
1912
+ * minor #2441 IndentationTypeFixer - Fix description and upgrade guide (SpacePossum)
1913
+ * minor #2443 AppVeyor - update configuration (keradus)
1914
+ * minor #2447 .php_cs.dist - update local CS config (keradus)
1915
+ * minor #2452 Provide rules definitions (keradus)
1916
+ * minor #2455 NoMultilineWhitespaceAroundDoubleArrowFixer - Add missing priority test (SpacePossum)
1917
+ * minor #2466 Provide rules definitions (keradus)
1918
+ * minor #2470 README.rst - explain the usage of "--path-mode" parameter (kalimatas)
1919
+ * minor #2474 Housekeeping (SpacePossum)
1920
+ * minor #2487 UPGRADE.md - Fix typo (SpacePossum)
1921
+ * minor #2493 FixCommand - Output warning message when both config and rules options are passed (SpacePossum)
1922
+ * minor #2496 DX: Travis - check for trailing spaces (keradus)
1923
+ * minor #2499 FileSpecificCodeSample - Specify class name relative to root namespace (localheinz, keradus)
1924
+ * minor #2506 SCA (SpacePossum)
1925
+ * minor #2515 Fix code indentation (keradus)
1926
+ * minor #2521 SCA trailing spces check - ouput lines with trailing white space (SpacePossum)
1927
+ * minor #2522 Fix docs and small code issues (keradus)
1928
+
1929
+ Changelog for v2.0.0
1930
+ --------------------
1931
+
1932
+ * bug #1001 MethodArgumentSpaceFixer - no need for multiple executions (keradus)
1933
+ * bug #1006 NewWithBracesFixer - fix by adding BraceClassInstantiationTransformer (sstok)
1934
+ * bug #1077 ConfigInterface - add missing methods (localheinz)
1935
+ * bug #1103 added missing keyword token (gharlan)
1936
+ * bug #1107 Added ImportTransformer (gharlan)
1937
+ * bug #1157 Prevent token collection corruption by fixers (keradus, stof)
1938
+ * bug #1256 Do not write the fixed output twice (SpacePossum)
1939
+ * bug #1405 Linter - fix ignoring input parameter for constructor (keradus)
1940
+ * bug #1414 Linter - fix escaping the php binary (GrahamCampbell, keradus)
1941
+ * bug #1606 Fixer - remove duplicate file_get_contents call (gharlan)
1942
+ * bug #1629 Fix linting test cases (gharlan)
1943
+ * bug #1800 ConfigurationResolver - Fix resolving intersection path (keradus)
1944
+ * bug #1809 NoMultilineWhitespaceBeforeSemicolonsFixer - Semicolon should not be moved into comment (SpacePossum)
1945
+ * bug #1838 BracesFixer - Removes line break (SpacePossum)
1946
+ * bug #1847 Runner - always cache files, not only when something is changed (gharlan)
1947
+ * bug #1852 ConfigurationResolver - disallow empty rule name (keradus)
1948
+ * bug #1855 FixCommand - fix passing NullLinter to Runner (keradus)
1949
+ * bug #1926 NoUselessElseFixer - fix wrong if handling (SpacePossum)
1950
+ * bug #1946 NoEmptyCommentFixer - Only remove complete empty comment blocks (SpacePossum)
1951
+ * bug #1965 AbstractPsrAutoloadingFixer - fix edge case of halting compiler for PHP 5.3 (keradus)
1952
+ * bug #1974 composer.json - fix dependencies for PHP 5.3.6 (keradus)
1953
+ * bug #2025 NoShortEchoTagFixer - adjust isCandidate check for hhvm (keradus)
1954
+ * bug #2039 NoExtraConsecutiveBlankLinesFixer - Fix curly brace open false positive (SpacePossum)
1955
+ * bug #2044 SingleClassElementPerStatementFixer - fix array handling (keradus)
1956
+ * bug #2063 ConfigurationResolver - passing non-existing path is ignored (keradus)
1957
+ * bug #2236 .gitattributes - fix ignoring tests during export (keradus)
1958
+ * bug #2241 XmlReporter - fix used getter (keradus)
1959
+ * bug #2283 FixCommand - Fix resolving format option (SpacePossum, keradus)
1960
+ * bug #2287 NoExtraConsecutiveBlankLinesFixer - fix bug that removes empty line already after scope end (keradus)
1961
+ * bug #2290 FixCommand - fix progress (keradus)
1962
+ * bug #2292 GeneralPhpdocAnnotation*Fixer::configure - add missing return (keradus)
1963
+ * bug #2305 ProcessLinter - fix running under phpdbg (keradus)
1964
+ * feature #1076 Enhancement: Allow to specify cache file (localheinz, keradus)
1965
+ * feature #1088 JoinFunctionFixer -> AliasFunctionsFixer (kalessil)
1966
+ * feature #1275 Added PhpdocInlineTagFixer (SpacePossum, keradus)
1967
+ * feature #1292 Added MethodSeparationFixer (SpacePossum)
1968
+ * feature #1383 Introduce rules and sets (keradus)
1969
+ * feature #1416 Mark fixers as risky (keradus)
1970
+ * feature #1440 Made AbstractFixerTestCase and AbstractIntegrationTestCase public (keradus)
1971
+ * feature #1489 Added Psr4Fixer (GrahamCampbell)
1972
+ * feature #1497 ExtraEmptyLinesFixer - allow to remove empty blank lines after configured tags (SpacePossum)
1973
+ * feature #1529 Added PhpdocPropertyFixer, refactored Tag and Annotation (GrahamCampbell)
1974
+ * feature #1628 Added OrderedClassElementsFixer (gharlan)
1975
+ * feature #1742 path argument is used to create an intersection with existing finder (keradus, gharlan)
1976
+ * feature #1779 Added GeneralPhpdocAnnotationRemoveFixer, GeneralPhpdocAnnotationRenameFixer (keradus)
1977
+ * feature #1811 Added NoSpacesInsideOfssetFixer (phansys)
1978
+ * feature #1819 Added DirConstantFixer, ModernizeTypesCastingFixer, RandomApiMigrationFixer (kalessil, SpacePossum, keradus)
1979
+ * feature #1825 Added junit format (ekho)
1980
+ * feature #1862 FixerFactory - Do not allow conflicting fixers (SpacePossum)
1981
+ * feature #1888 Cache refactoring, better cache handling in dry-run mode (localheinz)
1982
+ * feature #1889 Added SingleClassElementPerStatementFixer (phansys, SpacePossum)
1983
+ * feature #1903 FixCommand - allow to pass multiple path argument (keradus)
1984
+ * feature #1913 Introduce path-mode CLI option (keradus)
1985
+ * feature #1949 Added DeclareStrictTypesFixer, introduce options for HeaderCommentFixer (Seldaek, SpacePossum, keradus)
1986
+ * feature #1955 Introduce CT_ARRAY_INDEX_CURLY_BRACE_OPEN and CT_ARRAY_INDEX_CURLY_BRACE_CLOSE (keradus)
1987
+ * feature #1958 Added NormalizeIndexBraceFixer (keradus)
1988
+ * feature #2069 Add semicolon after instruction fixer (SpacePossum)
1989
+ * feature #2089 Add `no_spaces_around_offset` fixer (phansys)
1990
+ * feature #2179 BinaryOperatorSpacesFixer - add (un)align configuration options (SpacePossum)
1991
+ * feature #2192 Add PowToExponentiationFixer (SpacePossum, keradus)
1992
+ * feature #2207 Added ReturnTypeDeclarationFixer (keradus)
1993
+ * feature #2213 VisibilityRequiredFixer - Add support for class const visibility added in PHP7.1. (SpacePossum)
1994
+ * feature #2221 Add support for user-defined whitespaces (keradus)
1995
+ * feature #2244 Config cleanup (keradus, SpacePossum)
1996
+ * feature #2247 PhpdocAnnotationWithoutDotFixer - support more cases (keradus)
1997
+ * feature #2289 Add PhpdocAddMissingParamAnnotationFixer (keradus)
1998
+ * feature #2331 Add DescribeCommand (keradus, SpacePossum)
1999
+ * feature #2332 New colours of diff on console (keradus)
2000
+ * feature #829 add support for .php_cs.dist file (keradus)
2001
+ * feature #998 MethodArgumentSpaceFixer - enhance, now only one space after comma (trilopin, keradus)
2002
+ * minor #1007 Simplify Transformers (keradus)
2003
+ * minor #1050 Make Config's setDir() fluent like the rest of methods (gonzaloserrano)
2004
+ * minor #1062 Added NamespaceOperatorTransformer (gharlan)
2005
+ * minor #1078 Exit status should be 0 if there are no errors (gharlan)
2006
+ * minor #1101 CS: fix project itself (localheinz)
2007
+ * minor #1102 Enhancement: List errors occurred before, during and after fixing (localheinz)
2008
+ * minor #1105 Token::isStructureAlternativeEnd - remove unused method (keradus)
2009
+ * minor #1106 readme grooming (SpacePossum, keradus)
2010
+ * minor #1115 Fixer - simplify flow (keradus)
2011
+ * minor #1118 Process output refactor (SpacePossum)
2012
+ * minor #1132 Linter - public methods should be first (keradus)
2013
+ * minor #1134 Token::isWhitespace - simplify interface (keradus)
2014
+ * minor #1140 FixerInterface - check if fixer should be applied by isCandidate method (keradus)
2015
+ * minor #1146 Linter - detect executable (keradus)
2016
+ * minor #1156 deleted old ConfigurationResolver class (keradus)
2017
+ * minor #1160 Grammar fix to README (Falkirks)
2018
+ * minor #1174 DefaultFinder - boost performance by not filtering when files array is empty (keradus)
2019
+ * minor #1179 Exit with non-zero if invalid files were detected prior to fixing (localheinz)
2020
+ * minor #1186 Finder - do not search for .xml and .yml files (keradus)
2021
+ * minor #1206 BracesFixer::getClassyTokens - remove duplicated method (keradus)
2022
+ * minor #1222 Made fixers final (GrahamCampbell)
2023
+ * minor #1229 Tokens - Fix PHPDoc (SpacePossum)
2024
+ * minor #1241 More details on exceptions. (SpacePossum)
2025
+ * minor #1263 Made internal classes final (GrahamCampbell)
2026
+ * minor #1272 Readme - Add spaces around PHP-CS-Fixer headers (Soullivaneuh)
2027
+ * minor #1283 Error - Fixed type phpdoc (GrahamCampbell)
2028
+ * minor #1284 Token - Fix PHPDoc (SpacePossum)
2029
+ * minor #1314 Added missing internal annotations (keradus)
2030
+ * minor #1329 Psr0Fixer - move to contrib level (gharlan)
2031
+ * minor #1340 Clean ups (SpacePossum)
2032
+ * minor #1341 Linter - throw exception when write fails (SpacePossum)
2033
+ * minor #1348 Linter - Prefer error output when throwing a linting exception (GrahamCampbell)
2034
+ * minor #1350 Add "phpt" as a valid extension (henriquemoody)
2035
+ * minor #1376 Add time and memory to XML report (junichi11)
2036
+ * minor #1387 Made all test classes final (keradus)
2037
+ * minor #1388 Made all tests internal (keradus)
2038
+ * minor #1390 Added ProjectCodeTest that tests if all classes inside tests are internal and final or abstract (keradus)
2039
+ * minor #1391 Fixer::getLevelAsString is no longer static (keradus)
2040
+ * minor #1392 Add report to XML report as the root node (junichi11)
2041
+ * minor #1394 Stop mixing level from config file and fixers from CLI arg when one of fixers has dash (keradus)
2042
+ * minor #1426 MethodSeparationFixer - Fix spacing around comments (SpacePossum, keradus)
2043
+ * minor #1432 Fixer check on factory (Soullivaneuh)
2044
+ * minor #1434 Add Test\AccessibleObject class (keradus)
2045
+ * minor #1442 FixerFactory - disallow to register multiple fixers with same name (keradus)
2046
+ * minor #1477 rename PhpdocShortDescriptionFixer into PhpdocSummaryFixer (keradus)
2047
+ * minor #1481 Fix running the tests (keradus)
2048
+ * minor #1482 move AbstractTransformerTestBase class outside Tests dir (keradus)
2049
+ * minor #1530 Added missing internal annotation (GrahamCampbell)
2050
+ * minor #1534 Clean ups (SpacePossum)
2051
+ * minor #1536 Typo fix (fabpot)
2052
+ * minor #1555 Fixed indentation in composer.json (GrahamCampbell)
2053
+ * minor #1558 [2.0] Cleanup the tags property in the abstract phpdoc types fixer (GrahamCampbell)
2054
+ * minor #1567 PrintToEchoFixer - add to symfony rule set (gharlan)
2055
+ * minor #1607 performance improvement (gharlan)
2056
+ * minor #1621 Switch to PSR-4 (keradus)
2057
+ * minor #1631 Configuration exceptions exception cases on master. (SpacePossum)
2058
+ * minor #1646 Remove non-default Config/Finder classes (keradus)
2059
+ * minor #1648 Fixer - avoid extra calls to getFileRelativePathname (GrahamCampbell)
2060
+ * minor #1649 Consider the php version when caching (GrahamCampbell)
2061
+ * minor #1652 Rename namespace "Symfony\CS" to "PhpCsFixer" (gharlan)
2062
+ * minor #1666 new Runner, ProcessOutputInterface, DifferInterface and ResultInterface (keradus)
2063
+ * minor #1674 Config - add addCustomFixers method (PedroTroller)
2064
+ * minor #1677 Enhance tests (keradus)
2065
+ * minor #1695 Rename Fixers (keradus)
2066
+ * minor #1702 Upgrade guide (keradus)
2067
+ * minor #1707 ExtraEmptyLinesFixer - fix configure docs (keradus)
2068
+ * minor #1712 NoExtraConsecutiveBlankLinesFixer - Remove blankline after curly brace open (SpacePossum)
2069
+ * minor #1718 CLI: rename --config-file argument (keradus)
2070
+ * minor #1722 Renamed not_operators_with_space to not_operator_with_space (GrahamCampbell)
2071
+ * minor #1728 PhpdocNoSimplifiedNullReturnFixer - rename back to PhpdocNoEmptyReturnFixer (keradus)
2072
+ * minor #1729 Renamed whitespacy_lines to no_whitespace_in_blank_lines (GrahamCampbell)
2073
+ * minor #1731 FixCommand - value for config option is required (keradus)
2074
+ * minor #1732 move fixer classes from level subdirs to thematic subdirs (gharlan, keradus)
2075
+ * minor #1733 ConfigurationResolver - look for .php_cs file in cwd as well (keradus)
2076
+ * minor #1737 RuleSet/FixerFactory - sort arrays content (keradus)
2077
+ * minor #1751 FixerInterface::configure - method should always override configuration, not patch it (keradus)
2078
+ * minor #1752 Remove unused code (keradus)
2079
+ * minor #1756 Finder - clean up code (keradus)
2080
+ * minor #1757 Psr0Fixer - change way of configuring the fixer (keradus)
2081
+ * minor #1762 Remove ConfigInterface::getDir, ConfigInterface::setDir, Finder::setDir and whole FinderInterface (keradus)
2082
+ * minor #1764 Remove ConfigAwareInterface (keradus)
2083
+ * minor #1780 AbstractFixer - throw error on configuring non-configurable Fixer (keradus)
2084
+ * minor #1782 rename fixers (gharlan)
2085
+ * minor #1815 NoSpacesInsideParenthesisFixer - simplify implementation (keradus)
2086
+ * minor #1821 Ensure that PhpUnitDedicateAssertFixer runs after NoAliasFunctionsFixer, clean up NoEmptyCommentFixer (SpacePossum)
2087
+ * minor #1824 Reporting extracted to separate classes (ekho, keradus, SpacePossum)
2088
+ * minor #1826 Fixer - remove measuring fixing time per file (keradus)
2089
+ * minor #1843 FileFilterIterator - add missing import (GrahamCampbell)
2090
+ * minor #1845 FileCacheManager - Allow linting to determine the cache state too (GrahamCampbell)
2091
+ * minor #1846 FileFilterIterator - Corrected an iterator typehint (GrahamCampbell)
2092
+ * minor #1848 DocBlock - Remove some old unused phpdoc tags (GrahamCampbell)
2093
+ * minor #1856 NoDuplicateSemicolonsFixer - Remove overcomplete fixer (SpacePossum)
2094
+ * minor #1861 Fix: Ofsset should be Offset (localheinz)
2095
+ * minor #1867 Print non-report output to stdErr (SpacePossum, keradus)
2096
+ * minor #1873 Enhancement: Show path to cache file if it exists (localheinz)
2097
+ * minor #1875 renamed Composer package (fabpot)
2098
+ * minor #1882 Runner - Handle throwables too (GrahamCampbell)
2099
+ * minor #1886 PhpdocScalarFixer - Fix lowercase str to string too (GrahamCampbell)
2100
+ * minor #1940 README.rst - update CI example (keradus)
2101
+ * minor #1947 SCA, CS, add more tests (SpacePossum, keradus)
2102
+ * minor #1954 tests - stop using deprecated method (sebastianbergmann)
2103
+ * minor #1962 TextDiffTest - tests should not produce cache file (keradus)
2104
+ * minor #1973 Introduce fast PHP7 based linter (keradus)
2105
+ * minor #1999 Runner - No need to determine relative file name twice (localheinz)
2106
+ * minor #2002 FileCacheManagerTest - Adjust name of test and variable (localheinz)
2107
+ * minor #2010 NoExtraConsecutiveBlankLinesFixer - SF rule set, add 'extra' (SpacePossum)
2108
+ * minor #2013 no_whitespace_in_blank_lines -> no_whitespace_in_blank_line (SpacePossum)
2109
+ * minor #2024 AbstractFixerTestCase - check if there is no duplicated Token instance inside Tokens collection (keradus)
2110
+ * minor #2031 COOKBOOK-FIXERS.md - update calling doTest method (keradus)
2111
+ * minor #2032 code grooming (keradus)
2112
+ * minor #2068 Code grooming (keradus)
2113
+ * minor #2073 DeclareStrictTypesFixer - Remove fix CS fix logic from fixer. (SpacePossum)
2114
+ * minor #2088 TokenizerLintingResult - expose line number of parsing error (keradus)
2115
+ * minor #2093 Tokens - add block type BLOCK_TYPE_ARRAY_INDEX_CURLY_BRACE (SpacePossum)
2116
+ * minor #2095 Transformers - add required PHP version (keradus)
2117
+ * minor #2096 Introduce CT for PHP7 (keradus)
2118
+ * minor #2119 Create @Symfony:risky ruleset (keradus)
2119
+ * minor #2163 ClassKeywordRemoveFixerTest - Fix tests (SpacePossum)
2120
+ * minor #2180 FixCommand - don't refer to renamed rules (keradus)
2121
+ * minor #2181 Disallow to disable linter (keradus)
2122
+ * minor #2194 semicolon_after_instruction,no_unneeded_control_parentheses prio issue (SpacePossum)
2123
+ * minor #2199 make fixers less risky (SpacePossum)
2124
+ * minor #2206 Add PHP70Migration ruleset (keradus)
2125
+ * minor #2217 SelfUpdateCommand - Print version of update fixer (SpacePossum)
2126
+ * minor #2223 update integration test format (keradus)
2127
+ * minor #2227 Stop polluting global namespace with CT (keradus)
2128
+ * minor #2237 DX: extend integration tests for PSR2 and Symfony rulesets (keradus)
2129
+ * minor #2240 Make some objects immutable (keradus)
2130
+ * minor #2251 ProtectedToPrivateFixer - fix priority, fix comments with new fixer names (SpacePossum)
2131
+ * minor #2252 ClassDefinitionFixer - Set configuration of the fixer in the RuleSet of SF. (SpacePossum)
2132
+ * minor #2257 extend Symfony_whitespaces itest (keradus)
2133
+ * minor #2258 README.rst - indicate configurable rules (keradus)
2134
+ * minor #2267 RuleSet - validate set (keradus)
2135
+ * minor #2268 Use strict parameters for PHP functions (keradus)
2136
+ * minor #2273 fixed typo (fabpot)
2137
+ * minor #2274 ShortArraySyntaxFixer/LongArraySyntaxFixer - Merge conflicting fixers (SpacePossum)
2138
+ * minor #2275 Clean ups (SpacePossum)
2139
+ * minor #2278 Concat*Fixer - unify concat fixers (SpacePossum, keradus)
2140
+ * minor #2279 Use Prophecy (keradus)
2141
+ * minor #2284 Code grooming (SpacePossum)
2142
+ * minor #2285 IntegrationCase is now aware about RuleSet but not Fixers (keradus, SpacePossum)
2143
+ * minor #2286 Phpdoc*Fixer - unify rename fixers (SpacePossum, keradus)
2144
+ * minor #2288 FixerInterface::configure(null) reset fixer to use default configuration (keradus)
2145
+ * minor #2291 Make fixers ready to use directly after creation (keradus)
2146
+ * minor #2295 Code grooming (keradus)
2147
+ * minor #2296 ProjectCodeTest - make test part of regular testsuite, not standalone one (keradus)
2148
+ * minor #2298 ConfigurationResolver - grooming (SpacePossum)
2149
+ * minor #2300 Simplify rule set (SpacePossum, keradus)
2150
+ * minor #2306 DeclareStrictTypesFixer - do not move tokens (SpacePossum)
2151
+ * minor #2312 RuleSet - sort rules (localheinz)
2152
+ * minor #2313 DX: provide doctyping for tests (keradus)
2153
+ * minor #2317 Add utests (keradus)
2154
+ * minor #2318 *TestCase - Reduce visibility of setUp() (localheinz)
2155
+ * minor #2319 Code grooming (keradus)
2156
+ * minor #2322 DX: use whitemessy aware assertion (keradus)
2157
+ * minor #2324 Echo|Print*Fixer - unify printing fixers (SpacePossum, keradus)
2158
+ * minor #2337 Normalize rule naming (keradus)
2159
+ * minor #2338 Drop hacks for unsupported HHVM (keradus)
2160
+ * minor #2339 Add some Fixer descriptions (SpacePossum, keradus)
2161
+ * minor #2343 PowToExponentiationFixer - allow to run on 5.6.0 as well (keradus)
2162
+ * minor #767 Add @internal tag (keradus)
2163
+ * minor #807 Tokens::isMethodNameIsMagic - remove unused method (keradus)
2164
+ * minor #809 Split Tokens into Tokens and TokensAnalyzer (keradus)
2165
+ * minor #844 Renamed phpdoc_params to phpdoc_align (GrahamCampbell)
2166
+ * minor #854 Change default level to PSR2 (keradus)
2167
+ * minor #873 Config - using cache by default (keradus)
2168
+ * minor #902 change FixerInterface (keradus)
2169
+ * minor #911 remove Token::$line (keradus)
2170
+ * minor #914 All Transformer classes should be named with Transformer as suffix (keradus)
2171
+ * minor #915 add UseTransformer (keradus)
2172
+ * minor #916 add ArraySquareBraceTransformer (keradus)
2173
+ * minor #917 clean up Transformer tests (keradus)
2174
+ * minor #919 CurlyBraceTransformer - one transformer to handle all curly braces transformations (keradus)
2175
+ * minor #928 remove Token::getLine (keradus)
2176
+ * minor #929 add WhitespacyCommentTransformer (keradus)
2177
+ * minor #937 fix docs/typehinting in few classes (keradus)
2178
+ * minor #958 FileCacheManager - remove code for BC support (keradus)
2179
+ * minor #979 Improve Tokens::clearEmptyTokens performance (keradus)
2180
+ * minor #981 Tokens - code grooming (keradus)
2181
+ * minor #988 Fixers - no need to search for tokens of given kind in extra loop (keradus)
2182
+ * minor #989 No need for loop in Token::equals (keradus)
2183
+
2184
+ Changelog for v1.13.3
2185
+ ---------------------
2186
+
2187
+ * minor #3042 Update gitter address (keradus)
2188
+
2189
+ Changelog for v1.13.2
2190
+ ---------------------
2191
+
2192
+ * minor #2946 Detect extra old installations (keradus)
2193
+
2194
+ Changelog for v1.13.1
2195
+ ---------------------
2196
+
2197
+ * minor #2342 Application - adjust test to not depend on symfony/console version (keradus)
2198
+ * minor #2344 AppVeyor: enforce PHP version (keradus)
2199
+
2200
+ Changelog for v1.13.0
2201
+ ---------------------
2202
+
2203
+ * bug #2303 ClassDefinitionFixer - Anonymous classes fixing (SpacePossum)
2204
+ * feature #2208 Added fixer for PHPUnit's @expectedException annotation (ro0NL)
2205
+ * feature #2249 Added ProtectedToPrivateFixer (Slamdunk, SpacePossum)
2206
+ * feature #2264 SelfUpdateCommand - Do not update to next major version by default (SpacePossum)
2207
+ * feature #2328 ClassDefinitionFixer - Anonymous classes format by PSR12 (SpacePossum)
2208
+ * feature #2333 PhpUnitFqcnAnnotationFixer - support more annotations (keradus)
2209
+ * minor #2256 EmptyReturnFixer - it's now risky fixer due to null vs void (keradus)
2210
+ * minor #2281 Add issue template (SpacePossum)
2211
+ * minor #2307 Update .editorconfig (SpacePossum)
2212
+ * minor #2310 CI: update AppVeyor to use newest PHP, silence the composer (keradus)
2213
+ * minor #2315 Token - Deprecate getLine() (SpacePossum)
2214
+ * minor #2320 Clear up status code on 1.x (SpacePossum)
2215
+
2216
+ Changelog for v1.12.4
2217
+ ---------------------
2218
+
2219
+ * bug #2235 OrderedImportsFixer - PHP 7 group imports support (SpacePossum)
2220
+ * minor #2276 Tokens cleanup (keradus)
2221
+ * minor #2277 Remove trailing spaces (keradus)
2222
+ * minor #2294 Improve Travis configuration (keradus)
2223
+ * minor #2297 Use phpdbg instead of xdebug (keradus)
2224
+ * minor #2299 Travis: proper xdebug disabling (keradus)
2225
+ * minor #2301 Travis: update platform adjusting (keradus)
2226
+
2227
+ Changelog for v1.12.3
2228
+ ---------------------
2229
+
2230
+ * bug #2155 ClassDefinitionFixer - overhaul (SpacePossum)
2231
+ * bug #2187 MultipleUseFixer - Fix handling comments (SpacePossum)
2232
+ * bug #2209 LinefeedFixer - Fix in a safe way (SpacePossum)
2233
+ * bug #2228 NoEmptyLinesAfterPhpdocs, SingleBlankLineBeforeNamespace - Fix priority (SpacePossum)
2234
+ * bug #2230 FunctionDeclarationFixer - Fix T_USE case (SpacePossum)
2235
+ * bug #2232 Add a test for style of varaible decalration : var (daiglej)
2236
+ * bug #2246 Fix itest requirements (keradus)
2237
+ * minor #2238 .gitattributes - specified line endings (keradus)
2238
+ * minor #2239 IntegrationCase - no longer internal (keradus)
2239
+
2240
+ Changelog for v1.12.2
2241
+ ---------------------
2242
+
2243
+ * bug #2191 PhpdocToCommentFixer - fix false positive for docblock of variable (keradus)
2244
+ * bug #2193 UnneededControlParenthesesFixer - Fix more return cases. (SpacePossum)
2245
+ * bug #2198 FileCacheManager - fix exception message and undefined property (j0k3r)
2246
+ * minor #2170 Add dollar sign prefix for consistency (bcremer)
2247
+ * minor #2190 .travis.yml - improve Travis speed for tags (keradus)
2248
+ * minor #2196 PhpdocTypesFixer - support iterable type (GrahamCampbell)
2249
+ * minor #2197 Update cookbook and readme (g105b, SpacePossum)
2250
+ * minor #2203 README.rst - change formatting (ro0NL)
2251
+ * minor #2204 FixCommand - clean unused var (keradus)
2252
+ * minor #2205 Add integration test for iterable type (keradus)
2253
+
2254
+ Changelog for v1.12.1
2255
+ ---------------------
2256
+
2257
+ * bug #2144 Remove temporary files not deleted by destructor on failure (adawolfa)
2258
+ * bug #2150 SelfUpdateCommand: resolve symlink (julienfalque)
2259
+ * bug #2162 Fix issue where an exception is thrown if the cache file exists but is empty. (ikari7789)
2260
+ * bug #2164 OperatorsSpacesFixer - Do not unalign double arrow and equals operators (SpacePossum)
2261
+ * bug #2167 Rewrite file removal (keradus)
2262
+ * minor #2152 Code cleanup (keradus)
2263
+ * minor #2154 ShutdownFileRemoval - Fixed file header (GrahamCampbell)
2264
+
2265
+ Changelog for v1.12.0
2266
+ ---------------------
2267
+
2268
+ * feature #1493 Added MethodArgumentDefaultValueFixer (lmanzke)
2269
+ * feature #1495 BracesFixer - added support for declare (EspadaV8)
2270
+ * feature #1518 Added ClassDefinitionFixer (SpacePossum)
2271
+ * feature #1543 [PSR-2] Switch case space fixer (Soullivaneuh)
2272
+ * feature #1577 Added SpacesAfterSemicolonFixer (SpacePossum)
2273
+ * feature #1580 Added HeredocToNowdocFixer (gharlan)
2274
+ * feature #1581 UnneededControlParenthesesFixer - add "break" and "continue" support (gharlan)
2275
+ * feature #1610 HashToSlashCommentFixer - Add (SpacePossum)
2276
+ * feature #1613 ScalarCastFixer - LowerCaseCastFixer - Add (SpacePossum)
2277
+ * feature #1659 NativeFunctionCasingFixer - Add (SpacePossum)
2278
+ * feature #1661 SwitchCaseSemicolonToColonFixer - Add (SpacePossum)
2279
+ * feature #1662 Added CombineConsecutiveUnsetsFixer (SpacePossum)
2280
+ * feature #1671 Added NoEmptyStatementFixer (SpacePossum)
2281
+ * feature #1705 Added NoUselessReturnFixer (SpacePossum, keradus)
2282
+ * feature #1735 Added NoTrailingWhitespaceInCommentFixer (keradus)
2283
+ * feature #1750 Add PhpdocSingleLineVarSpacingFixer (SpacePossum)
2284
+ * feature #1765 Added NoEmptyPhpdocFixer (SpacePossum)
2285
+ * feature #1773 Add NoUselessElseFixer (gharlan, SpacePossum)
2286
+ * feature #1786 Added NoEmptyCommentFixer (SpacePossum)
2287
+ * feature #1792 Add PhpUnitDedicateAssertFixer. (SpacePossum)
2288
+ * feature #1894 BracesFixer - correctly fix indents of anonymous functions/classes (gharlan)
2289
+ * feature #1985 Added ClassKeywordRemoveFixer (Soullivaneuh)
2290
+ * feature #2020 Added PhpdocAnnotationWithoutDotFixer (keradus)
2291
+ * feature #2067 Added DeclareEqualNormalizeFixer (keradus)
2292
+ * feature #2078 Added SilencedDeprecationErrorFixer (HeahDude)
2293
+ * feature #2082 Added MbStrFunctionsFixer (Slamdunk)
2294
+ * bug #1657 SwitchCaseSpaceFixer - Fix spacing between 'case' and semicolon (SpacePossum)
2295
+ * bug #1684 SpacesAfterSemicolonFixer - fix loops handling (SpacePossum, keradus)
2296
+ * bug #1700 Fixer - resolve import conflict (keradus)
2297
+ * bug #1836 NoUselessReturnFixer - Do not remove return if last statement in short if statement (SpacePossum)
2298
+ * bug #1879 HeredocToNowdocFixer - Handle space in heredoc token (SpacePossum)
2299
+ * bug #1896 FixCommand - Fix escaping of diff output (SpacePossum)
2300
+ * bug #2034 IncludeFixer - fix support for close tag (SpacePossum)
2301
+ * bug #2040 PhpdocAnnotationWithoutDotFixer - fix crash on odd character (keradus)
2302
+ * bug #2041 DefaultFinder should implement FinderInterface (keradus)
2303
+ * bug #2050 PhpdocAnnotationWithoutDotFixer - handle ellipsis (keradus)
2304
+ * bug #2051 NativeFunctionCasingFixer - call to constructor with default NS of class with name matching native function name fix (SpacePossum)
2305
+ * minor #1538 Added possibility to lint tests (gharlan)
2306
+ * minor #1569 Add sample to get a specific version of the fixer (Soullivaneuh)
2307
+ * minor #1571 Enhance integration tests (keradus)
2308
+ * minor #1578 Code grooming (keradus)
2309
+ * minor #1583 Travis - update matrix (keradus)
2310
+ * minor #1585 Code grooming - Improve utests code coverage (SpacePossum)
2311
+ * minor #1586 Add configuration exception classes and exit codes (SpacePossum)
2312
+ * minor #1594 Fix invalid PHP code samples in utests (SpacePossum)
2313
+ * minor #1597 MethodArgumentDefaultValueFixer - refactoring and fix closures with "use" clause (gharlan)
2314
+ * minor #1600 Added more integration tests (SpacePossum, keradus)
2315
+ * minor #1605 integration tests - swap EXPECT and INPUT (optional INPUT) (gharlan)
2316
+ * minor #1608 Travis - change matrix order for faster results (gharlan)
2317
+ * minor #1609 CONTRIBUTING.md - Don't rebase always on master (SpacePossum)
2318
+ * minor #1616 IncludeFixer - fix and test more cases (SpacePossum)
2319
+ * minor #1622 AbstractIntegratationTest - fix linting test cases (gharlan)
2320
+ * minor #1624 fix invalid code in test cases (gharlan)
2321
+ * minor #1625 Travis - switch to trusty (keradus)
2322
+ * minor #1627 FixCommand - fix output (keradus)
2323
+ * minor #1630 Pass along the exception code. (SpacePossum)
2324
+ * minor #1632 Php Inspections (EA Extended): SCA for 1.12 (kalessil)
2325
+ * minor #1633 Fix CS for project itself (keradus)
2326
+ * minor #1634 Backport some minor changes from 2.x line (keradus)
2327
+ * minor #1637 update PHP Coveralls (keradus)
2328
+ * minor #1639 Revert "Travis - set dist to trusty" (keradus)
2329
+ * minor #1641 AppVeyor/Travis - use GITHUB_OAUTH_TOKEN (keradus)
2330
+ * minor #1642 AppVeyor - install dev deps as well (keradus)
2331
+ * minor #1647 Deprecate non-default Configs and Finders (keradus)
2332
+ * minor #1654 Split output to stderr and stdout (SpacePossum)
2333
+ * minor #1660 update phpunit version (gharlan)
2334
+ * minor #1663 DuplicateSemicolonFixer - Remove duplicate semicolons even if there are comments between those (SpacePossum)
2335
+ * minor #1664 IncludeFixer - Add missing test case (SpacePossum)
2336
+ * minor #1668 Code grooming (keradus)
2337
+ * minor #1669 NativeFunctionCasingFixer - move to Symfony level (keradus)
2338
+ * minor #1670 Backport Finder and Config classes from 2.x line (keradus)
2339
+ * minor #1682 ElseifFixer - handle comments (SpacePossum)
2340
+ * minor #1689 AbstractIntegrationTest - no need for single-char group and docs grooming (keradus)
2341
+ * minor #1690 Integration tests - allow to not check priority, introduce IntegrationCase (keradus)
2342
+ * minor #1701 Fixer - Renamed import alias (GrahamCampbell)
2343
+ * minor #1708 Update composer.json requirements (keradus)
2344
+ * minor #1734 Travis: Turn on linting (keradus)
2345
+ * minor #1736 Integration tests - don't check priority for tests using short_tag fixer (keradus)
2346
+ * minor #1739 NoTrailingWhitespaceInCommentFixer - move to PSR2 level (keradus)
2347
+ * minor #1763 Deprecate ConfigInterface::getDir, ConfigInterface::setDir, Finder::setDir (keradus)
2348
+ * minor #1777 NoTrailingWhitespaceInCommentFixer - fix parent class (keradus)
2349
+ * minor #1816 PhpUnitDedicateAssertFixer - configuration is not required anymore (keradus)
2350
+ * minor #1849 DocBlock - The category tag should be together with package (GrahamCampbell)
2351
+ * minor #1870 Update README.rst (glensc)
2352
+ * minor #1880 FixCommand - fix stdErr detection (SpacePossum)
2353
+ * minor #1881 NoEmptyStatementFixer - handle anonymous classes correctly (gharlan)
2354
+ * minor #1906 .php_cs - use no_useless_else rule (keradus)
2355
+ * minor #1915 NoEmptyComment - move to Symfony level (SpacePossum)
2356
+ * minor #1917 BracesFixer - fixed comment handling (gharlan)
2357
+ * minor #1919 EmptyReturnFixer - move fixer outside of Symfony level (keradus)
2358
+ * minor #2036 OrderedUseFixer - adjust tests (keradus)
2359
+ * minor #2056 Travis - run nightly PHP (keradus)
2360
+ * minor #2061 UnusedUseFixer and LineAfterNamespace - add new integration test (keradus)
2361
+ * minor #2097 Add lambda tests for 7.0 and 7.1 (SpacePossum)
2362
+ * minor #2111 .travis.yml - rename PHP 7.1 env (keradus)
2363
+ * minor #2112 Fix 1.12 line (keradus)
2364
+ * minor #2118 SilencedDeprecationErrorFixer - adjust level (keradus)
2365
+ * minor #2132 composer.json - rename package name (keradus)
2366
+ * minor #2133 Apply ordered_class_elements rule (keradus)
2367
+ * minor #2138 composer.json - disallow to run on PHP 7.2+ (keradus)
2368
+
2369
+ Changelog for v1.11.8
2370
+ ---------------------
2371
+
2372
+ * bug #2143 ReadmeCommand - fix running command on phar file (keradus)
2373
+ * minor #2129 Add .gitattributes to remove unneeded files (Slamdunk)
2374
+ * minor #2141 Move phar building to PHP 5.6 job as newest box.phar is no longer working on 5.3 (keradus)
2375
+
2376
+ Changelog for v1.11.7
2377
+ ---------------------
2378
+
2379
+ * bug #2108 ShortArraySyntaxFixer, TernarySpacesFixer, UnalignEqualsFixer - fix priority bug (SpacePossum)
2380
+ * bug #2092 ConcatWithoutSpacesFixer, OperatorsSpacesFixer - fix too many spaces, fix incorrect fixing of lines with comments (SpacePossum)
2381
+
2382
+ Changelog for v1.11.6
2383
+ ---------------------
2384
+
2385
+ * bug #2086 Braces - fix bug with comment in method prototype (keradus)
2386
+ * bug #2077 SingleLineAfterImportsFixer - Do not remove lines between use cases (SpacePossum)
2387
+ * bug #2079 TernarySpacesFixer - Remove multiple spaces (SpacePossum)
2388
+ * bug #2087 Fixer - handle PHP7 Errors as well (keradus)
2389
+ * bug #2072 LowercaseKeywordsFixer - handle CT_CLASS_CONSTANT (tgabi333)
2390
+ * bug #2066 LineAfterNamespaceFixer - Handle close tag (SpacePossum)
2391
+ * bug #2057 LineAfterNamespaceFixer - adding too much extra lines where namespace is last statement (keradus)
2392
+ * bug #2059 OperatorsSpacesFixer - handle declare statement (keradus)
2393
+ * bug #2060 UnusedUseFixer - fix handling whitespaces around removed import (keradus)
2394
+ * minor #2071 ShortEchoTagFixer - allow to run tests on PHP 5.3 (keradus)
2395
+
2396
+ Changelog for v1.11.5
2397
+ ---------------------
2398
+
2399
+ * bug #2012 Properly build phar file for lowest supported PHP version (keradus)
2400
+ * bug #2037 BracesFixer - add support for anonymous classes (keradus)
2401
+ * bug #1989 Add support for PHP 7 namespaces (SpacePossum)
2402
+ * bug #2019 Fixing newlines added after curly brace string index access (jaydiablo)
2403
+ * bug #1840 [Bug] BracesFixer - Do add a line before close tag (SpacePossum)
2404
+ * bug #1994 EchoToPrintFixer - Fix T_OPEN_TAG_WITH_ECHO on hhvm (keradus)
2405
+ * bug #1970 Tokens - handle semi-reserved PHP 7 keywords (keradus)
2406
+ * minor #2017 PHP7 integration tests (keradus)
2407
+ * minor #1465 Bump supported HHVM version, improve ShortEchoTagFixer on HHVM (keradus)
2408
+ * minor #1995 Rely on own phpunit, not one from CI service (keradus)
2409
+
2410
+ Changelog for v1.11.4
2411
+ ---------------------
2412
+
2413
+ * bug #1956 SelfUpdateCommand - don't update to non-stable version (keradus)
2414
+ * bug #1963 Fix not wanted unneeded_control_parentheses fixer for clone (Soullivaneuh)
2415
+ * bug #1960 Fix invalid test cases (keradus)
2416
+ * bug #1939 BracesFixer - fix handling comment around control token (keradus)
2417
+ * minor #1927 NewWithBracesFixer - remove invalid testcase (keradus)
2418
+
2419
+ Changelog for v1.11.3
2420
+ ---------------------
2421
+
2422
+ * bug #1868 NewWithBracesFixer - fix handling more neighbor tokens (keradus)
2423
+ * bug #1893 BracesFixer - handle comments inside lambda function prototype (keradus)
2424
+ * bug #1806 SelfAccessorFixer - skip anonymous classes (gharlan)
2425
+ * bug #1813 BlanklineAfterOpenTagFixer, NoBlankLinesBeforeNamespaceFixer - fix priority (SpacePossum)
2426
+ * minor #1807 Tokens - simplify isLambda() (gharlan)
2427
+
2428
+ Changelog for v1.11.2
2429
+ ---------------------
2430
+
2431
+ * bug #1776 EofEndingFixer - new line on end line comment is allowed (Slamdunk)
2432
+ * bug #1775 FileCacheManager - ignore corrupted serialized data (keradus)
2433
+ * bug #1769 FunctionDeclarationFixer - fix more cases (keradus)
2434
+ * bug #1747 Fixer - Fix ordering of fixer when both level and custom fixers are used (SpacePossum)
2435
+ * bug #1744 Fixer - fix rare situation when file was visited twice (keradus)
2436
+ * bug #1710 LowercaseConstantFixer - Fix comment cases. (SpacePossum)
2437
+ * bug #1711 FunctioncallSpaceFixer - do not touch function declarations. (SpacePossum)
2438
+ * minor #1798 LintManager - meaningful tempnam (Slamdunk)
2439
+ * minor #1759 UniqueFileIterator - performance improvement (GrahamCampbell)
2440
+ * minor #1745 appveyor - fix build (keradus)
2441
+
2442
+ Changelog for v1.11.1
2443
+ ---------------------
2444
+
2445
+ * bug #1680 NewWithBracesFixer - End tags (SpacePossum)
2446
+ * bug #1685 EmptyReturnFixer - Make independent of LowercaseConstantsFixer (SpacePossum)
2447
+ * bug #1640 IntegrationTest - fix directory separator (keradus)
2448
+ * bug #1595 ShortTagFixer - fix priority (keradus)
2449
+ * bug #1576 SpacesBeforeSemicolonFixer - do not remove space before semicolon if that space is after a semicolon (SpacePossum)
2450
+ * bug #1570 UnneededControlParenthesesFixer - fix test samples (keradus)
2451
+ * minor #1653 Update license year (gharlan)
2452
+
2453
+ Changelog for v1.11
2454
+ -------------------
2455
+
2456
+ * feature #1550 Added UnneededControlParenthesesFixer (Soullivaneuh, keradus)
2457
+ * feature #1532 Added ShortBoolCastFixer (SpacePossum)
2458
+ * feature #1523 Added EchoToPrintFixer and PrintToEchoFixer (Soullivaneuh)
2459
+ * feature #1552 Warn when running with xdebug extension (SpacePossum)
2460
+ * feature #1484 Added ArrayElementNoSpaceBeforeCommaFixer and ArrayElementWhiteSpaceAfterCommaFixer (amarczuk)
2461
+ * feature #1449 PhpUnitConstructFixer - Fix more use cases (SpacePossum)
2462
+ * feature #1382 Added PhpdocTypesFixer (GrahamCampbell)
2463
+ * feature #1384 Add integration tests (SpacePossum)
2464
+ * feature #1349 Added FunctionTypehintSpaceFixer (keradus)
2465
+ * minor #1562 Fix invalid PHP code samples in utests (SpacePossum)
2466
+ * minor #1560 Fixed project name in xdebug warning (gharlan)
2467
+ * minor #1545 Fix invalid PHP code samples in utests (SpacePossum)
2468
+ * minor #1554 Alphabetically sort entries in .gitignore (GrahamCampbell)
2469
+ * minor #1527 Refactor the way types work on annotations (GrahamCampbell)
2470
+ * minor #1546 Update coding guide in cookbook (keradus)
2471
+ * minor #1526 Support more annotations when fixing types in phpdoc (GrahamCampbell)
2472
+ * minor #1535 clean ups (SpacePossum)
2473
+ * minor #1510 Added Symfony 3.0 support (Ener-Getick)
2474
+ * minor #1520 Code grooming (keradus)
2475
+ * minor #1515 Support property, property-read and property-write tags (GrahamCampbell)
2476
+ * minor #1488 Added more inline phpdoc tests (GrahamCampbell)
2477
+ * minor #1496 Add docblock to AbstractFixerTestBase::makeTest (lmanzke)
2478
+ * minor #1467 PhpdocShortDescriptionFixer - add support for Japanese sentence-ending characters (fritz-c)
2479
+ * minor #1453 remove calling array_keys in foreach loops (keradus)
2480
+ * minor #1448 Code grooming (keradus)
2481
+ * minor #1437 Added import fixers integration test (GrahamCampbell)
2482
+ * minor #1433 phpunit.xml.dist - disable gc (keradus)
2483
+ * minor #1427 Change arounded to surrounded in README.rst (36degrees)
2484
+ * minor #1420 AlignDoubleArrowFixer, AlignEqualsFixer - add integration tests (keradus)
2485
+ * minor #1423 appveyor.yml - do not cache C:\tools, its internal forAppVeyor (keradus)
2486
+ * minor #1400 appveyor.yml - add file (keradus)
2487
+ * minor #1396 AbstractPhpdocTypesFixer - instance method should be called on instance (keradus)
2488
+ * minor #1395 code grooming (keradus)
2489
+ * minor #1393 boost .travis.yml file (keradus)
2490
+ * minor #1372 Don't allow PHP 7 to fail (GrahamCampbell)
2491
+ * minor #1332 PhpUnitConstructFixer - fix more functions (keradus)
2492
+ * minor #1339 CONTRIBUTING.md - add link to PSR-5 (keradus)
2493
+ * minor #1346 Core grooming (SpacePossum)
2494
+ * minor #1328 Tokens: added typehint for Iterator elements (gharlan)
2495
+
2496
+ Changelog for v1.10.3
2497
+ ---------------------
2498
+
2499
+ * bug #1559 WhitespacyLinesFixer - fix bug cases (SpacePossum, keradus)
2500
+ * bug #1541 Psr0Fixer - Ignore filenames that are a reserved keyword or predefined constant (SpacePossum)
2501
+ * bug #1537 Psr0Fixer - ignore file without name or with name started by digit (keradus)
2502
+ * bug #1516 FixCommand - fix wrong message for dry-run (SpacePossum)
2503
+ * bug #1486 ExtraEmptyLinesFixer - Remove extra lines after comment lines too (SpacePossum)
2504
+ * bug #1503 Psr0Fixer - fix case with comments lying around (GrahamCampbell)
2505
+ * bug #1474 PhpdocToCommentFixer - fix not properly fixing for block right after namespace (GrahamCampbell)
2506
+ * bug #1478 BracesFixer - do not remove empty lines after class opening (keradus)
2507
+ * bug #1468 Add missing ConfigInterface::getHideProgress() (Eugene Leonovich, rybakit)
2508
+ * bug #1466 Fix bad indent on align double arrow fixer (Soullivaneuh, keradus)
2509
+ * bug #1479 Tokens - fix detection of short array (keradus)
2510
+
2511
+ Changelog for v1.10.2
2512
+ ---------------------
2513
+
2514
+ * bug #1461 PhpUnitConstructFixer - fix case when first argument is an expression (keradus)
2515
+ * bug #1460 AlignDoubleArrowFixer - fix handling of nested arrays (Soullivaneuh, keradus)
2516
+
2517
+ Changelog for v1.10.1
2518
+ ---------------------
2519
+
2520
+ * bug #1424 Fixed the import fixer priorities (GrahamCampbell)
2521
+ * bug #1444 OrderedUseFixer - fix next case (keradus)
2522
+ * bug #1441 BracesFixer - fix next case (keradus)
2523
+ * bug #1422 AlignDoubleArrowFixer - fix handling of nested array (SpacePossum)
2524
+ * bug #1425 PhpdocInlineTagFixerTest - fix case when met inalid PHPDoc (keradus)
2525
+ * bug #1419 AlignDoubleArrowFixer, AlignEqualsFixer - fix priorities (keradus)
2526
+ * bug #1415 BlanklineAfterOpenTagFixer - Do not add a line break if there is one already. (SpacePossum)
2527
+ * bug #1410 PhpdocIndentFixer - Fix for open tag (SpacePossum)
2528
+ * bug #1401 PhpdocVarWithoutNameFixer - Fixed the var without name fixer for inline docs (keradus, GrahamCampbell)
2529
+ * bug #1369 Fix not well-formed XML output (junichi11)
2530
+ * bug #1356 Psr0Fixer - disallow run on StdinFileInfo (keradus)
2531
+
2532
+ Changelog for v1.10
2533
+ -------------------
2534
+
2535
+ * feature #1306 Added LogicalNotOperatorsWithSuccessorSpaceFixer (phansys)
2536
+ * feature #1286 Added PhpUnitConstructFixer (keradus)
2537
+ * feature #1316 Added PhpdocInlineTagFixer (SpacePossum, keradus)
2538
+ * feature #1303 Added LogicalNotOperatorsWithSpacesFixer (phansys)
2539
+ * feature #1279 Added PhpUnitStrictFixer (keradus)
2540
+ * feature #1267 SingleQuoteFixer fix more use cases (SpacePossum)
2541
+ * minor #1319 PhpUnitConstructFixer - fix performance and add to local .php_cs (keradus)
2542
+ * minor #1280 Fix non-utf characters in docs (keradus)
2543
+ * minor #1274 Cookbook - No change auto-test note (Soullivaneuh)
2544
+
2545
+ Changelog for v1.9.3
2546
+ --------------------
2547
+
2548
+ * bug #1327 DocBlock\Tag - keep the case of tags (GrahamCampbell)
2549
+
2550
+ Changelog for v1.9.2
2551
+ --------------------
2552
+
2553
+ * bug #1313 AlignDoubleArrowFixer - fix aligning after UTF8 chars (keradus)
2554
+ * bug #1296 PhpdocScalarFixer - fix property annotation too (GrahamCampbell)
2555
+ * bug #1299 WhitespacyLinesFixer - spaces on next valid line must not be fixed (Slamdunk)
2556
+
2557
+ Changelog for v1.9.1
2558
+ --------------------
2559
+
2560
+ * bug #1288 TrimArraySpacesFixer - fix moving first comment (keradus)
2561
+ * bug #1287 PhpdocParamsFixer - now works on any indentation level (keradus)
2562
+ * bug #1278 Travis - fix PHP7 build (keradus)
2563
+ * bug #1277 WhitespacyLinesFixer - stop changing non-whitespacy tokens (SpacePossum, SamBurns-awin, keradus)
2564
+ * bug #1224 TrailingSpacesFixer - stop changing non-whitespacy tokens (SpacePossum, SamBurns-awin, keradus)
2565
+ * bug #1266 FunctionCallSpaceFixer - better detection of function call (funivan)
2566
+ * bug #1255 make sure some phpdoc fixers are run in right order (SpacePossum)
2567
+
2568
+ Changelog for v1.9
2569
+ ------------------
2570
+
2571
+ * feature #1097 Added ShortEchoTagFixer (vinkla)
2572
+ * minor #1238 Fixed error handler to respect current error_reporting (JanJakes)
2573
+ * minor #1234 Add class to exception message, use sprintf for exceptions (SpacePossum)
2574
+ * minor #1210 set custom error handler for application run (keradus)
2575
+ * minor #1214 Tokens::isMonolithicPhp - enhance performance (keradus)
2576
+ * minor #1207 Update code documentation (keradus)
2577
+ * minor #1202 Update IDE tool urls (keradus)
2578
+ * minor #1195 PreIncrementFixer - move to Symfony level (gharlan)
2579
+
2580
+ Changelog for v1.8.1
2581
+ --------------------
2582
+
2583
+ * bug #1193 EofEndingFixer - do not add an empty line at EOF if the PHP tags have been closed (SpacePossum)
2584
+ * bug #1209 PhpdocParamsFixer - fix corrupting following custom annotation (keradus)
2585
+ * bug #1205 BracesFixer - fix missing indentation fixes for class level (keradus)
2586
+ * bug #1204 Tag - fix treating complex tag as simple PhpDoc tag (keradus)
2587
+ * bug #1198 Tokens - fixed unary/binary operator check for type-hinted reference arguments (gharlan)
2588
+ * bug #1201 Php4ConstructorFixer - fix invalid handling of subnamespaces (gharlan)
2589
+ * minor #1221 Add more tests (SpacePossum)
2590
+ * minor #1216 Tokens - Add unit test for array detection (SpacePossum)
2591
+
2592
+ Changelog for v1.8
2593
+ ------------------
2594
+
2595
+ * feature #1168 Added UnalignEqualsFixer (keradus)
2596
+ * feature #1167 Added UnalignDoubleArrowFixer (keradus)
2597
+ * bug #1169 ToolInfo - Fix way to find script dir (sp-ian-monge)
2598
+ * minor #1181 composer.json - Update description (SpacePossum)
2599
+ * minor #1180 create Tokens::overrideAt method (keradus)
2600
+
2601
+ Changelog for v1.7.1
2602
+ --------------------
2603
+
2604
+ * bug #1165 BracesFixer - fix bug when comment is a first statement in control structure without braces (keradus)
2605
+
2606
+ Changelog for v1.7
2607
+ ------------------
2608
+
2609
+ * feature #1113 Added PreIncrementFixer (gharlan)
2610
+ * feature #1144 Added PhpdocNoAccessFixer (GrahamCampbell)
2611
+ * feature #1116 Added SelfAccessorFixer (gharlan)
2612
+ * feature #1064 OperatorsSpacesFixer enhancements (gharlan)
2613
+ * bug #1151 Prevent token collection corruption by fixers (stof, keradus)
2614
+ * bug #1152 LintManager - fix handling of temporary file (keradus)
2615
+ * bug #1139 NamespaceNoLeadingWhitespaceFixer - remove need for ctype extension (keradus)
2616
+ * bug #1117 Tokens - fix iterator used with foreach by reference (keradus)
2617
+ * minor #1148 code grooming (keradus)
2618
+ * minor #1142 We are actually PSR-4, not PSR-0 (GrahamCampbell)
2619
+ * minor #1131 Phpdocs and typos (SpacePossum)
2620
+ * minor #1069 state min HHVM version (keradus)
2621
+ * minor #1129 [DX] Help developers choose the right branch (SpacePossum)
2622
+ * minor #1138 PhpClosingTagFixer - simplify flow, no need for loop (keradus)
2623
+ * minor #1123 Reference mismatches fixed, SCA (kalessil)
2624
+ * minor #1109 SingleQuoteFixer - made fixer more accurate (gharlan)
2625
+ * minor #1110 code grooming (kalessil)
2626
+
2627
+ Changelog for v1.6.2
2628
+ --------------------
2629
+
2630
+ * bug #1149 UnusedUseFixer - must be run before LineAfterNamespaceFixer, fix token collection corruption (keradus)
2631
+ * minor #1145 AbstractLinesBeforeNamespaceFixer - fix docs for fixLinesBeforeNamespace (GrahamCampbell)
2632
+
2633
+ Changelog for v1.6.1
2634
+ --------------------
2635
+
2636
+ * bug #1108 UnusedUseFixer - fix false positive when name is used as part of another namespace (gharlan)
2637
+ * bug #1114 Fixed PhpdocParamsFixer with malformed doc block (gharlan)
2638
+ * minor #1135 PhpdocTrimFixer - fix doc typo (localheinz)
2639
+ * minor #1093 Travis - test lowest dependencies (boekkooi)
2640
+
2641
+ Changelog for v1.6
2642
+ ------------------
2643
+
2644
+ * feature #1089 Added NewlineAfterOpenTagFixer and BlanklineAfterOpenTagFixer (ceeram, keradus)
2645
+ * feature #1090 Added TrimArraySpacesFixer (jaredh159, keradus)
2646
+ * feature #1058 Added SingleQuoteFixer (gharlan)
2647
+ * feature #1059 Added LongArraySyntaxFixer (gharlan)
2648
+ * feature #1037 Added PhpdocScalarFixer (GrahamCampbell, keradus)
2649
+ * feature #1028 Add ListCommasFixer (keradus)
2650
+ * bug #1047 Utils::camelCaseToUnderscore - fix regexp (odin-delrio)
2651
+ * minor #1073 ShortTagFixer enhancement (gharlan)
2652
+ * minor #1079 Use LongArraySyntaxFixer for this repo (gharlan)
2653
+ * minor #1070 Tokens::isMonolithicPhp - remove unused T_CLOSE_TAG search (keradus)
2654
+ * minor #1049 OrderedUseFixer - grooming (keradus)
2655
+
2656
+ Changelog for v1.5.2
2657
+ --------------------
2658
+
2659
+ * bug #1025 Fixer - ignore symlinks (kix)
2660
+ * bug #1071 Psr0Fixer - fix bug for fixing file with long extension like .class.php (keradus)
2661
+ * bug #1080 ShortTagFixer - fix false positive (gharlan)
2662
+ * bug #1066 Php4ConstructorFixer - fix causing infinite recursion (mbeccati)
2663
+ * bug #1056 VisibilityFixer - fix T_VAR with multiple props (localheinz, keradus)
2664
+ * bug #1065 Php4ConstructorFixer - fix detection of a PHP4 parent constructor variant (mbeccati)
2665
+ * bug #1060 Tokens::isShortArray: tests and bugfixes (gharlan)
2666
+ * bug #1057 unused_use: fix false positive when name is only used as variable name (gharlan)
2667
+
2668
+ Changelog for v1.5.1
2669
+ --------------------
2670
+
2671
+ * bug #1054 VisibilityFixer - fix var with array value assigned (localheinz, keradus)
2672
+ * bug #1048 MultilineArrayTrailingCommaFixer, SingleArrayNoTrailingCommaFixer - using heredoc inside array not cousing to treat it as multiline array (keradus)
2673
+ * bug #1043 PhpdocToCommentFixer - also check other control structures, besides foreach (ceeram)
2674
+ * bug #1045 OrderedUseFixer - fix namespace order for trailing digits (rusitschka)
2675
+ * bug #1035 PhpdocToCommentFixer - Add static as valid keyword for structural element (ceeram)
2676
+ * bug #1020 BracesFixer - fix missing braces for nested if elseif else (malengrin)
2677
+ * minor #1036 Added php7 to travis build (fonsecas72)
2678
+ * minor #1026 Fix typo in ShortArraySyntaxFixer (tommygnr)
2679
+ * minor #1024 code grooming (keradus)
2680
+
2681
+ Changelog for v1.5
2682
+ ------------------
2683
+
2684
+ * feature #887 Added More Phpdoc Fixers (GrahamCampbell, keradus)
2685
+ * feature #1002 Add HeaderCommentFixer (ajgarlag)
2686
+ * feature #974 Add EregToPregFixer (mbeccati)
2687
+ * feature #970 Added Php4ConstructorFixer (mbeccati)
2688
+ * feature #997 Add PhpdocToCommentFixer (ceeram, keradus)
2689
+ * feature #932 Add NoBlankLinesAfterClassOpeningFixer (ceeram)
2690
+ * feature #879 Add SingleBlankLineBeforeNamespaceFixer and NoBlankLinesBeforeNamespaceFixer (GrahamCampbell)
2691
+ * feature #860 Add single_line_after_imports fixer (ceeram)
2692
+ * minor #1014 Fixed a few file headers (GrahamCampbell)
2693
+ * minor #1011 Fix HHVM as it works different than PHP (keradus)
2694
+ * minor #1010 Fix invalid UTF-8 char in docs (ajgarlag)
2695
+ * minor #1003 Fix header comment in php files (ajgarlag)
2696
+ * minor #1005 Add Utils::calculateBitmask method (keradus)
2697
+ * minor #973 Add Tokens::findSequence (mbeccati)
2698
+ * minor #991 Longer explanation of how to use blacklist (bmitch, networkscraper)
2699
+ * minor #972 Add case sensitive option to the tokenizer (mbeccati)
2700
+ * minor #986 Add benchmark script (dericofilho)
2701
+ * minor #985 Fix typo in COOKBOOK-FIXERS.md (mattleff)
2702
+ * minor #978 Token - fix docs (keradus)
2703
+ * minor #957 Fix Fixers methods order (GrahamCampbell)
2704
+ * minor #944 Enable caching of composer downloads on Travis (stof)
2705
+ * minor #941 EncodingFixer - enhance tests (keradus)
2706
+ * minor #938 Psr0Fixer - remove unneded assignment (keradus)
2707
+ * minor #936 FixerTest - test description consistency (keradus)
2708
+ * minor #933 NoEmptyLinesAfterPhpdocsFixer - remove unneeded code, clarify description (ceeram)
2709
+ * minor #934 StdinFileInfo::getFilename - Replace phpdoc with normal comment and add back empty line before return (ceeram)
2710
+ * minor #927 Exclude the resources folder from coverage reports (GrahamCampbell)
2711
+ * minor #926 Update Token::isGivenKind phpdoc (GrahamCampbell)
2712
+ * minor #925 Improved AbstractFixerTestBase (GrahamCampbell)
2713
+ * minor #922 AbstractFixerTestBase::makeTest - test if input is different than expected (keradus)
2714
+ * minor #904 Refactoring Utils (GrahamCampbell)
2715
+ * minor #901 Improved Readme Formatting (GrahamCampbell)
2716
+ * minor #898 Tokens::getImportUseIndexes - simplify function (keradus)
2717
+ * minor #897 phpunit.xml.dist - split testsuite (keradus)
2718
+
2719
+ Changelog for v1.4.2
2720
+ --------------------
2721
+
2722
+ * bug #994 Fix detecting of short arrays (keradus)
2723
+ * bug #995 DuplicateSemicolonFixer - ignore duplicated semicolons inside T_FOR (keradus)
2724
+
2725
+ Changelog for v1.4.1
2726
+ --------------------
2727
+
2728
+ * bug #990 MultilineArrayTrailingCommaFixer - fix case with short array on return (keradus)
2729
+ * bug #975 NoEmptyLinesAfterPhpdocsFixer - fix only when documentation documents sth (keradus)
2730
+ * bug #976 PhpdocIndentFixer - fix error when there is a comment between docblock and next meaningful token (keradus, ceeram)
2731
+
2732
+ Changelog for v1.4
2733
+ ------------------
2734
+
2735
+ * feature #841 PhpdocParamsFixer: added aligning var/type annotations (GrahamCampbell)
2736
+ * bug #965 Fix detection of lambda function that returns a reference (keradus)
2737
+ * bug #962 PhpdocIndentFixer - fix bug when documentation is on the end of braces block (keradus)
2738
+ * bug #961 Fixer - fix handling of empty file (keradus)
2739
+ * bug #960 IncludeFixer - fix bug when include is part of condition statement (keradus)
2740
+ * bug #954 AlignDoubleArrowFixer - fix new buggy case (keradus)
2741
+ * bug #955 ParenthesisFixer - fix case with list call with trailing comma (keradus)
2742
+ * bug #950 Tokens::isLambda - fix detection near comments (keradus)
2743
+ * bug #951 Tokens::getImportUseIndexes - fix detection near comments (keradus)
2744
+ * bug #949 Tokens::isShortArray - fix detection near comments (keradus)
2745
+ * bug #948 NewWithBracesFixer - fix case with multidimensional array (keradus)
2746
+ * bug #945 Skip files containing __halt_compiler() on PHP 5.3 (stof)
2747
+ * bug #946 BracesFixer - fix typo in exception name (keradus)
2748
+ * bug #940 Tokens::setCode - apply missing transformation (keradus)
2749
+ * bug #908 BracesFixer - fix invalide inserting brace for control structure without brace and lambda inside of it (keradus)
2750
+ * bug #903 NoEmptyLinesAfterPhpdocsFixer - fix bug with Windows style lines (GrahamCampbell)
2751
+ * bug #895 [PSR-2] Preserve blank line after control structure opening brace (marcaube)
2752
+ * bug #892 Fixed the double arrow multiline whitespace fixer (GrahamCampbell)
2753
+ * bug #874 BracesFixer - fix bug of removing empty lines after class' opening { (ceeram)
2754
+ * bug #868 BracesFixer - fix missing braces when statement is not followed by ; (keradus)
2755
+ * bug #861 Updated PhpdocParamsFixer not to change line endings (keradus, GrahamCampbell)
2756
+ * bug #837 FixCommand - stop corrupting xml/json format (keradus)
2757
+ * bug #846 Made phpdoc_params run after phpdoc_indent (GrahamCampbell)
2758
+ * bug #834 Correctly handle tab indentation (ceeram)
2759
+ * bug #822 PhpdocIndentFixer - Ignore inline docblocks (ceeram)
2760
+ * bug #813 MultilineArrayTrailingCommaFixer - do not move array end to new line (keradus)
2761
+ * bug #817 LowercaseConstantsFixer - ignore class' constants TRUE/FALSE/NULL (keradus)
2762
+ * bug #821 JoinFunctionFixer - stop changing declaration method name (ceeram)
2763
+ * minor #963 State the minimum version of PHPUnit in CONTRIBUTING.md (SpacePossum)
2764
+ * minor #943 Improve the cookbook to use relative links (stof)
2765
+ * minor #921 Add changelog file (keradus)
2766
+ * minor #909 BracesFixerTest - no \n line in \r\n test (keradus)
2767
+ * minor #864 Added NoEmptyLinesAfterPhpdocsFixer (GrahamCampbell)
2768
+ * minor #871 Added missing author (GrahamCampbell)
2769
+ * minor #852 Fixed the coveralls version constraint (GrahamCampbell)
2770
+ * minor #863 Tweaked testRetainsNewLineCharacters (GrahamCampbell)
2771
+ * minor #849 Removed old alias (GrahamCampbell)
2772
+ * minor #843 integer should be int (GrahamCampbell)
2773
+ * minor #830 Remove whitespace before opening tag (ceeram)
2774
+ * minor #835 code grooming (keradus)
2775
+ * minor #828 PhpdocIndentFixerTest - code grooming (keradus)
2776
+ * minor #827 UnusedUseFixer - code grooming (keradus)
2777
+ * minor #825 improve code coverage (keradus)
2778
+ * minor #810 improve code coverage (keradus)
2779
+ * minor #811 ShortArraySyntaxFixer - remove not needed if statement (keradus)
2780
+
2781
+ Changelog for v1.3
2782
+ ------------------
2783
+
2784
+ * feature #790 Add docblock indent fixer (ceeram)
2785
+ * feature #771 Add JoinFunctionFixer (keradus)
2786
+ * bug #798 Add DynamicVarBrace Transformer for properly handling ${$foo} syntax (keradus)
2787
+ * bug #796 LowercaseConstantsFixer - rewrite to handle new test cases (keradus)
2788
+ * bug #789 T_CASE is not succeeded by parentheses (dericofilho)
2789
+ * minor #814 Minor improvements to the phpdoc_params fixer (GrahamCampbell)
2790
+ * minor #815 Minor fixes (GrahamCampbell)
2791
+ * minor #782 Cookbook on how to make a new fixer (dericofilho)
2792
+ * minor #806 Fix Tokens::detectBlockType call (keradus)
2793
+ * minor #758 travis - disable sudo (keradus)
2794
+ * minor #808 Tokens - remove commented code (keradus)
2795
+ * minor #802 Address Sensiolabs Insight's warning of code cloning. (dericofilho)
2796
+ * minor #803 README.rst - fix \` into \`\` (keradus)
2797
+
2798
+ Changelog for v1.2
2799
+ ------------------
2800
+
2801
+ * feature #706 Remove lead slash (dericofilho)
2802
+ * feature #740 Add EmptyReturnFixer (GrahamCampbell)
2803
+ * bug #775 PhpClosingTagFixer - fix case with T_OPEN_TAG_WITH_ECHO (keradus)
2804
+ * bug #756 Fix broken cases for AlignDoubleArrowFixer (dericofilho)
2805
+ * bug #763 MethodArgumentSpaceFixer - fix receiving data in list context with omitted values (keradus)
2806
+ * bug #759 Fix Tokens::isArrayMultiLine (stof, keradus)
2807
+ * bug #754 LowercaseKeywordsFixer - __HALT_COMPILER must not be lowercased (keradus)
2808
+ * bug #753 Fix for double arrow misalignment in deeply nested arrays. (dericofilho)
2809
+ * bug #752 OrderedUseFixer should be case-insensitive (rusitschka)
2810
+ * minor #779 Fixed a docblock type (GrahamCampbell)
2811
+ * minor #765 Typehinting in FileCacheManager, remove unused variable in Tokens (keradus)
2812
+ * minor #764 SelfUpdateCommand - get local version only if remote version was successfully obtained (keradus)
2813
+ * minor #761 aling => (keradus)
2814
+ * minor #757 Some minor code simplify and extra test (keradus)
2815
+ * minor #713 Download php-cs-fixer.phar without sudo (michaelsauter)
2816
+ * minor #742 Various Minor Improvements (GrahamCampbell)
2817
+
2818
+ Changelog for v1.1
2819
+ ------------------
2820
+
2821
+ * feature #749 remove the --no-progress option (replaced by the standard -v) (fabpot, keradus)
2822
+ * feature #728 AlignDoubleArrowFixer - standardize whitespace after => (keradus)
2823
+ * feature #647 Add DoubleArrowMultilineWhitespacesFixer (dericofilho, keradus)
2824
+ * bug #746 SpacesBeforeSemicolonFixerTest - fix bug with semicolon after comment (keradus)
2825
+ * bug #741 Fix caching when composer is installed in custom path (cmodijk)
2826
+ * bug #725 DuplicateSemicolonFixer - fix clearing whitespace after duplicated semicolon (keradus)
2827
+ * bug #730 Cache busting when fixers list changes (Seldaek)
2828
+ * bug #722 Fix lint for STDIN-files (ossinkine)
2829
+ * bug #715 TrailingSpacesFixer - fix bug with french UTF-8 chars (keradus)
2830
+ * bug #718 Fix package name for composer cache (Seldaek)
2831
+ * bug #711 correct vendor name (keradus)
2832
+ * minor #745 Show progress by default and allow to disable it (keradus)
2833
+ * minor #731 Add a way to disable all default filters and really provide a whitelist (Seldaek)
2834
+ * minor #737 Extract tool info into new class, self-update command works now only for PHAR version (keradus)
2835
+ * minor #739 fix fabbot issues (keradus)
2836
+ * minor #726 update CONTRIBUTING.md for installing dependencies (keradus)
2837
+ * minor #736 Fix fabbot issues (GrahamCampbell)
2838
+ * minor #727 Fixed typos (pborreli)
2839
+ * minor #719 Add update instructions for composer and caching docs (Seldaek)
2840
+
2841
+ Changelog for v1.0
2842
+ ------------------
2843
+
2844
+ First stable release.