14 lines
281 B
PHP
14 lines
281 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
use Pterodactyl\Services\Activity\AcitvityLogBatchService;
|
|
|
|
class LogBatch extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return AcitvityLogBatchService::class;
|
|
}
|
|
}
|