| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public function current() |
||
| 53 | { |
||
| 54 | $type = 'unkown'; |
||
| 55 | $isCovered = false; |
||
| 56 | |||
| 57 | if (isset($this->lines[$this->position])) { |
||
| 58 | $type = $this->lines[$this->position]['type']; |
||
| 59 | $isCovered = $this->lines[$this->position]['isCovered']; |
||
| 60 | } |
||
| 61 | |||
| 62 | return array('type' => $type, 'isCovered' => $isCovered, 'content' => $this->file->fgets()); |
||
| 63 | } |
||
| 64 | |||
| 100 |