'Stub summary for «'.$title.'».', 'description' => 'Stub SEO description for '.$title.'.', 'polished_content' => trim($prompt)."\n\n", 'suggestions' => [ 'Review headings for clarity.', 'Add a concise meta description.', ], ]; } public function moderate(string $content): array { $blocked = str_contains(strtolower($content), 'spam'); return [ 'status' => $blocked ? 'rejected' : 'approved', 'reason' => $blocked ? 'Detected spam keyword in stub provider.' : null, ]; } }