i am trying to find the auth facade class implementation which contains its methods (check(),user() etc.) . I have been reffered to the laravel facade class reference in the laravel docs but none of those classes (authmanager in this case) seem to have the methods used on the facade
Asked
Active
Viewed 758 times
3 Answers
1
Definitions are given in
\Illuminate\Auth\GuardHelpers
and that trait is used by
- Illuminate\Auth\SessionGuard
- Illuminate\Auth\RequestGuard
- Illuminate\Auth\TokenGuard
Each of the above classes, individually have a user() function that helps the rest of the GuardHelper functions...
Hope this answers everything

prateekkathal
- 3,482
- 1
- 20
- 40
0
The easiest way is to install
https://github.com/barryvdh/laravel-ide-helper
It will create a helper bootstrap file and your IDE can simply link the class implementation.

Yada
- 30,349
- 24
- 103
- 144