mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
12 lines
158 B
PHP
12 lines
158 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
class CommunityLicenseService extends LicenseService
|
||
|
{
|
||
|
public function isPlus(): bool
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|