nooktheme/app/Facades/LogBatch.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

15 lines
289 B
PHP

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