1: <?php namespace Illuminate\Support\Facades;
2:
3: class Blade extends Facade {
4:
5: /**
6: * Get the registered name of the component.
7: *
8: * @return string
9: */
10: protected static function getFacadeAccessor()
11: {
12: return static::$app['view']->getEngineResolver()->resolve('blade')->getCompiler();
13: }
14:
15: }