1
1
mirror of https://github.com/pterodactyl/panel.git synced 2025-02-01 03:11:35 +01:00
Pterodactyl-Panel/app/Facades/LogTarget.php

15 lines
300 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Facades;
use Illuminate\Support\Facades\Facade;
use Pterodactyl\Services\Activity\ActivityLogTargetableService;
class LogTarget extends Facade
{
protected static function getFacadeAccessor(): string
{
return ActivityLogTargetableService::class;
}
}