mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
15 lines
271 B
PHP
15 lines
271 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use Pterodactyl\Services\Activity\ActivityLogService;
|
|
|
|
class Activity extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return ActivityLogService::class;
|
|
}
|
|
}
|