This repository was archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainer.php
More file actions
74 lines (62 loc) · 2.03 KB
/
Container.php
File metadata and controls
74 lines (62 loc) · 2.03 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
namespace Pianissimo\Component\DependencyInjection;
use Pianissimo\Component\DependencyInjection\ParameterBag\ParameterBag;
use Pianissimo\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
class Container implements ContainerInterface
{
/**
* @var ParameterBagInterface
*/
protected $parameterBag;
/**
* @var object[]|array
*/
protected $services;
public function __construct(ParameterBagInterface $parameterBag = null)
{
$this->services = [];
// Initialize Pianissimo's ParameterBag if none is provided
$this->parameterBag = $parameterBag ?: new ParameterBag();
// Register the ParameterBag as a service
$this->services[ParameterBagInterface::class] = $this->parameterBag;
}
public function getParameter(string $name)
{
return $this->parameterBag->get($name);
}
public function setParameter($name, $value): self
{
$this->parameterBag->set($name, $value);
return $this;
}
/**
* Finds an entry of the container by its identifier and returns it.
*
* @param string $id Identifier of the entry to look for.
*
* @throws NotFoundExceptionInterface No entry was found for **this** identifier.
* @throws ContainerExceptionInterface Error while retrieving the entry.
*
* @return mixed Entry.
*/
public function get($id)
{
return $this->services[$id];
}
/**
* Returns true if the container can return an entry for the given identifier.
* Returns false otherwise.
*
* `has($id)` returning true does not mean that `get($id)` will not throw an exception.
* It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
*
* @param string $id Identifier of the entry to look for.
*
*/
public function has($id): bool
{
return array_key_exists($id, $this->services);
}
}