for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Habemus;
use Countable;
use IteratorAggregate;
use Habemus\Utility\Lists\KeyValueList;
class ResolvedList implements IteratorAggregate, Countable
{
use KeyValueList {
set as private;
}
/**
* @param string $id
* @param mixed $resolved
*/
public function share(string $id, $resolved): void
$this->set($id, $resolved);