mirror of
https://github.com/pelican-dev/panel.git
synced 2025-07-24 11:32:14 +02:00
15 lines
292 B
PHP
15 lines
292 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use Pterodactyl\Services\Activity\ActivityLogTargetableService;
|
|
|
|
class LogTarget extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return ActivityLogTargetableService::class;
|
|
}
|
|
}
|