Converts pow
to the **
operator.
Risky when the function pow
is overridden.
--- Original
+++ New
<?php
- pow($a, 1);
+ $a** 1;
The rule is part of the following rule sets:
- @PHP56Migration:risky
- @PHP70Migration:risky
- @PHP71Migration:risky
- @PHP74Migration:risky
- @PHP80Migration:risky
- @PhpCsFixer:risky
- @Symfony:risky