koel/app/Services/LicenseService.php

18 lines
264 B
PHP
Raw Normal View History

2024-01-03 17:02:18 +00:00
<?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();
}
}