mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			324 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			324 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Crater\Services\Module;
 | 
						|
 | 
						|
use Illuminate\Support\Facades\Facade as BaseFacade;
 | 
						|
 | 
						|
class ModuleFacade extends BaseFacade
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Get the registered name of the component.
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    protected static function getFacadeAccessor()
 | 
						|
    {
 | 
						|
        return Module::class;
 | 
						|
    }
 | 
						|
}
 |