| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0185 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | 10 | protected static function getReflectionComposite() |
|
| 40 | { |
||
| 41 | 10 | if (!static::$reflectionComposite) |
|
| 42 | { |
||
| 43 | static::$reflectionComposite = |
||
| 44 | 3 | ReflectionCompositeFactory::fromClassName |
|
| 45 | ( |
||
| 46 | get_called_class() |
||
| 47 | ) |
||
| 48 | 3 | ->build(); |
|
| 49 | } |
||
| 50 | |||
| 51 | 10 | return static::$reflectionComposite; |
|
| 52 | } |
||
| 53 | } |
||
| 54 |