Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Facades/LogBatch.php
7432 views
1
<?php
2
3
namespace Pterodactyl\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
use Pterodactyl\Services\Activity\ActivityLogBatchService;
7
8
class LogBatch extends Facade
9
{
10
protected static function getFacadeAccessor(): string
11
{
12
return ActivityLogBatchService::class;
13
}
14
}
15
16