T-Regx
T-Regx copied to clipboard
Create IntelliJ/PhpStorm plugin
Add:
- refactorings
- inspections
- quick fixes
Example actions and inspections could include:
- change
$pattern->match($s)->test()to$pattern->test($s) - change
$pattern->match($s)->first()->text()to$pattern->search($s)->first() - change
Pattern::inject('@', [$value]);toPattern::literal($value)