wernerkrauss / silverstripe-rector

A developer utility for automatically upgrading deprecated code for Silverstripe CMS
MIT License
5 stars 3 forks source link

Rule: change filter('Foo', 'Bar') to array notation #2

Open wernerkrauss opened 2 years ago

wernerkrauss commented 2 years ago

MyDO::get()->filter('Field', 'Value) should be converted into MyDO::get()->filter(['Field' => 'Value'])

same for where etc...