README.rst 54 KB

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