Hey,
Awesome plugin, almost on the same level as phpstorm's refactoring :)
When there is a foreach loop in a function, it tries to add the $value as a parameter (as below) which shouldn't be happening
Original
foreach($array as $key => $value){
var_dump($key, $value);
}
Result
public function ($value){
foreach($array as $key => $value){
var_dump($key, $value);
}
}
Hey,
Awesome plugin, almost on the same level as phpstorm's refactoring :)
When there is a foreach loop in a function, it tries to add the $value as a parameter (as below) which shouldn't be happening
Original
Result