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