| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct(array $endpoints, ContainerInterface $container, BuilderFactory $builderFactory) |
||
| 23 | { |
||
| 24 | foreach ($endpoints as $name => $handler) { |
||
| 25 | $this->addEndpoint($name, $handler); |
||
| 26 | } |
||
| 27 | $this->container = $container; |
||
| 28 | $this->builderFactory = $builderFactory; |
||
| 29 | } |
||
| 30 | |||
| 57 |