mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-15 13:32:43 +01:00
16 lines
217 B
PHP
16 lines
217 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service;
|
|
|
|
use App\Models\Organization;
|
|
|
|
class BillingContract
|
|
{
|
|
public function hasSubscription(Organization $organization): bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|