mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-06 13:34:50 +08:00
19 lines
298 B
PHP
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';
|
|
}
|
|
}
|