| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class LocatorProxyFactory |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \ArrayObject |
||
| 13 | */ |
||
| 14 | private $searchableNamespaces; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * LocatorProxyFactory constructor. |
||
| 18 | * @param \ArrayObject $searchableNamespaces |
||
| 19 | */ |
||
| 20 | 3 | public function __construct(\ArrayObject $searchableNamespaces) |
|
| 23 | 3 | } |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $moduleName |
||
| 27 | * @param Locator $locator |
||
| 28 | * @return LocatorProxyInterface |
||
| 29 | * @throws NotFoundException |
||
| 30 | */ |
||
| 31 | 5 | public function create(string $moduleName, Locator $locator) : LocatorProxyInterface |
|
| 40 | } |
||
| 41 | } |