mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
18 lines
314 B
PHP
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';
|
|
}
|
|
}
|