mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	Aligned facade accessor
This commit is contained in:
		@@ -1,5 +1,6 @@
 | 
				
			|||||||
<?php namespace BookStack\Facades;
 | 
					<?php namespace BookStack\Facades;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					use BookStack\Theming\ThemeService;
 | 
				
			||||||
use Illuminate\Support\Facades\Facade;
 | 
					use Illuminate\Support\Facades\Facade;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class Theme extends Facade
 | 
					class Theme extends Facade
 | 
				
			||||||
@@ -11,6 +12,6 @@ class Theme extends Facade
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    protected static function getFacadeAccessor()
 | 
					    protected static function getFacadeAccessor()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return 'theme';
 | 
					        return ThemeService::class;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user