========================== Rule ``short_scalar_cast`` ========================== Cast ``(boolean)`` and ``(integer)`` should be written as ``(bool)`` and ``(int)``, ``(double)`` and ``(real)`` as ``(float)``, ``(binary)`` as ``(string)``. Examples -------- Example #1 ~~~~~~~~~~ .. code-block:: diff --- Original +++ New `_ - `@PER-CS <./../../ruleSets/PER-CS.rst>`_ - `@PER-CS1.0 <./../../ruleSets/PER-CS1.0.rst>`_ - `@PER-CS2.0 <./../../ruleSets/PER-CS2.0.rst>`_ - `@PHP74Migration <./../../ruleSets/PHP74Migration.rst>`_ - `@PHP80Migration <./../../ruleSets/PHP80Migration.rst>`_ - `@PHP81Migration <./../../ruleSets/PHP81Migration.rst>`_ - `@PHP82Migration <./../../ruleSets/PHP82Migration.rst>`_ - `@PHP83Migration <./../../ruleSets/PHP83Migration.rst>`_ - `@PHP84Migration <./../../ruleSets/PHP84Migration.rst>`_ - `@PSR12 <./../../ruleSets/PSR12.rst>`_ - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ - `@Symfony <./../../ruleSets/Symfony.rst>`_ References ---------- - Fixer class: `PhpCsFixer\\Fixer\\CastNotation\\ShortScalarCastFixer <./../../../src/Fixer/CastNotation/ShortScalarCastFixer.php>`_ - Test class: `PhpCsFixer\\Tests\\Fixer\\CastNotation\\ShortScalarCastFixerTest <./../../../tests/Fixer/CastNotation/ShortScalarCastFixerTest.php>`_ The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.