mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 23:24:46 +02:00
15 lines
279 B
PHP
15 lines
279 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use Pterodactyl\Services\Activity\ActivityLogService;
|
|
|
|
class Activity extends Facade
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return ActivityLogService::class;
|
|
}
|
|
}
|