1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<?php declare(strict_types=1);
namespace Invoker\Test\Mock;
use Psr\Container\ContainerInterface;
/**
* Simple container.
*/
class ArrayContainer implements ContainerInterface
{
private $entries;
public function __construct(array $entries = [])
{
$this->entries = $entries;
}
/** {@inheritDoc} */
public function get($id)
{
if (! array_key_exists($id, $this->entries)) {
throw new NotFound;
}
return $this->entries[$id];
}
/** {@inheritDoc} */
public function has($id): bool
{
return array_key_exists($id, $this->entries);
}
/**
* @param mixed $value
*/
public function set(string $id, $value)
{
$this->entries[$id] = $value;
}
}
|