koel/app/Facades/License.php
2024-01-22 23:24:07 +01:00

18 lines
314 B
PHP

<?php
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static bool isPlus()
* @method static bool isCommunity()
* @see \App\Services\LicenseService
*/
class License extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'License';
}
}