1: <?php 2: 3: namespace rsanchez\Deep\App\Laravel\Facade; 4: 5: use Illuminate\Support\Facades\Facade; 6: 7: class Titles extends Facade 8: { 9: /** 10: * {@inheritdoc} 11: */ 12: protected static function getFacadeAccessor() 13: { 14: return 'deep.title'; 15: } 16: } 17: