BookStack/app/Facades/Activity.php

22 lines
346 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Facades;
use Illuminate\Support\Facades\Facade;
2021-12-19 19:20:31 +00:00
/**
* @mixin \BookStack\Actions\ActivityLogger
2021-12-19 19:20:31 +00:00
*/
class Activity extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'activity';
}
}