Disable automatic adding of new lines for use statements
Atom: 1.23.3 PHP: 7.1.6 PHP Integrator: 3.2.0
PHP Integrator adds extra lines between use statements.
Starting use block:
use App\Models\Report;
use App\Http\Controllers\AbstractController;
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use App\Models\AbstractModel;
When typing a class PHP integrator suggests, confirming it will add the use case with an additional line between the existing use statements:
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;
This also effects the "Sort use statements" command which is now injecting multiple new lines between use statements:
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;