*/ interface TaskLogCollectionInterface extends \JsonSerializable, \Countable, \IteratorAggregate { /** * @return array */ public function toArray(); /** * @return bool */ public function isEmpty(); /** * @return TaskLogEntity */ public function first(); /** * @return TaskLogEntity */ public function last(); /** * @return array */ public function getIds(); }