1 | <?php |
||
14 | class FileViewFinder extends \Illuminate\View\FileViewFinder |
||
15 | { |
||
16 | /** |
||
17 | * @var RemoteTemplateFinder |
||
18 | */ |
||
19 | private $remoteView; |
||
20 | |||
21 | /** |
||
22 | * Create a new file view loader instance. |
||
23 | * |
||
24 | * @param Filesystem $files |
||
25 | * @param array $paths |
||
26 | * @param RemoteTemplateFinder $remoteView |
||
27 | * @param array $extensions |
||
28 | */ |
||
29 | public function __construct( |
||
38 | |||
39 | /** |
||
40 | * Get the fully qualified location of the view. |
||
41 | * |
||
42 | * @param string $name |
||
43 | * |
||
44 | * @return string |
||
45 | * @throws IgnoredUrlSuffixException |
||
46 | * @throws RemoteTemplateNotFoundException |
||
47 | * @throws RemoteHostNotConfiguredException |
||
48 | * @throws UrlIsForbiddenException |
||
49 | */ |
||
50 | public function find($name): string |
||
62 | } |
||
63 |