2022-05-28 19:36:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Facades;
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
2022-10-14 16:59:20 +00:00
|
|
|
use Pterodactyl\Services\Activity\ActivityLogBatchService;
|
2022-05-28 19:36:26 +00:00
|
|
|
|
|
|
|
class LogBatch extends Facade
|
|
|
|
{
|
2022-10-14 16:59:20 +00:00
|
|
|
protected static function getFacadeAccessor(): string
|
2022-05-28 19:36:26 +00:00
|
|
|
{
|
2022-10-14 16:59:20 +00:00
|
|
|
return ActivityLogBatchService::class;
|
2022-05-28 19:36:26 +00:00
|
|
|
}
|
|
|
|
}
|