for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ParityBit\DeploymentNotifier;
abstract class ValueObject
{
protected $reference;
public function __construct($reference)
$this->reference = $reference;
}
public function getReference()
return $this->reference;
public function __toString()