2018-09-25 12:30:50 +01:00
|
|
|
<?php namespace BookStack\Facades;
|
2015-08-16 18:59:23 +01:00
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
|
|
|
class Activity extends Facade
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the registered name of the component.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-01-28 16:58:52 +00:00
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return 'activity';
|
|
|
|
}
|
|
|
|
}
|