Skip to content

Instantly share code, notes, and snippets.

@chriskite
chriskite / gist:4171686
Created November 29, 2012 20:28 — forked from jimbojsb/gist:4171673
deduplicator
<?php
class Deduplicator
{
protected $items = [];
public function add($item)
{
// name field will be in $item->name
$this->items[] = $item;
}