koel/app/Services/CommunityLicenseService.php

12 lines
158 B
PHP
Raw Normal View History

2024-01-03 17:02:18 +00:00
<?php
namespace App\Services;
class CommunityLicenseService extends LicenseService
{
public function isPlus(): bool
{
return false;
}
}