'Delete a manga', 'description' => 'Permanently deletes a manga and all its associated chapters', 'parameters' => [ [ 'name' => 'id', 'in' => 'path', 'required' => true, 'schema' => [ 'type' => 'string' ], 'description' => 'The manga ID' ] ], 'responses' => [ '204' => [ 'description' => 'Manga successfully deleted' ], '404' => [ 'description' => 'Manga not found' ] ] ] ) ] )] class DeleteMangaResource { public function __construct( public string $id ) {} }