for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oqq\Minc\Common\Collection;
/**
* @author Eric Braun <[email protected]>
*/
class Pair extends AbstractImmutableCollection
{
* @param mixed $val1
* @param mixed $val2
public function __construct($val1, $val2)
parent::__construct([$val1, $val2]);
}