Port schenanigans, update/created timestamps.

This commit is contained in:
Greyscale 2021-07-24 09:11:51 +02:00
parent 17f90dedaa
commit d0335760d7

View file

@ -6,6 +6,10 @@ abstract class AbstractCollection
{
protected array $contained = [];
public function __toArray() : array {
return $this->contained;
}
public function getIterator()
{
return new \ArrayIterator($this->contained);