Файл: system/vendor/illuminate/support/Facades/View.php
Строк: 38
<?php
namespace IlluminateSupportFacades;
/**
* @method static bool exists(string $view)
* @method static IlluminateContractsViewView file(string $path, array $data = [], array $mergeData = [])
* @method static IlluminateContractsViewView make(string $view, array $data = [], array $mergeData = [])
* @method static mixed share(array|string $key, $value = null)
* @method static array composer(array|string $views, Closure|string $callback)
* @method static array creator(array|string $views, Closure|string $callback)
* @method static IlluminateContractsViewFactory addNamespace(string $namespace, string|array $hints)
* @method static IlluminateContractsViewFactory replaceNamespace(string $namespace, string|array $hints)
*
* @see IlluminateViewFactory
*/
class View extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'view';
}
}