| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | return new class ($this->injector, $instance) implements ProviderInterface |
||
| 35 | { |
||
| 36 | /** @var InjectorInterface */ |
||
| 37 | private $injector; |
||
| 38 | |||
| 39 | /** @var Set */ |
||
| 40 | private $set; |
||
| 41 | |||
| 42 | public function __construct(InjectorInterface $injector, Set $set) |
||
| 43 | { |
||
| 44 | $this->injector = $injector; |
||
| 45 | $this->set = $set; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return mixed |
||
| 50 | */ |
||
| 51 | public function get() |
||
| 54 | } |
||
| 55 | }; |
||
| 58 |