Skip to content

Latest commit

 

History

History
70 lines (53 loc) · 1.52 KB

short_scalar_cast.rst

File metadata and controls

70 lines (53 loc) · 1.52 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
@@ -1,7 +1,7 @@
 <?php
-$a = (boolean) $b;
-$a = (integer) $b;
-$a = (double) $b;
-$a = (real) $b;
+$a = (bool) $b;
+$a = (int) $b;
+$a = (float) $b;
+$a = (float) $b;

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

Example #2

--- Original
+++ New
@@ -1,6 +1,6 @@
 <?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:

@PHP74Migration
Using the @PHP74Migration rule set will enable the short_scalar_cast rule.
@PHP80Migration
Using the @PHP80Migration rule set will enable the short_scalar_cast rule.
@PSR12
Using the @PSR12 rule set will enable the short_scalar_cast rule.
@PhpCsFixer
Using the @PhpCsFixer rule set will enable the short_scalar_cast rule.
@Symfony
Using the @Symfony rule set will enable the short_scalar_cast rule.