Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | 6 | public function getReflectionDocComment($trimLinePattern = " \t\n\r\0\x0B") |
|
25 | { |
||
26 | 6 | if ($this->reflectionDocComment === null) { |
|
27 | 6 | $this->reflectionDocComment = new ReflectionDocComment((string)$this->getDocComment(), $trimLinePattern); |
|
28 | 2 | } |
|
29 | |||
30 | 6 | return $this->reflectionDocComment; |
|
31 | } |
||
32 | |||
40 |