mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-16 15:05:51 +00:00
change namespace and cleanup code
This commit is contained in:
20
src/Accounts/Facades/BitinflowAccounts.php
Normal file
20
src/Accounts/Facades/BitinflowAccounts.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Bitinflow\Accounts\Facades;
|
||||
|
||||
use Bitinflow\Accounts\BitinflowAccounts as BitinflowAccountsService;
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
/**
|
||||
* @author René Preuß <rene@preuss.io>
|
||||
*/
|
||||
class BitinflowAccounts extends Facade
|
||||
{
|
||||
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return BitinflowAccountsService::class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user