-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFacile.php
28 lines (25 loc) · 892 Bytes
/
Facile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
namespace Orchestra\Support\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method \Orchestra\Facile\Facile make(string $name, array $data = [], ?string $format = null)
* @method \Orchestra\Facile\Facile view(string $view, array $data = [])
* @method \Orchestra\Facile\Facile with(mixed $data)
* @method void name(string $name, string|\Orchestra\Facile\Template\Parser $parser)
* @method mixed resolve(string|\Orchestra\Facile\Template\Parser $name, ?string $format, array $data, string $method = 'compose')
* @method \Orchestra\Facile\Template\Parser parse(string|\Orchestra\Facile\Template\Parser $name)
*
* @see \Orchestra\Facile\Factory
*/
class Facile extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'orchestra.facile';
}
}