mirror of
https://github.com/koel/koel
synced 2025-01-04 16:58:49 +00:00
18 lines
277 B
PHP
18 lines
277 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Facades;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
/**
|
||
|
* @method static bool isPlus()
|
||
|
* @method static bool isCommunity()
|
||
|
*/
|
||
|
class License extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor(): string
|
||
|
{
|
||
|
return 'License';
|
||
|
}
|
||
|
}
|