21 lines
396 B
PHP
21 lines
396 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Collection;
|
|
|
|
class CollectionAiOperationsService
|
|
{
|
|
public function __construct(
|
|
private readonly EditorialAutomationService $editorialAutomation,
|
|
) {
|
|
}
|
|
|
|
public function qualityReview(Collection $collection): array
|
|
{
|
|
return $this->editorialAutomation->qualityReview($collection);
|
|
}
|
|
}
|