i have seen class like where they use facade and register something on acessor.
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'; }
}
it just taken from the laravel package it just returned facade but what actually that return form does ?