17 lines
281 B
PHP
17 lines
281 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Features;
|
|
|
|
use App\Models\Account;
|
|
|
|
class SocialAccountLimit
|
|
{
|
|
public string $name = 'social-account-limit';
|
|
|
|
public function resolve(Account $scope): int
|
|
{
|
|
return $scope->plan?->social_account_limit ?? 5;
|
|
}
|
|
}
|