Laravel のilluminate/support/Facades/Facade.php
ファイルには、次のメソッドがあります。
/**
* Get the registered name of the component.
*
* @return string
*
* @throws \RuntimeException
*/
protected static function getFacadeAccessor()
{
throw new RuntimeException('Facade does not implement getFacadeAccessor method.');
}
以下のように、抽象メソッドを定義するだけでなく、それを行う可能性はありますか?
abstract protected static function getFacadeAccessor();
なぜ彼らは車輪を再発明したかったのでしょうか?