Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function result() |
||
13 | { |
||
14 | $string = ""; |
||
15 | while ($this->count > 0) { |
||
16 | $string .= $this->util->cursor->startOfCurrentLine(); |
||
17 | $string .= $this->util->cursor->deleteCurrentLine(); |
||
18 | --$this->count; |
||
19 | |||
20 | $string .= $this->util->cursor->up(); |
||
21 | } |
||
22 | |||
23 | $string .= $this->util->cursor->down(); |
||
24 | |||
25 | return $string; |
||
26 | } |
||
27 | |||
37 |