vim-php-namespace
vim-php-namespace copied to clipboard
PHP7 group namespace declaration not sorted correctly
This:
use App\Mailers\AdminMailer;
use App\Services\{
CityRequestService,
PopupEmailCreator,
CityUpdatesSubscriber,
EmailListSubscriber
};
use Redirect;
use Input;
use URL;
Is wrongly sorted as:
CityRequestService,
CityUpdatesSubscriber,
EmailListSubscriber
PopupEmailCreator,
use App\Mailers\AdminMailer;
use App\Services\{
use Input;
use Redirect;
use URL;
};
The plugin doesn't support group declarations currently.
Contributions are welcomed :)