This repository was archived by the owner on Nov 30, 2017. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathResolverServiceRegistry.php
More file actions
86 lines (74 loc) · 1.79 KB
/
ResolverServiceRegistry.php
File metadata and controls
86 lines (74 loc) · 1.79 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
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Bundle\SettingsBundle\Resolver;
use Sylius\Component\Registry\ServiceRegistryInterface;
/**
* Cannot be final, because it is proxied
*
* @author Steffen Brem <steffenbrem@gmail.com>
*/
class ResolverServiceRegistry implements ServiceRegistryInterface
{
/**
* @var ServiceRegistryInterface
*/
private $decoratedRegistry;
/**
* @var SettingsResolverInterface
*/
private $defaultResolver;
/**
* @param ServiceRegistryInterface $decoratedRegistry
* @param SettingsResolverInterface $defaultResolver
*/
public function __construct(ServiceRegistryInterface $decoratedRegistry, SettingsResolverInterface $defaultResolver)
{
$this->decoratedRegistry = $decoratedRegistry;
$this->defaultResolver = $defaultResolver;
}
/**
* {@inheritdoc}
*/
public function all()
{
return $this->decoratedRegistry->all();
}
/**
* {@inheritdoc}
*/
public function register($type, $service)
{
$this->decoratedRegistry->register($type, $service);
}
/**
* {@inheritdoc}
*/
public function unregister($type)
{
$this->decoratedRegistry->unregister($type);
}
/**
* {@inheritdoc}
*/
public function has($type)
{
return $this->decoratedRegistry->has($type);
}
/**
* {@inheritdoc}
*/
public function get($type)
{
if (!$this->decoratedRegistry->has($type)) {
return $this->defaultResolver;
}
return $this->decoratedRegistry->get($type);
}
}