monday-factory/php-collections

package of usefull collections for php

dev-master 2019-02-06 09:44 UTC

This package is auto-updated.

Last update: 2024-04-06 23:52:33 UTC


README

Useful PHP utilities (Collections, Iterators, etc)

ObjectIterator usage


use MondayFactory\Collections\Iterator\ObjectIterator;

class UserCredentialsDataIterator extends ObjectIterator
{

	public function current(): UserCredentialsData
	{
		return parent::current();
	}
}