Skip to content

Instantly share code, notes, and snippets.

@Akii
Created January 21, 2016 10:19
Show Gist options
  • Save Akii/4ba0dbdd2e3d85451072 to your computer and use it in GitHub Desktop.
Save Akii/4ba0dbdd2e3d85451072 to your computer and use it in GitHub Desktop.
<?php
class ValueObject {
protected $value;
public function equals(ValueObject $other) {
return $this->value === $other->value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment