cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
20 lines
559 B
PHP
20 lines
559 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Pterodactyl\Services\Activity\ActivityLogBatchService;
|
|
use Pterodactyl\Services\Activity\ActivityLogTargetableService;
|
|
|
|
class ActivityLogServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Registers the necessary activity logger singletons scoped to the individual
|
|
* request instances.
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->scoped(ActivityLogBatchService::class);
|
|
$this->app->scoped(ActivityLogTargetableService::class);
|
|
}
|
|
}
|