I might be missing something, but it seems that the stubs for all artisan generated classes now import classes in the string length descending order - is that intentional?
php artisan make:migration create_test_table
resulting file:
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTestTable extends Migration
{
//...
}
It imports them in alphabetical order, one step closer to psr-12, many more to go.
I see - hmm, doesn't look as neat as it did before.
Most helpful comment
I see - hmm, doesn't look as neat as it did before.