'Delete chapter CBZ file', 'description' => 'Removes the CBZ file for a specific chapter and updates the chapter accordingly', 'parameters' => [ [ 'name' => 'id', 'in' => 'path', 'required' => true, 'schema' => [ 'type' => 'string' ], 'description' => 'The chapter ID' ] ], 'responses' => [ '204' => [ 'description' => 'CBZ file successfully deleted' ], '404' => [ 'description' => 'Chapter or CBZ file not found' ] ] ] ) ] )] class DeleteCbzResource { public function __construct( public string $id ) { } }