mirror of
https://github.com/koel/koel
synced 2025-01-02 15:58:46 +00:00
24 lines
494 B
PHP
24 lines
494 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use App\Exceptions\KoelPlusRequiredException;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static bool isPlus()
|
|
* @method static bool isCommunity()
|
|
* @see \App\Services\LicenseService
|
|
*/
|
|
class License extends Facade
|
|
{
|
|
public static function requirePlus(): void
|
|
{
|
|
throw_unless(static::isPlus(), KoelPlusRequiredException::class);
|
|
}
|
|
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return 'License';
|
|
}
|
|
}
|