Last active
July 24, 2020 14:10
-
-
Save gempir/de8035c035565a555d094d115bc23bda to your computer and use it in GitHub Desktop.
Type Safe PHP Collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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