You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
296 B

5 years ago
  1. <?php namespace Efriandika\LaravelSettings\Facades;
  2. use Illuminate\Support\Facades\Facade;
  3. class Settings extends Facade {
  4. /**
  5. * Get the registered name of the component.
  6. *
  7. * @return string
  8. */
  9. protected static function getFacadeAccessor() { return 'settings'; }
  10. }