While using sublimetext3 in a Laravel project, php-cs-fixer (PHP CS Fixer version 1.12.0) 'fixes' the namespace (App) from Uppercase to lowercase (app).
Eg. namespace App\Http\Controllers;
to namespace app\Http\Controllers;
This causes a Class not found error.
If anyone has a suggestion, I would be grateful. I am also considering not using php-cs-fixer and using phpcbf instead.