mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
15 lines
289 B
PHP
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;
|
|
}
|
|
}
|