| 1 | <?php |
||
| 15 | class StaticServiceProvider implements ContainerInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | private $instances = []; |
||
| 21 | |||
| 22 | public function set($id, $instance): StaticServiceProvider |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function get($id) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function has($id) |
||
| 44 | } |
||
| 45 |