mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 10:18:36 +02:00
19 lines
430 B
PHP
19 lines
430 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use App\Services\Activity\ActivityLogTargetableService;
|
|
|
|
class ActivityLogServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Registers the necessary activity logger singletons scoped to the individual
|
|
* request instances.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->app->scoped(ActivityLogTargetableService::class);
|
|
}
|
|
}
|