File: ArrayContainer.php

package info (click to toggle)
php-di-invoker 2.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 324 kB
  • sloc: php: 1,161; makefile: 13; sh: 6
file content (42 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (2)
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;
    }
}