Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class TacticianMiddleWare implements ImplementorInterface |
||
14 | { |
||
15 | /** @var array $recipes */ |
||
16 | private $recipes; |
||
17 | |||
18 | /** |
||
19 | * TacticianMiddleWare constructor. |
||
20 | * |
||
21 | * @param array $recipes |
||
22 | */ |
||
23 | public function __construct( |
||
24 | array $recipes |
||
25 | ) { |
||
26 | $this->recipes = $recipes; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritDoc |
||
31 | */ |
||
32 | public function provide(array $machinery) |
||
37 | } |
||
38 | } |
||
39 |