mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
18 lines
343 B
PHP
18 lines
343 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Services\ApiClients\LemonSqueezyApiClient;
|
|
|
|
class CommunityLicenseService extends LicenseService
|
|
{
|
|
public function __construct(LemonSqueezyApiClient $client)
|
|
{
|
|
parent::__construct($client, config('app.key'));
|
|
}
|
|
|
|
public function isPlus(): bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|