こんにちは、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';
}
}
戻り値「auth」は正確に呼び出し元に何を返しますか? それはテキスト「auth」ですか、それともオブジェクトですか?そして、そのクラスにメソッドが 1 つしかない理由は何ですか? 申し訳ありませんが、私はおっとを学んでいます。
前もって感謝します。