mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 02:54:45 +02:00
15 lines
284 B
PHP
15 lines
284 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use App\Services\Activity\ActivityLogTargetableService;
|
|
|
|
class LogTarget extends Facade
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return ActivityLogTargetableService::class;
|
|
}
|
|
}
|