README.rst 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646
  1. PHP Coding Standards Fixer
  2. ==========================
  3. The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow standards;
  4. whether you want to follow PHP coding standards as defined in the PSR-1, PSR-2, etc.,
  5. or other community driven ones like the Symfony one.
  6. You can **also** define your (teams) style through configuration.
  7. It can modernize your code (like converting the `pow` function to the `**` operator on PHP 5.6)
  8. and (micro) optimize it.
  9. If you are already using a linter to identify coding standards problems in your
  10. code, you know that fixing them by hand is tedious, especially on large
  11. projects. This tool does not only detect them, but also fixes them for you.
  12. The PHP CS Fixer is maintained on GitHub at https://github.com/FriendsOfPHP/PHP-CS-Fixer
  13. bug reports and ideas about new features are welcome there.
  14. You can talk to us at https://gitter.im/PHP-CS-Fixer/Lobby about the project,
  15. configuration, possible improvements, ideas and questions, please visit us!
  16. Requirements
  17. ------------
  18. PHP needs to be a minimum version of PHP 5.6.0.
  19. Installation
  20. ------------
  21. Locally
  22. ~~~~~~~
  23. Download the `php-cs-fixer.phar`_ file and store it somewhere on your computer.
  24. Globally (manual)
  25. ~~~~~~~~~~~~~~~~~
  26. You can run these commands to easily access latest ``php-cs-fixer`` from anywhere on
  27. your system:
  28. .. code-block:: bash
  29. $ wget http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -O php-cs-fixer
  30. or with specified version:
  31. .. code-block:: bash
  32. $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.9.1/php-cs-fixer.phar -O php-cs-fixer
  33. or with curl:
  34. .. code-block:: bash
  35. $ curl -L http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -o php-cs-fixer
  36. then:
  37. .. code-block:: bash
  38. $ sudo chmod a+x php-cs-fixer
  39. $ sudo mv php-cs-fixer /usr/local/bin/php-cs-fixer
  40. Then, just run ``php-cs-fixer``.
  41. Globally (Composer)
  42. ~~~~~~~~~~~~~~~~~~~
  43. To install PHP CS Fixer, `install Composer <https://getcomposer.org/download/>`_ and issue the following command:
  44. .. code-block:: bash
  45. $ composer global require friendsofphp/php-cs-fixer
  46. Then make sure you have the global Composer binaries directory in your ``PATH``. This directory is platform-dependent, see `Composer documentation <https://getcomposer.org/doc/03-cli.md#composer-home>`_ for details. Example for some Unix systems:
  47. .. code-block:: bash
  48. $ export PATH="$PATH:$HOME/.composer/vendor/bin"
  49. Globally (homebrew)
  50. ~~~~~~~~~~~~~~~~~~~
  51. PHP-CS-Fixer is part of the homebrew-php project. Follow the installation
  52. instructions at https://github.com/homebrew/homebrew-php if you don't
  53. already have it.
  54. .. code-block:: bash
  55. $ brew install homebrew/php/php-cs-fixer
  56. Update
  57. ------
  58. Locally
  59. ~~~~~~~
  60. The ``self-update`` command tries to update ``php-cs-fixer`` itself:
  61. .. code-block:: bash
  62. $ php php-cs-fixer.phar self-update
  63. Globally (manual)
  64. ~~~~~~~~~~~~~~~~~
  65. You can update ``php-cs-fixer`` through this command:
  66. .. code-block:: bash
  67. $ sudo php-cs-fixer self-update
  68. Globally (Composer)
  69. ~~~~~~~~~~~~~~~~~~~
  70. You can update ``php-cs-fixer`` through this command:
  71. .. code-block:: bash
  72. $ ./composer.phar global update friendsofphp/php-cs-fixer
  73. Globally (homebrew)
  74. ~~~~~~~~~~~~~~~~~~~
  75. You can update ``php-cs-fixer`` through this command:
  76. .. code-block:: bash
  77. $ brew upgrade php-cs-fixer
  78. Usage
  79. -----
  80. The ``fix`` command tries to fix as much coding standards
  81. problems as possible on a given file or files in a given directory and its subdirectories:
  82. .. code-block:: bash
  83. $ php php-cs-fixer.phar fix /path/to/dir
  84. $ php php-cs-fixer.phar fix /path/to/file
  85. By default ``--path-mode`` is set to ``override``, which means, that if you specify the path to a file or a directory via
  86. command arguments, then the paths provided to a ``Finder`` in config file will be ignored. You can use ``--path-mode=intersection``
  87. to merge paths from the config file and from the argument:
  88. .. code-block:: bash
  89. $ php php-cs-fixer.phar fix --path-mode=intersection /path/to/dir
  90. The ``--format`` option for the output format. Supported formats are ``txt`` (default one), ``json``, ``xml``, ``checkstyle`` and ``junit``.
  91. NOTE: the output for the following formats are generated in accordance with XML schemas
  92. * ``junit`` follows the `JUnit xml schema from Jenkins </doc/junit-10.xsd>`_
  93. * ``checkstyle`` follows the common `"checkstyle" xml schema </doc/checkstyle.xsd>`_
  94. The ``--verbose`` option will show the applied rules. When using the ``txt`` format it will also displays progress notifications.
  95. The ``--rules`` option limits the rules to apply on the
  96. project:
  97. .. code-block:: bash
  98. $ php php-cs-fixer.phar fix /path/to/project --rules=@PSR2
  99. By default the PSR1 and PSR2 rules are used.
  100. The ``--rules`` option lets you choose the exact rules to
  101. apply (the rule names must be separated by a comma):
  102. .. code-block:: bash
  103. $ php php-cs-fixer.phar fix /path/to/dir --rules=line_ending,full_opening_tag,indentation_type
  104. You can also blacklist the rules you don't want by placing a dash in front of the rule name, if this is more convenient,
  105. using ``-name_of_fixer``:
  106. .. code-block:: bash
  107. $ php php-cs-fixer.phar fix /path/to/dir --rules=-full_opening_tag,-indentation_type
  108. When using combinations of exact and blacklist rules, applying exact rules along with above blacklisted results:
  109. .. code-block:: bash
  110. $ php php-cs-fixer.phar fix /path/to/project --rules=@Symfony,-@PSR1,-blank_line_before_statement,strict_comparison
  111. Complete configuration for rules can be supplied using a ``json`` formatted string.
  112. .. code-block:: bash
  113. $ php php-cs-fixer.phar fix /path/to/project --rules='{"concat_space": {"spacing": "none"}}'
  114. The ``--dry-run`` flag will run the fixer without making changes to your files.
  115. The ``--diff`` flag can be used to let the fixer output all the changes it makes.
  116. The ``--diff-format`` option allows to specify in which format the fixer should output the changes it makes:
  117. * ``udiff``: unified diff format;
  118. * ``sbd``: Sebastianbergmann/diff format (default when using `--diff` without specifying `diff-format`).
  119. The ``--allow-risky`` option (pass ``yes`` or ``no``) allows you to set whether risky rules may run. Default value is taken from config file.
  120. Risky rule is a rule, which could change code behaviour. By default no risky rules are run.
  121. The ``--stop-on-violation`` flag stops the execution upon first file that needs to be fixed.
  122. The ``--show-progress`` option allows you to choose the way process progress is rendered:
  123. * ``none``: disables progress output;
  124. * ``run-in``: simple single-line progress output;
  125. * ``estimating``: multiline progress output with number of files and percentage on each line. Note that with this option, the files list is evaluated before processing to get the total number of files and then kept in memory to avoid using the file iterator twice. This has an impact on memory usage so using this option is not recommended on very large projects;
  126. * ``estimating-max``: same as ``estimating`` but using all terminal columns instead of default 80.
  127. If the option is not provided, it defaults to ``run-in`` unless a config file that disables output is used, in which case it defaults to ``none``. This option has no effect if the verbosity of the command is less than ``verbose``.
  128. .. code-block:: bash
  129. $ php php-cs-fixer.phar fix --verbose --show-progress=estimating
  130. The command can also read from standard input, in which case it won't
  131. automatically fix anything:
  132. .. code-block:: bash
  133. $ cat foo.php | php php-cs-fixer.phar fix --diff -
  134. Finally, if you don't need BC kept on CLI level, you might use `PHP_CS_FIXER_FUTURE_MODE` to start using options that
  135. would be default in next MAJOR release (unified differ, estimating, full-width progress indicator):
  136. .. code-block:: bash
  137. $ PHP_CS_FIXER_FUTURE_MODE=1 php php-cs-fixer.phar fix -v --diff
  138. Choose from the list of available rules:
  139. * **align_multiline_comment**
  140. Each line of multi-line DocComments must have an asterisk [PSR-5] and
  141. must be aligned with the first one.
  142. Configuration options:
  143. - ``comment_type`` (``'all_multiline'``, ``'phpdocs_like'``, ``'phpdocs_only'``): whether
  144. to fix PHPDoc comments only (``phpdocs_only``), any multi-line comment
  145. whose lines all start with an asterisk (``phpdocs_like``) or any
  146. multi-line comment (``all_multiline``); defaults to ``'phpdocs_only'``
  147. * **array_syntax**
  148. PHP arrays should be declared using the configured syntax.
  149. Configuration options:
  150. - ``syntax`` (``'long'``, ``'short'``): whether to use the ``long`` or ``short`` array
  151. syntax; defaults to ``'long'``
  152. * **binary_operator_spaces** [@Symfony]
  153. Binary operators should be surrounded by space as configured.
  154. Configuration options:
  155. - ``align_double_arrow`` (``false``, ``null``, ``true``): (deprecated) Whether to apply,
  156. remove or ignore double arrows alignment; defaults to ``false``
  157. - ``align_equals`` (``false``, ``null``, ``true``): (deprecated) Whether to apply, remove
  158. or ignore equals alignment; defaults to ``false``
  159. - ``default`` (``'align'``, ``'align_single_space'``, ``'align_single_space_minimal'``,
  160. ``'single_space'``, ``null``): default fix strategy; defaults to ``'single_space'``
  161. - ``operators`` (``array``): dictionary of ``binary operator`` => ``fix strategy``
  162. values that differ from the default strategy; defaults to ``[]``
  163. * **blank_line_after_namespace** [@PSR2, @Symfony]
  164. There MUST be one blank line after the namespace declaration.
  165. * **blank_line_after_opening_tag** [@Symfony]
  166. Ensure there is no code on the same line as the PHP open tag and it is
  167. followed by a blank line.
  168. * **blank_line_before_return**
  169. An empty line feed should precede a return statement. DEPRECATED: use
  170. ``blank_line_before_statement`` instead.
  171. * **blank_line_before_statement** [@Symfony]
  172. An empty line feed must precede any configured statement.
  173. Configuration options:
  174. - ``statements`` (``array``): list of statements which must be preceded by an
  175. empty line; defaults to ``['break', 'continue', 'declare', 'return',
  176. 'throw', 'try']``
  177. * **braces** [@PSR2, @Symfony]
  178. The body of each structure MUST be enclosed by braces. Braces should be
  179. properly placed. Body of braces should be properly indented.
  180. Configuration options:
  181. - ``allow_single_line_closure`` (``bool``): whether single line lambda notation
  182. should be allowed; defaults to ``false``
  183. - ``position_after_anonymous_constructs`` (``'next'``, ``'same'``): whether the
  184. opening brace should be placed on "next" or "same" line after anonymous
  185. constructs (anonymous classes and lambda functions); defaults to ``'same'``
  186. - ``position_after_control_structures`` (``'next'``, ``'same'``): whether the opening
  187. brace should be placed on "next" or "same" line after control
  188. structures; defaults to ``'same'``
  189. - ``position_after_functions_and_oop_constructs`` (``'next'``, ``'same'``): whether
  190. the opening brace should be placed on "next" or "same" line after
  191. classy constructs (non-anonymous classes, interfaces, traits, methods
  192. and non-lambda functions); defaults to ``'next'``
  193. * **cast_spaces** [@Symfony]
  194. A single space or none should be between cast and variable.
  195. Configuration options:
  196. - ``space`` (``'none'``, ``'single'``): spacing to apply between cast and variable;
  197. defaults to ``'single'``
  198. * **class_attributes_separation** [@Symfony]
  199. Class, trait and interface elements must be separated with one blank
  200. line.
  201. Configuration options:
  202. - ``elements`` (``array``): list of classy elements; 'const', 'method',
  203. 'property'; defaults to ``['const', 'method', 'property']``
  204. * **class_definition** [@PSR2, @Symfony]
  205. Whitespace around the keywords of a class, trait or interfaces
  206. definition should be one space.
  207. Configuration options:
  208. - ``multiLineExtendsEachSingleLine`` (``bool``): whether definitions should be
  209. multiline; defaults to ``false``
  210. - ``singleItemSingleLine`` (``bool``): whether definitions should be single line
  211. when including a single item; defaults to ``false``
  212. - ``singleLine`` (``bool``): whether definitions should be single line; defaults
  213. to ``false``
  214. * **class_keyword_remove**
  215. Converts ``::class`` keywords to FQCN strings.
  216. * **combine_consecutive_issets**
  217. Using ``isset($var) &&`` multiple times should be done in one call.
  218. * **combine_consecutive_unsets**
  219. Calling ``unset`` on multiple items should be done in one call.
  220. * **compact_nullable_typehint**
  221. Remove extra spaces in a nullable typehint.
  222. * **concat_space** [@Symfony]
  223. Concatenation should be spaced according configuration.
  224. Configuration options:
  225. - ``spacing`` (``'none'``, ``'one'``): spacing to apply around concatenation operator;
  226. defaults to ``'none'``
  227. * **declare_equal_normalize** [@Symfony]
  228. Equal sign in declare statement should be surrounded by spaces or not
  229. following configuration.
  230. Configuration options:
  231. - ``space`` (``'none'``, ``'single'``): spacing to apply around the equal sign;
  232. defaults to ``'none'``
  233. * **declare_strict_types** [@PHP70Migration:risky, @PHP71Migration:risky]
  234. Force strict types declaration in all files. Requires PHP >= 7.0.
  235. *Risky rule: forcing strict types will stop non strict code from working.*
  236. * **dir_constant** [@Symfony:risky]
  237. Replaces ``dirname(__FILE__)`` expression with equivalent ``__DIR__``
  238. constant.
  239. *Risky rule: risky when the function ``dirname`` is overridden.*
  240. * **doctrine_annotation_array_assignment** [@DoctrineAnnotation]
  241. Doctrine annotations must use configured operator for assignment in
  242. arrays.
  243. Configuration options:
  244. - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
  245. Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
  246. 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
  247. 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
  248. 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
  249. 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
  250. 'license', 'link', 'method', 'package', 'param', 'property',
  251. 'property-read', 'property-write', 'return', 'see', 'since', 'source',
  252. 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
  253. 'version', 'after', 'afterClass', 'backupGlobals',
  254. 'backupStaticAttributes', 'before', 'beforeClass',
  255. 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
  256. 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
  257. 'coversNothing', 'dataProvider', 'depends', 'expectedException',
  258. 'expectedExceptionCode', 'expectedExceptionMessage',
  259. 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
  260. 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
  261. 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
  262. 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
  263. 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
  264. - ``operator`` (``':'``, ``'='``): the operator to use; defaults to ``'='``
  265. * **doctrine_annotation_braces** [@DoctrineAnnotation]
  266. Doctrine annotations without arguments must use the configured syntax.
  267. Configuration options:
  268. - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
  269. Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
  270. 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
  271. 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
  272. 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
  273. 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
  274. 'license', 'link', 'method', 'package', 'param', 'property',
  275. 'property-read', 'property-write', 'return', 'see', 'since', 'source',
  276. 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
  277. 'version', 'after', 'afterClass', 'backupGlobals',
  278. 'backupStaticAttributes', 'before', 'beforeClass',
  279. 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
  280. 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
  281. 'coversNothing', 'dataProvider', 'depends', 'expectedException',
  282. 'expectedExceptionCode', 'expectedExceptionMessage',
  283. 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
  284. 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
  285. 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
  286. 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
  287. 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
  288. - ``syntax`` (``'with_braces'``, ``'without_braces'``): whether to add or remove
  289. braces; defaults to ``'without_braces'``
  290. * **doctrine_annotation_indentation** [@DoctrineAnnotation]
  291. Doctrine annotations must be indented with four spaces.
  292. Configuration options:
  293. - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
  294. Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
  295. 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
  296. 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
  297. 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
  298. 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
  299. 'license', 'link', 'method', 'package', 'param', 'property',
  300. 'property-read', 'property-write', 'return', 'see', 'since', 'source',
  301. 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
  302. 'version', 'after', 'afterClass', 'backupGlobals',
  303. 'backupStaticAttributes', 'before', 'beforeClass',
  304. 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
  305. 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
  306. 'coversNothing', 'dataProvider', 'depends', 'expectedException',
  307. 'expectedExceptionCode', 'expectedExceptionMessage',
  308. 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
  309. 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
  310. 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
  311. 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
  312. 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
  313. - ``indent_mixed_lines`` (``bool``): whether to indent lines that have content
  314. before closing parenthesis; defaults to ``false``
  315. * **doctrine_annotation_spaces** [@DoctrineAnnotation]
  316. Fixes spaces in Doctrine annotations.
  317. Configuration options:
  318. - ``after_argument_assignments`` (``null``, ``bool``): whether to add, remove or
  319. ignore spaces after argument assignment operator; defaults to ``false``
  320. - ``after_array_assignments_colon`` (``null``, ``bool``): whether to add, remove or
  321. ignore spaces after array assignment ``:`` operator; defaults to ``true``
  322. - ``after_array_assignments_equals`` (``null``, ``bool``): whether to add, remove or
  323. ignore spaces after array assignment ``=`` operator; defaults to ``true``
  324. - ``around_argument_assignments`` (``bool``): whether to fix spaces around
  325. argument assignment operator (deprecated, use
  326. ``before_argument_assignments`` and ``after_argument_assignments`` options
  327. instead); defaults to ``true``
  328. - ``around_array_assignments`` (``bool``): whether to fix spaces around array
  329. assignment operators (deprecated, use ``before_array_assignments_*`` and
  330. ``after_array_assignments_*`` options instead); defaults to ``true``
  331. - ``around_commas`` (``bool``): whether to fix spaces around commas; defaults to
  332. ``true``
  333. - ``around_parentheses`` (``bool``): whether to fix spaces around parentheses;
  334. defaults to ``true``
  335. - ``before_argument_assignments`` (``null``, ``bool``): whether to add, remove or
  336. ignore spaces before argument assignment operator; defaults to ``false``
  337. - ``before_array_assignments_colon`` (``null``, ``bool``): whether to add, remove or
  338. ignore spaces before array ``:`` assignment operator; defaults to ``true``
  339. - ``before_array_assignments_equals`` (``null``, ``bool``): whether to add, remove or
  340. ignore spaces before array ``=`` assignment operator; defaults to ``true``
  341. - ``ignored_tags`` (``array``): list of tags that must not be treated as Doctrine
  342. Annotations; defaults to ``['abstract', 'access', 'code', 'deprec',
  343. 'encode', 'exception', 'final', 'ingroup', 'inheritdoc', 'inheritDoc',
  344. 'magic', 'name', 'toc', 'tutorial', 'private', 'static', 'staticvar',
  345. 'staticVar', 'throw', 'api', 'author', 'category', 'copyright',
  346. 'deprecated', 'example', 'filesource', 'global', 'ignore', 'internal',
  347. 'license', 'link', 'method', 'package', 'param', 'property',
  348. 'property-read', 'property-write', 'return', 'see', 'since', 'source',
  349. 'subpackage', 'throws', 'todo', 'TODO', 'usedBy', 'uses', 'var',
  350. 'version', 'after', 'afterClass', 'backupGlobals',
  351. 'backupStaticAttributes', 'before', 'beforeClass',
  352. 'codeCoverageIgnore', 'codeCoverageIgnoreStart',
  353. 'codeCoverageIgnoreEnd', 'covers', 'coversDefaultClass',
  354. 'coversNothing', 'dataProvider', 'depends', 'expectedException',
  355. 'expectedExceptionCode', 'expectedExceptionMessage',
  356. 'expectedExceptionMessageRegExp', 'group', 'large', 'medium',
  357. 'preserveGlobalState', 'requires', 'runTestsInSeparateProcesses',
  358. 'runInSeparateProcess', 'small', 'test', 'testdox', 'ticket', 'uses',
  359. 'SuppressWarnings', 'noinspection', 'package_version', 'enduml',
  360. 'startuml', 'fix', 'FIXME', 'fixme', 'override']``
  361. * **elseif** [@PSR2, @Symfony]
  362. The keyword ``elseif`` should be used instead of ``else if`` so that all
  363. control keywords look like single words.
  364. * **encoding** [@PSR1, @PSR2, @Symfony]
  365. PHP code MUST use only UTF-8 without BOM (remove BOM).
  366. * **ereg_to_preg** [@Symfony:risky]
  367. Replace deprecated ``ereg`` regular expression functions with preg.
  368. *Risky rule: risky if the ``ereg`` function is overridden.*
  369. * **escape_implicit_backslashes**
  370. Escape implicit backslashes in strings and heredocs to ease the
  371. understanding of which are special chars interpreted by PHP and which
  372. not.
  373. Configuration options:
  374. - ``double_quoted`` (``bool``): whether to fix double-quoted strings; defaults to
  375. ``true``
  376. - ``heredoc_syntax`` (``bool``): whether to fix heredoc syntax; defaults to ``true``
  377. - ``single_quoted`` (``bool``): whether to fix single-quoted strings; defaults to
  378. ``false``
  379. * **explicit_indirect_variable**
  380. Add curly braces to indirect variables to make them clear to understand.
  381. Requires PHP >= 7.0.
  382. * **explicit_string_variable**
  383. Converts implicit variables into explicit ones in double-quoted strings
  384. or heredoc syntax.
  385. * **final_internal_class**
  386. Internal classes should be ``final``.
  387. *Risky rule: changing classes to ``final`` might cause code execution to break.*
  388. Configuration options:
  389. - ``annotation-black-list`` (``array``): class level annotations tags that must be
  390. omitted to fix the class, even if all of the white list ones are used
  391. as well. (case insensitive); defaults to ``['@final', '@Entity', '@ORM']``
  392. - ``annotation-white-list`` (``array``): class level annotations tags that must be
  393. set in order to fix the class. (case insensitive); defaults to
  394. ``['@internal']``
  395. * **full_opening_tag** [@PSR1, @PSR2, @Symfony]
  396. PHP code must use the long ``<?php`` tags or short-echo ``<?=`` tags and not
  397. other tag variations.
  398. * **function_declaration** [@PSR2, @Symfony]
  399. Spaces should be properly placed in a function declaration.
  400. Configuration options:
  401. - ``closure_function_spacing`` (``'none'``, ``'one'``): spacing to use before open
  402. parenthesis for closures; defaults to ``'one'``
  403. * **function_to_constant** [@Symfony:risky]
  404. Replace core functions calls returning constants with the constants.
  405. *Risky rule: risky when any of the configured functions to replace are overridden.*
  406. Configuration options:
  407. - ``functions`` (``array``): list of function names to fix; defaults to
  408. ``['get_class', 'php_sapi_name', 'phpversion', 'pi']``
  409. * **function_typehint_space** [@Symfony]
  410. Add missing space between function's argument and its typehint.
  411. * **general_phpdoc_annotation_remove**
  412. Configured annotations should be omitted from phpdocs.
  413. Configuration options:
  414. - ``annotations`` (``array``): list of annotations to remove, e.g. ``["author"]``;
  415. defaults to ``[]``
  416. * **hash_to_slash_comment**
  417. Single line comments should use double slashes ``//`` and not hash ``#``.
  418. DEPRECATED: use ``single_line_comment_style`` instead.
  419. * **header_comment**
  420. Add, replace or remove header comment.
  421. Configuration options:
  422. - ``commentType`` (``'comment'``, ``'PHPDoc'``): comment syntax type; defaults to
  423. ``'comment'``
  424. - ``header`` (``string``): proper header content; required
  425. - ``location`` (``'after_declare_strict'``, ``'after_open'``): the location of the
  426. inserted header; defaults to ``'after_declare_strict'``
  427. - ``separate`` (``'both'``, ``'bottom'``, ``'none'``, ``'top'``): whether the header should be
  428. separated from the file content with a new line; defaults to ``'both'``
  429. * **heredoc_to_nowdoc**
  430. Convert ``heredoc`` to ``nowdoc`` where possible.
  431. * **include** [@Symfony]
  432. Include/Require and file path should be divided with a single space.
  433. File path should not be placed under brackets.
  434. * **increment_style** [@Symfony]
  435. Pre- or post-increment and decrement operators should be used if
  436. possible.
  437. Configuration options:
  438. - ``style`` (``'post'``, ``'pre'``): whether to use pre- or post-increment and
  439. decrement operators; defaults to ``'pre'``
  440. * **indentation_type** [@PSR2, @Symfony]
  441. Code MUST use configured indentation type.
  442. * **is_null** [@Symfony:risky]
  443. Replaces ``is_null($var)`` expression with ``null === $var``.
  444. *Risky rule: risky when the function ``is_null`` is overridden.*
  445. Configuration options:
  446. - ``use_yoda_style`` (``bool``): whether Yoda style conditions should be used;
  447. defaults to ``true``
  448. * **line_ending** [@PSR2, @Symfony]
  449. All PHP files must use same line ending.
  450. * **linebreak_after_opening_tag**
  451. Ensure there is no code on the same line as the PHP open tag.
  452. * **list_syntax**
  453. List (``array`` destructuring) assignment should be declared using the
  454. configured syntax. Requires PHP >= 7.1.
  455. Configuration options:
  456. - ``syntax`` (``'long'``, ``'short'``): whether to use the ``long`` or ``short`` ``list``
  457. syntax; defaults to ``'long'``
  458. * **lowercase_cast** [@Symfony]
  459. Cast should be written in lower case.
  460. * **lowercase_constants** [@PSR2, @Symfony]
  461. The PHP constants ``true``, ``false``, and ``null`` MUST be in lower case.
  462. * **lowercase_keywords** [@PSR2, @Symfony]
  463. PHP keywords MUST be in lower case.
  464. * **magic_constant_casing** [@Symfony]
  465. Magic constants should be referred to using the correct casing.
  466. * **mb_str_functions**
  467. Replace non multibyte-safe functions with corresponding mb function.
  468. *Risky rule: risky when any of the functions are overridden.*
  469. * **method_argument_space** [@PSR2, @Symfony]
  470. In method arguments and method call, there MUST NOT be a space before
  471. each comma and there MUST be one space after each comma. Argument lists
  472. MAY be split across multiple lines, where each subsequent line is
  473. indented once. When doing so, the first item in the list MUST be on the
  474. next line, and there MUST be only one argument per line.
  475. Configuration options:
  476. - ``ensure_fully_multiline`` (``bool``): ensure every argument of a multiline
  477. argument list is on its own line; defaults to ``false``
  478. - ``keep_multiple_spaces_after_comma`` (``bool``): whether keep multiple spaces
  479. after comma; defaults to ``false``
  480. * **method_chaining_indentation**
  481. Method chaining MUST be properly indented. Method chaining with
  482. different levels of indentation is not supported.
  483. * **method_separation**
  484. Methods must be separated with one blank line. DEPRECATED: use
  485. ``class_attributes_separation`` instead.
  486. * **modernize_types_casting** [@Symfony:risky]
  487. Replaces ``intval``, ``floatval``, ``doubleval``, ``strval`` and ``boolval``
  488. function calls with according type casting operator.
  489. *Risky rule: risky if any of the functions ``intval``, ``floatval``, ``doubleval``, ``strval`` or ``boolval`` are overridden.*
  490. * **native_function_casing** [@Symfony]
  491. Function defined by PHP should be called using the correct casing.
  492. * **native_function_invocation**
  493. Add leading ``\`` before function invocation of internal function to speed
  494. up resolving.
  495. *Risky rule: risky when any of the functions are overridden.*
  496. Configuration options:
  497. - ``exclude`` (``array``): list of functions to ignore; defaults to ``[]``
  498. * **new_with_braces** [@Symfony]
  499. All instances created with new keyword must be followed by braces.
  500. * **no_alias_functions** [@Symfony:risky]
  501. Master functions shall be used instead of aliases.
  502. *Risky rule: risky when any of the alias functions are overridden.*
  503. * **no_blank_lines_after_class_opening** [@Symfony]
  504. There should be no empty lines after class opening brace.
  505. * **no_blank_lines_after_phpdoc** [@Symfony]
  506. There should not be blank lines between docblock and the documented
  507. element.
  508. * **no_blank_lines_before_namespace**
  509. There should be no blank lines before a namespace declaration.
  510. * **no_break_comment** [@PSR2, @Symfony]
  511. There must be a comment when fall-through is intentional in a non-empty
  512. case body.
  513. Configuration options:
  514. - ``comment_text`` (``string``): the text to use in the added comment and to
  515. detect it; defaults to ``'no break'``
  516. * **no_closing_tag** [@PSR2, @Symfony]
  517. The closing ``?>`` tag MUST be omitted from files containing only PHP.
  518. * **no_empty_comment** [@Symfony]
  519. There should not be any empty comments.
  520. * **no_empty_phpdoc** [@Symfony]
  521. There should not be empty PHPDoc blocks.
  522. * **no_empty_statement** [@Symfony]
  523. Remove useless semicolon statements.
  524. * **no_extra_consecutive_blank_lines** [@Symfony]
  525. Removes extra blank lines and/or blank lines following configuration.
  526. Configuration options:
  527. - ``tokens`` (``array``): list of tokens to fix; defaults to ``['extra']``
  528. * **no_homoglyph_names** [@Symfony:risky]
  529. Replace accidental usage of homoglyphs (non ascii characters) in names.
  530. *Risky rule: renames classes and cannot rename the files. You might have string references to renamed code (``$$name``).*
  531. * **no_leading_import_slash** [@Symfony]
  532. Remove leading slashes in use clauses.
  533. * **no_leading_namespace_whitespace** [@Symfony]
  534. The namespace declaration line shouldn't contain leading whitespace.
  535. * **no_mixed_echo_print** [@Symfony]
  536. Either language construct ``print`` or ``echo`` should be used.
  537. Configuration options:
  538. - ``use`` (``'echo'``, ``'print'``): the desired language construct; defaults to
  539. ``'echo'``
  540. * **no_multiline_whitespace_around_double_arrow** [@Symfony]
  541. Operator ``=>`` should not be surrounded by multi-line whitespaces.
  542. * **no_multiline_whitespace_before_semicolons**
  543. Multi-line whitespace before closing semicolon are prohibited.
  544. * **no_null_property_initialization**
  545. Properties MUST not be explicitly initialized with ``null``.
  546. * **no_php4_constructor**
  547. Convert PHP4-style constructors to ``__construct``.
  548. *Risky rule: risky when old style constructor being fixed is overridden or overrides parent one.*
  549. * **no_short_bool_cast** [@Symfony]
  550. Short cast ``bool`` using double exclamation mark should not be used.
  551. * **no_short_echo_tag**
  552. Replace short-echo ``<?=`` with long format ``<?php echo`` syntax.
  553. * **no_singleline_whitespace_before_semicolons** [@Symfony]
  554. Single-line whitespace before closing semicolon are prohibited.
  555. * **no_spaces_after_function_name** [@PSR2, @Symfony]
  556. When making a method or function call, there MUST NOT be a space between
  557. the method or function name and the opening parenthesis.
  558. * **no_spaces_around_offset** [@Symfony]
  559. There MUST NOT be spaces around offset braces.
  560. Configuration options:
  561. - ``positions`` (``array``): whether spacing should be fixed inside and/or outside
  562. the offset braces; defaults to ``['inside', 'outside']``
  563. * **no_spaces_inside_parenthesis** [@PSR2, @Symfony]
  564. There MUST NOT be a space after the opening parenthesis. There MUST NOT
  565. be a space before the closing parenthesis.
  566. * **no_superfluous_elseif**
  567. Replaces superfluous ``elseif`` with ``if``.
  568. * **no_trailing_comma_in_list_call** [@Symfony]
  569. Remove trailing commas in list function calls.
  570. * **no_trailing_comma_in_singleline_array** [@Symfony]
  571. PHP single-line arrays should not have trailing comma.
  572. * **no_trailing_whitespace** [@PSR2, @Symfony]
  573. Remove trailing whitespace at the end of non-blank lines.
  574. * **no_trailing_whitespace_in_comment** [@PSR2, @Symfony]
  575. There MUST be no trailing spaces inside comments and phpdocs.
  576. * **no_unneeded_control_parentheses** [@Symfony]
  577. Removes unneeded parentheses around control statements.
  578. Configuration options:
  579. - ``statements`` (``array``): list of control statements to fix; defaults to
  580. ``['break', 'clone', 'continue', 'echo_print', 'return', 'switch_case',
  581. 'yield']``
  582. * **no_unneeded_curly_braces** [@Symfony]
  583. Removes unneeded curly braces that are superfluous and aren't part of a
  584. control structure's body.
  585. * **no_unneeded_final_method** [@Symfony]
  586. A final class must not have final methods.
  587. * **no_unreachable_default_argument_value**
  588. In function arguments there must not be arguments with default values
  589. before non-default ones.
  590. *Risky rule: modifies the signature of functions; therefore risky when using systems (such as some Symfony components) that rely on those (for example through reflection).*
  591. * **no_unused_imports** [@Symfony]
  592. Unused use statements must be removed.
  593. * **no_useless_else**
  594. There should not be useless ``else`` cases.
  595. * **no_useless_return**
  596. There should not be an empty return statement at the end of a function.
  597. * **no_whitespace_before_comma_in_array** [@Symfony]
  598. In array declaration, there MUST NOT be a whitespace before each comma.
  599. * **no_whitespace_in_blank_line** [@Symfony]
  600. Remove trailing whitespace at the end of blank lines.
  601. * **non_printable_character** [@Symfony:risky, @PHP70Migration:risky, @PHP71Migration:risky]
  602. Remove Zero-width space (ZWSP), Non-breaking space (NBSP) and other
  603. invisible unicode symbols.
  604. *Risky rule: risky when strings contain intended invisible characters.*
  605. Configuration options:
  606. - ``use_escape_sequences_in_strings`` (``bool``): whether characters should be
  607. replaced with escape sequences in strings; defaults to ``false``
  608. * **normalize_index_brace** [@Symfony]
  609. Array index should always be written by using square braces.
  610. * **not_operator_with_space**
  611. Logical NOT operators (``!``) should have leading and trailing
  612. whitespaces.
  613. * **not_operator_with_successor_space**
  614. Logical NOT operators (``!``) should have one trailing whitespace.
  615. * **object_operator_without_whitespace** [@Symfony]
  616. There should not be space before or after object ``T_OBJECT_OPERATOR``
  617. ``->``.
  618. * **ordered_class_elements**
  619. Orders the elements of classes/interfaces/traits.
  620. Configuration options:
  621. - ``order`` (``array``): list of strings defining order of elements; defaults to
  622. ``['use_trait', 'constant_public', 'constant_protected',
  623. 'constant_private', 'property_public', 'property_protected',
  624. 'property_private', 'construct', 'destruct', 'magic', 'phpunit',
  625. 'method_public', 'method_protected', 'method_private']``
  626. * **ordered_imports**
  627. Ordering use statements.
  628. Configuration options:
  629. - ``importsOrder`` (``array``, ``null``): defines the order of import types; defaults
  630. to ``null``
  631. - ``sortAlgorithm`` (``'alpha'``, ``'length'``): whether the statements should be
  632. sorted alphabetically or by length; defaults to ``'alpha'``
  633. * **php_unit_construct** [@Symfony:risky]
  634. PHPUnit assertion method calls like "->assertSame(true, $foo)" should be
  635. written with dedicated method like "->assertTrue($foo)".
  636. *Risky rule: fixer could be risky if one is overriding PHPUnit's native methods.*
  637. Configuration options:
  638. - ``assertions`` (``array``): list of assertion methods to fix; defaults to
  639. ``['assertEquals', 'assertSame', 'assertNotEquals', 'assertNotSame']``
  640. * **php_unit_dedicate_assert** [@Symfony:risky, @PHPUnit30Migration:risky, @PHPUnit32Migration:risky, @PHPUnit35Migration:risky, @PHPUnit43Migration:risky, @PHPUnit48Migration:risky, @PHPUnit50Migration:risky, @PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky]
  641. PHPUnit assertions like "assertInternalType", "assertFileExists", should
  642. be used over "assertTrue".
  643. *Risky rule: fixer could be risky if one is overriding PHPUnit's native methods.*
  644. Configuration options:
  645. - ``functions`` (``null``): (deprecated, use ``target`` instead) List of assertions
  646. to fix (overrides ``target``); defaults to ``null``
  647. - ``target`` (``'3.0'``, ``'3.5'``, ``'5.0'``, ``'5.6'``, ``'newest'``): target version of
  648. PHPUnit; defaults to ``'5.0'``
  649. * **php_unit_expectation** [@PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky]
  650. Usages of ``->setExpectedException*`` methods MUST be replaced by
  651. ``->expectException*`` methods.
  652. *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
  653. Configuration options:
  654. - ``target`` (``'5.2'``, ``'5.6'``, ``'newest'``): target version of PHPUnit; defaults to
  655. ``'newest'``
  656. * **php_unit_fqcn_annotation** [@Symfony]
  657. PHPUnit annotations should be a FQCNs including a root namespace.
  658. * **php_unit_mock** [@PHPUnit54Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky]
  659. Usages of ``->getMock`` and
  660. ``->getMockWithoutInvokingTheOriginalConstructor`` methods MUST be
  661. replaced by ``->createMock`` method.
  662. *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
  663. * **php_unit_namespaced** [@PHPUnit48Migration:risky, @PHPUnit50Migration:risky, @PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky]
  664. PHPUnit classes MUST be used in namespaced version, eg
  665. ``\PHPUnit\Framework\TestCase`` instead of ``\PHPUnit_Framework_TestCase``.
  666. *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
  667. Configuration options:
  668. - ``target`` (``'4.8'``, ``'5.7'``, ``'6.0'``, ``'newest'``): target version of PHPUnit;
  669. defaults to ``'newest'``
  670. * **php_unit_no_expectation_annotation** [@PHPUnit32Migration:risky, @PHPUnit35Migration:risky, @PHPUnit43Migration:risky, @PHPUnit48Migration:risky, @PHPUnit50Migration:risky, @PHPUnit52Migration:risky, @PHPUnit54Migration:risky, @PHPUnit56Migration:risky, @PHPUnit57Migration:risky, @PHPUnit60Migration:risky]
  671. Usages of ``@expectedException*`` annotations MUST be replaced by
  672. ``->setExpectedException*`` methods.
  673. *Risky rule: risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.*
  674. Configuration options:
  675. - ``target`` (``'3.2'``, ``'4.3'``, ``'newest'``): target version of PHPUnit; defaults to
  676. ``'newest'``
  677. - ``use_class_const`` (``bool``): use ::class notation; defaults to ``true``
  678. * **php_unit_strict**
  679. PHPUnit methods like ``assertSame`` should be used instead of
  680. ``assertEquals``.
  681. *Risky rule: risky when any of the functions are overridden.*
  682. Configuration options:
  683. - ``assertions`` (``array``): list of assertion methods to fix; defaults to
  684. ``['assertAttributeEquals', 'assertAttributeNotEquals', 'assertEquals',
  685. 'assertNotEquals']``
  686. * **php_unit_test_annotation**
  687. Adds or removes @test annotations from tests, following configuration.
  688. *Risky rule: this fixer may change the name of your tests, and could cause incompatibility with abstract classes or interfaces.*
  689. Configuration options:
  690. - ``case`` (``'camel'``, ``'snake'``): whether to camel or snake case when adding the
  691. test prefix; defaults to ``'camel'``
  692. - ``style`` (``'annotation'``, ``'prefix'``): whether to use the @test annotation or
  693. not; defaults to ``'prefix'``
  694. * **php_unit_test_class_requires_covers**
  695. Adds a default ``@coversNothing`` annotation to PHPUnit test classes that
  696. have no ``@covers*`` annotation.
  697. * **phpdoc_add_missing_param_annotation**
  698. Phpdoc should contain @param for all params.
  699. Configuration options:
  700. - ``only_untyped`` (``bool``): whether to add missing ``@param`` annotations for
  701. untyped parameters only; defaults to ``true``
  702. * **phpdoc_align** [@Symfony]
  703. All items of the given phpdoc tags must be aligned vertically.
  704. Configuration options:
  705. - ``tags`` (``array``): the tags that should be aligned; defaults to ``['param',
  706. 'return', 'throws', 'type', 'var']``
  707. * **phpdoc_annotation_without_dot** [@Symfony]
  708. Phpdocs annotation descriptions should not be a sentence.
  709. * **phpdoc_indent** [@Symfony]
  710. Docblocks should have the same indentation as the documented subject.
  711. * **phpdoc_inline_tag** [@Symfony]
  712. Fix phpdoc inline tags, make inheritdoc always inline.
  713. * **phpdoc_no_access** [@Symfony]
  714. @access annotations should be omitted from phpdocs.
  715. * **phpdoc_no_alias_tag** [@Symfony]
  716. No alias PHPDoc tags should be used.
  717. Configuration options:
  718. - ``replacements`` (``array``): mapping between replaced annotations with new
  719. ones; defaults to ``['property-read' => 'property', 'property-write' =>
  720. 'property', 'type' => 'var', 'link' => 'see']``
  721. * **phpdoc_no_empty_return** [@Symfony]
  722. @return void and @return null annotations should be omitted from
  723. phpdocs.
  724. * **phpdoc_no_package** [@Symfony]
  725. @package and @subpackage annotations should be omitted from phpdocs.
  726. * **phpdoc_no_useless_inheritdoc** [@Symfony]
  727. Classy that does not inherit must not have inheritdoc tags.
  728. * **phpdoc_order**
  729. Annotations in phpdocs should be ordered so that param annotations come
  730. first, then throws annotations, then return annotations.
  731. * **phpdoc_return_self_reference** [@Symfony]
  732. The type of ``@return`` annotations of methods returning a reference to
  733. itself must the configured one.
  734. Configuration options:
  735. - ``replacements`` (``array``): mapping between replaced return types with new
  736. ones; defaults to ``['this' => '$this', '@this' => '$this', '$self' =>
  737. 'self', '@self' => 'self', '$static' => 'static', '@static' =>
  738. 'static']``
  739. * **phpdoc_scalar** [@Symfony]
  740. Scalar types should always be written in the same form. ``int`` not
  741. ``integer``, ``bool`` not ``boolean``, ``float`` not ``real`` or ``double``.
  742. * **phpdoc_separation** [@Symfony]
  743. Annotations in phpdocs should be grouped together so that annotations of
  744. the same type immediately follow each other, and annotations of a
  745. different type are separated by a single blank line.
  746. * **phpdoc_single_line_var_spacing** [@Symfony]
  747. Single line @var PHPDoc should have proper spacing.
  748. * **phpdoc_summary** [@Symfony]
  749. Phpdocs summary should end in either a full stop, exclamation mark, or
  750. question mark.
  751. * **phpdoc_to_comment** [@Symfony]
  752. Docblocks should only be used on structural elements.
  753. * **phpdoc_trim** [@Symfony]
  754. Phpdocs should start and end with content, excluding the very first and
  755. last line of the docblocks.
  756. * **phpdoc_types** [@Symfony]
  757. The correct case must be used for standard PHP types in phpdoc.
  758. * **phpdoc_types_order**
  759. Sorts PHPDoc types.
  760. Configuration options:
  761. - ``null_adjustment`` (``'always_first'``, ``'always_last'``, ``'none'``): forces the
  762. position of ``null`` (overrides ``sort_algorithm``); defaults to
  763. ``'always_first'``
  764. - ``sort_algorithm`` (``'alpha'``, ``'none'``): the sorting algorithm to apply;
  765. defaults to ``'alpha'``
  766. * **phpdoc_var_without_name** [@Symfony]
  767. @var and @type annotations should not contain the variable name.
  768. * **pow_to_exponentiation** [@PHP56Migration:risky, @PHP70Migration:risky, @PHP71Migration:risky]
  769. Converts ``pow`` to the ``**`` operator.
  770. *Risky rule: risky when the function ``pow`` is overridden.*
  771. * **pre_increment**
  772. Pre incrementation/decrementation should be used if possible.
  773. DEPRECATED: use ``increment_style`` instead.
  774. * **protected_to_private** [@Symfony]
  775. Converts ``protected`` variables and methods to ``private`` where possible.
  776. * **psr0**
  777. Classes must be in a path that matches their namespace, be at least one
  778. namespace deep and the class name should match the file name.
  779. *Risky rule: this fixer may change your class name, which will break the code that is depended on old name.*
  780. Configuration options:
  781. - ``dir`` (``string``): the directory where the project code is placed; defaults
  782. to ``''``
  783. * **psr4** [@Symfony:risky]
  784. Class names should match the file name.
  785. *Risky rule: this fixer may change your class name, which will break the code that is depended on old name.*
  786. * **random_api_migration** [@PHP70Migration:risky, @PHP71Migration:risky]
  787. Replaces ``rand``, ``srand``, ``getrandmax`` functions calls with their ``mt_*``
  788. analogs.
  789. *Risky rule: risky when the configured functions are overridden.*
  790. Configuration options:
  791. - ``replacements`` (``array``): mapping between replaced functions with the new
  792. ones; defaults to ``['getrandmax' => 'mt_getrandmax', 'rand' =>
  793. 'mt_rand', 'srand' => 'mt_srand']``
  794. * **return_type_declaration** [@Symfony]
  795. There should be one or no space before colon, and one space after it in
  796. return type declarations, according to configuration.
  797. Configuration options:
  798. - ``space_before`` (``'none'``, ``'one'``): spacing to apply before colon; defaults to
  799. ``'none'``
  800. * **self_accessor** [@Symfony]
  801. Inside class or interface element "self" should be preferred to the
  802. class name itself.
  803. * **semicolon_after_instruction** [@Symfony]
  804. Instructions must be terminated with a semicolon.
  805. * **short_scalar_cast** [@Symfony]
  806. Cast ``(boolean)`` and ``(integer)`` should be written as ``(bool)`` and
  807. ``(int)``, ``(double)`` and ``(real)`` as ``(float)``.
  808. * **silenced_deprecation_error** [@Symfony:risky]
  809. Ensures deprecation notices are silenced.
  810. *Risky rule: silencing of deprecation errors might cause changes to code behaviour.*
  811. * **simplified_null_return**
  812. A return statement wishing to return ``void`` should not return ``null``.
  813. * **single_blank_line_at_eof** [@PSR2, @Symfony]
  814. A PHP file without end tag must always end with a single empty line
  815. feed.
  816. * **single_blank_line_before_namespace** [@Symfony]
  817. There should be exactly one blank line before a namespace declaration.
  818. * **single_class_element_per_statement** [@PSR2, @Symfony]
  819. There MUST NOT be more than one property or constant declared per
  820. statement.
  821. Configuration options:
  822. - ``elements`` (``array``): list of strings which element should be modified;
  823. defaults to ``['const', 'property']``
  824. * **single_import_per_statement** [@PSR2, @Symfony]
  825. There MUST be one use keyword per declaration.
  826. * **single_line_after_imports** [@PSR2, @Symfony]
  827. Each namespace use MUST go on its own line and there MUST be one blank
  828. line after the use statements block.
  829. * **single_line_comment_style** [@Symfony]
  830. Single-line comments and multi-line comments with only one line of
  831. actual content should use the ``//`` syntax.
  832. Configuration options:
  833. - ``comment_types`` (``array``): list of comment types to fix; defaults to
  834. ``['asterisk', 'hash']``
  835. * **single_quote** [@Symfony]
  836. Convert double quotes to single quotes for simple strings.
  837. * **space_after_semicolon** [@Symfony]
  838. Fix whitespace after a semicolon.
  839. Configuration options:
  840. - ``remove_in_empty_for_expressions`` (``bool``): whether spaces should be removed
  841. for empty ``for`` expressions; defaults to ``false``
  842. * **standardize_not_equals** [@Symfony]
  843. Replace all ``<>`` with ``!=``.
  844. * **static_lambda**
  845. Lambdas not (indirect) referencing ``$this`` must be declared ``static``.
  846. *Risky rule: risky when using "->bindTo" on lambdas without referencing to ``$this``.*
  847. * **strict_comparison**
  848. Comparisons should be strict.
  849. *Risky rule: changing comparisons to strict might change code behavior.*
  850. * **strict_param**
  851. Functions should be used with ``$strict`` param set to ``true``.
  852. *Risky rule: risky when the fixed function is overridden or if the code relies on non-strict usage.*
  853. * **switch_case_semicolon_to_colon** [@PSR2, @Symfony]
  854. A case should be followed by a colon and not a semicolon.
  855. * **switch_case_space** [@PSR2, @Symfony]
  856. Removes extra spaces between colon and case value.
  857. * **ternary_operator_spaces** [@Symfony]
  858. Standardize spaces around ternary operator.
  859. * **ternary_to_null_coalescing** [@PHP70Migration, @PHP71Migration]
  860. Use ``null`` coalescing operator ``??`` where possible. Requires PHP >= 7.0.
  861. * **trailing_comma_in_multiline_array** [@Symfony]
  862. PHP multi-line arrays should have a trailing comma.
  863. * **trim_array_spaces** [@Symfony]
  864. Arrays should be formatted like function/method arguments, without
  865. leading or trailing single line space.
  866. * **unary_operator_spaces** [@Symfony]
  867. Unary operators should be placed adjacent to their operands.
  868. * **visibility_required** [@PSR2, @Symfony, @PHP71Migration]
  869. Visibility MUST be declared on all properties and methods; abstract and
  870. final MUST be declared before the visibility; static MUST be declared
  871. after the visibility.
  872. Configuration options:
  873. - ``elements`` (``array``): the structural elements to fix (PHP >= 7.1 required
  874. for ``const``); defaults to ``['property', 'method']``
  875. * **void_return** [@PHP71Migration:risky]
  876. Add void return type to functions with missing or empty return
  877. statements, but priority is given to ``@return`` annotations. Requires
  878. PHP >= 7.1.
  879. *Risky rule: modifies the signature of functions.*
  880. * **whitespace_after_comma_in_array** [@Symfony]
  881. In array declaration, there MUST be a whitespace after each comma.
  882. * **yoda_style** [@Symfony]
  883. Write conditions in Yoda style (``true``), non-Yoda style (``false``) or
  884. ignore those conditions (``null``) based on configuration.
  885. Configuration options:
  886. - ``equal`` (``bool``, ``null``): style for equal (``==``, ``!=``) statements; defaults to
  887. ``true``
  888. - ``identical`` (``bool``, ``null``): style for identical (``===``, ``!==``) statements;
  889. defaults to ``true``
  890. - ``less_and_greater`` (``bool``, ``null``): style for less and greater than (``<``,
  891. ``<=``, ``>``, ``>=``) statements; defaults to ``null``
  892. The ``--dry-run`` option displays the files that need to be
  893. fixed but without actually modifying them:
  894. .. code-block:: bash
  895. $ php php-cs-fixer.phar fix /path/to/code --dry-run
  896. Config file
  897. -----------
  898. Instead of using command line options to customize the rule, you can save the
  899. project configuration in a ``.php_cs.dist`` file in the root directory of your project.
  900. The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.9.1/src/ConfigInterface.php>`_
  901. which lets you configure the rules, the files and directories that
  902. need to be analyzed. You may also create ``.php_cs`` file, which is
  903. the local configuration that will be used instead of the project configuration. It
  904. is a good practice to add that file into your ``.gitignore`` file.
  905. With the ``--config`` option you can specify the path to the
  906. ``.php_cs`` file.
  907. The example below will add two rules to the default list of PSR2 set rules:
  908. .. code-block:: php
  909. <?php
  910. $finder = PhpCsFixer\Finder::create()
  911. ->exclude('somedir')
  912. ->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
  913. ->in(__DIR__)
  914. ;
  915. return PhpCsFixer\Config::create()
  916. ->setRules([
  917. '@PSR2' => true,
  918. 'strict_param' => true,
  919. 'array_syntax' => ['syntax' => 'short'],
  920. ])
  921. ->setFinder($finder)
  922. ;
  923. **NOTE**: ``exclude`` will work only for directories, so if you need to exclude file, try ``notPath``.
  924. See `Symfony\\Finder <http://symfony.com/doc/current/components/finder.html>`_
  925. online documentation for other `Finder` methods.
  926. You may also use a blacklist for the rules instead of the above shown whitelist approach.
  927. The following example shows how to use all ``Symfony`` rules but the ``full_opening_tag`` rule.
  928. .. code-block:: php
  929. <?php
  930. $finder = PhpCsFixer\Finder::create()
  931. ->exclude('somedir')
  932. ->in(__DIR__)
  933. ;
  934. return PhpCsFixer\Config::create()
  935. ->setRules([
  936. '@Symfony' => true,
  937. 'full_opening_tag' => false,
  938. ])
  939. ->setFinder($finder)
  940. ;
  941. You may want to use non-linux whitespaces in your project. Then you need to
  942. configure them in your config file.
  943. .. code-block:: php
  944. <?php
  945. return PhpCsFixer\Config::create()
  946. ->setIndent("\t")
  947. ->setLineEnding("\r\n")
  948. ;
  949. By using ``--using-cache`` option with ``yes`` or ``no`` you can set if the caching
  950. mechanism should be used.
  951. Caching
  952. -------
  953. The caching mechanism is enabled by default. This will speed up further runs by
  954. fixing only files that were modified since the last run. The tool will fix all
  955. files if the tool version has changed or the list of rules has changed.
  956. Cache is supported only for tool downloaded as phar file or installed via
  957. composer.
  958. Cache can be disabled via ``--using-cache`` option or config file:
  959. .. code-block:: php
  960. <?php
  961. return PhpCsFixer\Config::create()
  962. ->setUsingCache(false)
  963. ;
  964. Cache file can be specified via ``--cache-file`` option or config file:
  965. .. code-block:: php
  966. <?php
  967. return PhpCsFixer\Config::create()
  968. ->setCacheFile(__DIR__.'/.php_cs.cache')
  969. ;
  970. Using PHP CS Fixer on CI
  971. ------------------------
  972. Require ``friendsofphp/php-cs-fixer`` as a ``dev`` dependency:
  973. .. code-block:: bash
  974. $ ./composer.phar require --dev friendsofphp/php-cs-fixer
  975. Then, add the following command to your CI:
  976. .. code-block:: bash
  977. $ CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB "${COMMIT_RANGE}")
  978. $ if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php_cs(\\.dist)?|composer\\.lock)$"; then IFS=$'\n' EXTRA_ARGS=('--path-mode=intersection' '--' ${CHANGED_FILES[@]}); fi
  979. $ vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no "${EXTRA_ARGS[@]}"
  980. Where ``$COMMIT_RANGE`` is your range of commits, eg ``$TRAVIS_COMMIT_RANGE`` or ``HEAD~..HEAD``.
  981. Exit codes
  982. ----------
  983. Exit code is built using following bit flags:
  984. * 0 OK.
  985. * 1 General error (or PHP minimal requirement not matched).
  986. * 4 Some files have invalid syntax (only in dry-run mode).
  987. * 8 Some files need fixing (only in dry-run mode).
  988. * 16 Configuration error of the application.
  989. * 32 Configuration error of a Fixer.
  990. * 64 Exception raised within the application.
  991. (applies to exit codes of the `fix` command only)
  992. Helpers
  993. -------
  994. Dedicated plugins exist for:
  995. * `Atom`_
  996. * `NetBeans`_
  997. * `PhpStorm`_
  998. * `Sublime Text`_
  999. * `Vim`_
  1000. Contribute
  1001. ----------
  1002. The tool comes with quite a few built-in fixers, but everyone is more than
  1003. welcome to `contribute`_ more of them.
  1004. Fixers
  1005. ~~~~~~
  1006. A *fixer* is a class that tries to fix one CS issue (a ``Fixer`` class must
  1007. implement ``FixerInterface``).
  1008. Configs
  1009. ~~~~~~~
  1010. A *config* knows about the CS rules and the files and directories that must be
  1011. scanned by the tool when run in the directory of your project. It is useful for
  1012. projects that follow a well-known directory structures (like for Symfony
  1013. projects for instance).
  1014. .. _php-cs-fixer.phar: http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar
  1015. .. _Atom: https://github.com/Glavin001/atom-beautify
  1016. .. _NetBeans: http://plugins.netbeans.org/plugin/49042/php-cs-fixer
  1017. .. _PhpStorm: https://medium.com/@valeryan/how-to-configure-phpstorm-to-use-php-cs-fixer-1844991e521f
  1018. .. _Sublime Text: https://github.com/benmatselby/sublime-phpcs
  1019. .. _Vim: https://github.com/stephpy/vim-php-cs-fixer
  1020. .. _contribute: https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/CONTRIBUTING.md