denpamusic/laravel-bitcoinrpc

View on GitHub
src/Facades/Bitcoind.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Denpa\Bitcoin\Facades;

use Illuminate\Support\Facades\Facade;

class Bitcoind extends Facade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor(): string
    {
        return 'bitcoind';
    }
}