blessing-skin-server/app/Services/Database.php
2016-08-28 10:05:21 +08:00

19 lines
290 B
PHP

<?php
namespace App\Services;
use \Illuminate\Support\Facades\Facade;
class Database extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'database';
}
}