mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 03:06:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Facades;
 | |
| 
 | |
| use Illuminate\Support\Facades\Facade;
 | |
| use App\Services\Activity\ActivityLogTargetableService;
 | |
| 
 | |
| class LogTarget extends Facade
 | |
| {
 | |
|     protected static function getFacadeAccessor(): string
 | |
|     {
 | |
|         return ActivityLogTargetableService::class;
 | |
|     }
 | |
| }
 | 
