2015-09-10 20:31:09 +02:00
|
|
|
<?php namespace BookStack\Services\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
|
|
|
|
*/
|
|
|
|
protected static function getFacadeAccessor() { return 'activity'; }
|
|
|
|
}
|