mirror of
https://github.com/pterodactyl/panel.git
synced 2025-02-01 03:11:35 +01: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;
|
||
|
}
|
||
|
}
|