for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Ncentral\Type;
class EiTuple
{
/**
* @var mixed
*/
private $first;
private $second;
* @return mixed
public function getFirst()
return $this->first;
}
* @param mixed $first
* @return EiTuple
public function withFirst($first)
$new = clone $this;
$new->first = $first;
return $new;
public function getSecond()
return $this->second;
* @param mixed $second
public function withSecond($second)
$new->second = $second;