| Total Complexity | 4 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 17 | class JsonStripNulls extends BaseVariadicFunction | ||
| 18 | { | ||
| 19 | 1 | protected function getFunctionName(): string | |
| 20 |     { | ||
| 21 | 1 | return 'json_strip_nulls'; | |
| 22 | } | ||
| 23 | |||
| 24 | 1 | protected function getNodeMappingPattern(): array | |
| 25 |     { | ||
| 26 | 1 | return [ | |
| 27 | 1 | 'StringPrimary', | |
| 28 | 1 | ]; | |
| 29 | } | ||
| 30 | |||
| 31 | 1 | protected function getMinArgumentCount(): int | |
| 32 |     { | ||
| 33 | 1 | return 1; | |
| 34 | } | ||
| 35 | |||
| 36 | 1 | protected function getMaxArgumentCount(): int | |
| 39 | } | ||
| 40 | } | ||
| 41 |