Skip to content

Instantly share code, notes, and snippets.

@bwaidelich
Last active November 18, 2024 14:22
Show Gist options
  • Save bwaidelich/2d5cdcc19bf068ae14cc377035801af9 to your computer and use it in GitHub Desktop.
Save bwaidelich/2d5cdcc19bf068ae14cc377035801af9 to your computer and use it in GitHub Desktop.
PHP type safe "generic" collection
<?php
declare(strict_types=1);
namespace Some\Namespace;
use IteratorAggregate;
use Traversable;
/**
* @implements IteratorAggregate<Item>
*/
final readonly class Items implements IteratorAggregate
{
/**
* array<Item>
*/
private array $items;
private function __construct(
Item ...$items
) {
$this->items = $items;
}
/**
* @param array<Item> $items
*/
public static function fromArray(array $items): self
{
return new self(...$items);
}
public function getIterator(): Traversable
{
yield from $this->items;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment