Closed ctf0 closed 7 years ago
is there a chance to add the functionality to remove the inline namespace once we import it as a Use case ? Ex..
Use
// we excute the find_use cmnd $factory->define(App\Http\Models\User::class, function () {});
and the result become
use App\Http\Models\User; $factory->define(User::class, function () {});
rather than
use App\Http\Models\User; $factory->define(App\Http\Models\User::class, function () {});
Could be an interesting feature. I will look at it.
awesome, thanx :metal:
is there a chance to add the functionality to remove the inline namespace once we import it as a
Use
case ? Ex..and the result become
rather than