mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
36 lines
743 B
PHP
36 lines
743 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\License;
|
||
|
|
||
|
use App\Exceptions\MethodNotImplementedException;
|
||
|
use App\Models\License;
|
||
|
use App\Values\LicenseStatus;
|
||
|
|
||
|
class FakePlusLicenseService implements LicenseServiceInterface
|
||
|
{
|
||
|
public function activate(string $key): License
|
||
|
{
|
||
|
throw MethodNotImplementedException::method(__METHOD__);
|
||
|
}
|
||
|
|
||
|
public function deactivate(License $license): void
|
||
|
{
|
||
|
throw MethodNotImplementedException::method(__METHOD__);
|
||
|
}
|
||
|
|
||
|
public function getStatus(): LicenseStatus
|
||
|
{
|
||
|
throw MethodNotImplementedException::method(__METHOD__);
|
||
|
}
|
||
|
|
||
|
public function isPlus(): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function isCommunity(): bool
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|