-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPoetry.php
152 lines (131 loc) · 2.79 KB
/
Poetry.php
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?php
namespace EC\Poetry;
use EC\Poetry\Services\Providers\MessagesProvider;
use EC\Poetry\Services\Providers\ServicesProvider;
use Pimple\Container;
use Psr\Container\ContainerInterface;
/**
* Class Poetry
*
* @package Poetry
*/
class Poetry extends Container implements ContainerInterface
{
/**
* @var \EC\Poetry\Poetry
*/
private static $container = null;
/**
* {@inheritdoc}
*/
public function __construct(array $values = [])
{
parent::__construct($values);
$this->register(new ServicesProvider());
foreach ($values as $name => $value) {
$this->getSettings()->set($name, $value);
}
foreach ($values as $name => $value) {
$this->offsetSet($name, $value);
}
$this->register(new MessagesProvider());
// Set static cache.
self::$container = $this;
}
/**
* {@inheritdoc}
*/
public function get(string $name)
{
return $this[$name];
}
/**
* {@inheritdoc}
*/
public function has(string $name): bool
{
return $this->offsetExists($name);
}
/**
* @return \EC\Poetry\Messages\Components\Identifier
*/
public function getIdentifier()
{
return $this['component.identifier'];
}
/**
* @return \EC\Poetry\Client
*/
public function getClient()
{
return $this['client'];
}
/**
* @return \EC\Poetry\Server
*/
public function getServer()
{
return $this['server'];
}
/**
* @return \EC\Poetry\Services\Settings
*/
public function getSettings()
{
return $this['settings'];
}
/**
* @return \EC\Poetry\Services\Renderer
*/
public function getRenderer()
{
return $this['renderer'];
}
/**
* @return \League\Plates\Engine
*/
public function getRenderEngine()
{
return $this['renderer.engine'];
}
/**
* @return \Symfony\Component\Validator\Validator\RecursiveValidator
*/
public function getValidator()
{
return $this['validator'];
}
/**
* @return \Psr\Log\LoggerInterface
*/
public function getLogger()
{
return $this['logger'];
}
/**
* @return \Symfony\Component\EventDispatcher\EventDispatcher
*/
public function getEventDispatcher()
{
return $this['event_dispatcher'];
}
/**
* Get WSDL service.
*
* @return \EC\Poetry\Services\Wsdl
*/
public function getWsdl()
{
return $this['wsdl'];
}
/**
* @return \EC\Poetry\Poetry
*/
public static function getInstance()
{
if (empty(self::$container)) {
new self();
}
return self::$container;
}
}