optimizations
This commit is contained in:
20
app/Services/CollectionAiOperationsService.php
Normal file
20
app/Services/CollectionAiOperationsService.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user