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