trypost/app/Features/AiVideosLimit.php
2026-04-14 18:44:47 -03:00

15 lines
225 B
PHP

<?php
declare(strict_types=1);
namespace App\Features;
use App\Models\Workspace;
class AiVideosLimit
{
public function resolve(Workspace $scope): int
{
return $scope->plan?->ai_videos_limit ?? 10;
}
}