blessing-skin-server/app/Services/Facades/Database.php
2016-08-28 22:15:09 +08:00

19 lines
298 B
PHP

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