mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
21 lines
559 B
PHP
21 lines
559 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Pterodactyl\Services\Activity\AcitvityLogBatchService;
|
|
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(AcitvityLogBatchService::class);
|
|
$this->app->scoped(ActivityLogTargetableService::class);
|
|
}
|
|
}
|