EvilFreelancer/bookeo-api-php

View on GitHub
src/Laravel/ClientFacade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bookeo\Laravel;

use Illuminate\Support\Facades\Facade;

class ClientFacade extends Facade
{
    /**
     * @return string
     */
    protected static function getFacadeAccessor(): string
    {
        return ClientWrapper::class;
    }
}