So in PHP we can make a method reference by using this syntax right now ``` Route::get('users', [UserController::class, 'index']); ``` I propose that we add a short method reference syntax like so ``` Route::get('users', UserController::index); ```
So in PHP we can make a method reference by using this syntax right now
I propose that we add a short method reference syntax like so