Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.31 KB

short_scalar_cast.rst

File metadata and controls

51 lines (40 loc) · 1.31 KB

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

--- Original
+++ New
 <?php
-$a = (boolean) $b;
-$a = (integer) $b;
-$a = (double) $b;
+$a = (bool) $b;
+$a = (int) $b;
+$a = (float) $b;

-$a = (binary) $b;
+$a = (string) $b;

Rule sets

The rule is part of the following rule sets:

Source class

PhpCsFixer\Fixer\CastNotation\ShortScalarCastFixer