0 follower

Interface Yiisoft\Data\Writer\WriteableInterface

Implemented byYiisoft\Data\Writer\DataWriterInterface

Writable allows writing a set of items.

Public Methods

Hide inherited methods

Method Description Defined By
write() Write items specified. Yiisoft\Data\Writer\WriteableInterface

Method Details

Hide inherited methods

write() public abstract method

Write items specified.

public abstract void write ( iterable $items )
$items iterable

Items to write.

throws Yiisoft\Data\Writer\DataWriterException

If there is an error while writing items.

                public function write(iterable $items): void;