extends Controller #179
HPWebdeveloper
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Suppose we have a controller (PostController) in App\Http\Controller namespace
class PostController extends Controller
When we move this controller to somewhere else, because of "extends Controller" we have to manually add this line:
use App\Http\Controllers\Controller;
I think it would be great if laravel-microscope can resolve and make it automatic.
Beta Was this translation helpful? Give feedback.
All reactions