| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 81 | 1 | public function __debugInfo() // phpcs:ignore Zicht.NamingConventions.Functions.MethodNaming |
|
| 82 | { |
||
| 83 | 1 | $info = ['__length__' => 'infinite']; |
|
| 84 | 1 | $count = 0; |
|
| 85 | 1 | foreach ($this as $key => $value) { |
|
| 86 | 1 | $info[$key] = $value; |
|
| 87 | 1 | if ($count++ >= 4) { |
|
| 88 | 1 | break; |
|
| 89 | } |
||
| 90 | } |
||
| 91 | 1 | return $info; |
|
| 92 | } |
||
| 93 | } |
||
| 94 |