15 lines
296 B
PHP
Executable File
15 lines
296 B
PHP
Executable File
<?php namespace Efriandika\LaravelSettings\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class Settings extends Facade {
|
|
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor() { return 'settings'; }
|
|
|
|
}
|