blessing-skin-server/app/Services/Facades/Option.php

19 lines
294 B
PHP
Raw Normal View History

2016-08-24 22:43:04 +08:00
<?php
2016-08-28 22:15:09 +08:00
namespace App\Services\Facades;
2016-08-24 22:43:04 +08:00
use \Illuminate\Support\Facades\Facade;
2016-08-28 22:15:09 +08:00
class Option extends Facade
2016-08-24 22:43:04 +08:00
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
2016-08-28 22:15:09 +08:00
return 'option';
2016-08-24 22:43:04 +08:00
}
}