123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- ======================
- Rule ``phpdoc_scalar``
- ======================
- Scalar types should always be written in the same form. ``int`` not ``integer``,
- ``bool`` not ``boolean``, ``float`` not ``real`` or ``double``.
- Configuration
- -------------
- ``types``
- ~~~~~~~~~
- A list of types to fix.
- Allowed values: a subset of ``['boolean', 'callback', 'double', 'integer', 'real', 'str']``
- Default value: ``['boolean', 'callback', 'double', 'integer', 'real', 'str']``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- /**
- - * @param integer $a
- - * @param boolean $b
- - * @param real $c
- + * @param int $a
- + * @param bool $b
- + * @param float $c
- *
- - * @return double
- + * @return float
- */
- function sample($a, $b, $c)
- {
- return sample2($a, $b, $c);
- }
- Example #2
- ~~~~~~~~~~
- With configuration: ``['types' => ['boolean']]``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- /**
- * @param integer $a
- - * @param boolean $b
- + * @param bool $b
- * @param real $c
- */
- function sample($a, $b, $c)
- {
- return sample2($a, $b, $c);
- }
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
- References
- ----------
- - Fixer class: `PhpCsFixer\\Fixer\\Phpdoc\\PhpdocScalarFixer <./../../../src/Fixer/Phpdoc/PhpdocScalarFixer.php>`_
- - Test class: `PhpCsFixer\\Tests\\Fixer\\Phpdoc\\PhpdocScalarFixerTest <./../../../tests/Fixer/Phpdoc/PhpdocScalarFixerTest.php>`_
- The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.
|