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';
|
|
}
|
|
}
|