yiisoft / actions

https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
16 stars 3 forks source link

rector config adjustments #12

Open arogachev opened 1 year ago

arogachev commented 1 year ago
xepozz commented 1 year ago

Also good to ignore Rector\Php70\Rector\FuncCall\NonVariableToVariableOnFunctionCallRector rule. It tries to change

extract(func_get_arg(1));

to

$var = func_get_arg(1)
extract($var);