Skip to content

Instantly share code, notes, and snippets.

@gempir
Last active July 24, 2020 14:10
Show Gist options
  • Save gempir/de8035c035565a555d094d115bc23bda to your computer and use it in GitHub Desktop.
Save gempir/de8035c035565a555d094d115bc23bda to your computer and use it in GitHub Desktop.
Type Safe PHP Collection
<?php declare(strict_types=1);
use ArrayIterator;
use IteratorAggregate;
use Traversable;
class PageCollection implements IteratorAggregate
{
/** @var Page[] */
private $items;
public function getIterator(): Traversable
{
return new ArrayIterator($this->items);
}
public function addPage(Page $page): void
{
$this->items[] = $page;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment