"Sort use statements" command does not sort uses in any order
Atom: 1.23.3 PHP: 7.1.6 PHP Integrator: 3.2.0
When using the "sort use statements" command it does not sort the use statements in any order.
Starting use block:
use App\Models\Report;
use App\Http\Controllers\AbstractController;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use App\Models\AbstractModel;
use App\Services\Customer\CustomerService;
Using the sort use statements the result of running the command is:
use App\Models\Report;
use App\Models\AbstractModel;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use App\Http\Controllers\AbstractController;
use App\Services\Customer\CustomerService;
This is the same even when I manually remove the addition lines added. Also note that the first two use statements do not have a break between them and this is the actual result.
The expected result should be:
use App\Http\Controllers\AbstractController;
use App\Models\AbstractModel;
use App\Models\Report;
use App\Services\Customer\CustomerService;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;