嗨,我可以在 laravel 框架中问这个问题吗
namespace Illuminate\Support\Facades;
/**
* @see \Illuminate\Auth\AuthManager
* @see \Illuminate\Contracts\Auth\Factory
* @see \Illuminate\Contracts\Auth\Guard
* @see \Illuminate\Contracts\Auth\StatefulGuard
*/
class Auth extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'auth';
}
}
return 'auth' 到底返回给调用者的是什么?它是文本'auth'还是对象?他们在该类中只有一种方法的原因是什么?对不起,我只是在学习 oop。
先感谢您。