2018-09-25 13:30:50 +02:00
|
|
|
<?php namespace BookStack\Facades;
|
2015-11-21 18:22:14 +01:00
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
|
|
|
class Views extends Facade
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the registered name of the component.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-01-28 17:58:52 +01:00
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return 'views';
|
|
|
|
}
|
|
|
|
}
|