mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
19 lines
370 B
PHP
19 lines
370 B
PHP
<?php
|
|
|
|
namespace App\Services\License;
|
|
|
|
use App\Models\License;
|
|
use App\Values\LicenseStatus;
|
|
|
|
interface LicenseServiceInterface
|
|
{
|
|
public function isPlus(): bool;
|
|
|
|
public function isCommunity(): bool;
|
|
|
|
public function activate(string $key): License;
|
|
|
|
public function deactivate(License $license): void;
|
|
|
|
public function getStatus(): LicenseStatus;
|
|
}
|