Automattic / phpcs-neutron-standard

A set of phpcs sniffs for PHP >7 development
MIT License
94 stars 7 forks source link

Add auto-fix for DisallowLongformArraySniff #17

Closed sirbrillig closed 6 years ago

sirbrillig commented 6 years ago

Now it's possible to automatically fix DisallowLongformArraySniff errors. That is, if you run phpcbf on a file, it will automatically convert array( 1, 2 ) to [ 1, 2 ]).