| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class Util { |
||
| 21 | /** |
||
| 22 | * Filter null. |
||
| 23 | * |
||
| 24 | * @param array $array Array to filter null values from. |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | 7 | public static function filter_null( $array ) { |
|
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Check if value is not null. |
||
| 33 | * |
||
| 34 | * @param mixed $value Value. |
||
| 35 | * @return boolean True if value is not null, false otherwise. |
||
| 36 | */ |
||
| 37 | 7 | private static function is_not_null( $value ) { |
|
| 41 |