Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function add(Opcode $opcode, Readable $readable, int $offset = 0): JoinableOpcode |
||
48 | { |
||
49 | $id = $this->opcodes->count(); |
||
50 | |||
51 | $joinable = $opcode->join($id, $readable, $offset); |
||
52 | |||
53 | $this->opcodes->push($joinable); |
||
54 | |||
55 | $this->ctx->match($joinable); |
||
56 | |||
57 | return $joinable; |
||
58 | } |
||
59 | |||
68 |