Find the best Rector rule to solve your problem. Searching through 824 rules.

Found 1 rule. That's the one:

PowToExpRector

Changes pow(val, val2) to ** (exp) parameter

-pow(1, 2);
+1**2;
SETS:  PHP 5.6