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