我见过像他们使用外观并在访问器上注册一些东西的类。
use Illuminate\Support\Facades\Facade;
/**
* @see \Collective\Html\FormBuilder
*/
class FormFacade extends Facade {
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() { return 'form'; }
}
它只是从 laravel 包中获取的,它刚刚返回了外观,但该返回表单实际上是做什么的?