php-short-array-syntax-converter
php-short-array-syntax-converter copied to clipboard
Incorrect windows command line
Thanks for this lovely script that saved me tons of hours and seems to make no mistakes.
Here is a fix for windows users:
FOR /f "tokens=*" %a in ('dir *.php /S/B') DO php convert.php %a -w
Should be:
FOR /f "tokens=*" %a in ('dir *.php /S/B') DO php convert.php -w "%a"