koel/app/Services/LicenseService.php
2024-01-11 20:27:16 +01:00

17 lines
264 B
PHP

<?php
namespace App\Services;
class LicenseService
{
public function isPlus(): bool
{
// @todo Implement checking for Plus license
return true;
}
public function isCommunity(): bool
{
return !$this->isPlus();
}
}