Total Complexity | 7 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class Interpreter implements InterpreterInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var Item |
||
20 | */ |
||
21 | protected $item; |
||
22 | /** |
||
23 | * @var Depository |
||
24 | */ |
||
25 | protected $depository; |
||
26 | |||
27 | /** |
||
28 | * Interpreter constructor. |
||
29 | * @param Depository $depository |
||
30 | */ |
||
31 | public function __construct(Depository $depository) |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @param string $input |
||
38 | */ |
||
39 | public function interpret(string $input): void |
||
62 |