for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oqq\Minc\Common\Collection;
/**
* Class MutableVector
*
* @author Eric Braun <[email protected]>
*/
class MutableVector extends AbstractMutableCollection
{
* @inheritdoc
public function set($key, $value)
$this->assertContainsKey($key);
parent::set($key, $value);
}