
modernize_types_casting
¶Replaces intval
, floatval
, doubleval
, strval
and boolval
function calls with according type casting operator.
Risky if any of the functions intval
, floatval
, doubleval
,
strval
or boolval
are overridden.
--- Original
+++ New
<?php
- $a = intval($b);
- $a = floatval($b);
- $a = doubleval($b);
- $a = strval ($b);
- $a = boolval($b);
+ $a = (int) $b;
+ $a = (float) $b;
+ $a = (float) $b;
+ $a = (string) $b;
+ $a = (bool) $b;
The rule is part of the following rule sets:
Using the @PhpCsFixer:risky rule set will enable the modernize_types_casting
rule.
Using the @Symfony:risky rule set will enable the modernize_types_casting
rule.