Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function toArray(): array |
||
37 | { |
||
38 | $codeSnippet = (new Codesnippet()) |
||
39 | ->snippetLineCount(9) |
||
40 | ->surroundingLine($this->lineNumber) |
||
41 | ->get($this->file); |
||
42 | |||
43 | return [ |
||
44 | 'line_number' => $this->lineNumber, |
||
45 | 'method' => $this->getFullMethod(), |
||
46 | 'code_snippet' => $codeSnippet, |
||
47 | 'file' => $this->file, |
||
48 | ]; |
||
49 | } |
||
50 | |||
67 |