Skip to content

Instantly share code, notes, and snippets.

@Wemago
Wemago / Collection.php
Created November 24, 2020 10:41 — forked from ricklancee/Collection.php
Collection
<?php
namespace RickLancee;
use Closure;
use Countable;
use ArrayIterator;
use IteratorAggregate;
class Collection implements Countable, IteratorAggregate
{