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