2026-04-14 21:44:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace App\Features;
|
|
|
|
|
|
2026-04-15 01:22:04 +00:00
|
|
|
use App\Models\Account;
|
2026-04-14 21:44:47 +00:00
|
|
|
|
|
|
|
|
class DataRetentionDays
|
|
|
|
|
{
|
2026-04-15 01:22:04 +00:00
|
|
|
public function resolve(Account $scope): int
|
2026-04-14 21:44:47 +00:00
|
|
|
{
|
|
|
|
|
return $scope->plan?->data_retention_days ?? 30;
|
|
|
|
|
}
|
|
|
|
|
}
|