koel/app/Facades/License.php

19 lines
314 B
PHP
Raw Normal View History

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