mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 10:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			430 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Providers;
 | 
						|
 | 
						|
use App\Services\Activity\ActivityLogTargetableService;
 | 
						|
use Illuminate\Support\ServiceProvider;
 | 
						|
 | 
						|
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);
 | 
						|
    }
 | 
						|
}
 |