PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
setting
/
src
/
Facades
<?php namespace Botble\Setting\Facades; use Botble\Setting\Supports\SettingStore; use Illuminate\Support\Facades\Facade; class SettingFacade extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return SettingStore::class; } }
[+]
..
[-] SettingFacade.php
[edit]