| Conditions | 2 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | function pathOr() |
||
| 38 | { |
||
| 39 | $pathOr = function ($defaultValue, array $paths, $obj) { |
||
| 40 | 5 | $value = path($paths, $obj); |
|
| 41 | 4 | return $value ? $value : $defaultValue; |
|
| 42 | 5 | }; |
|
| 43 | 5 | $arguments = func_get_args(); |
|
| 44 | 5 | $curried = curryN($pathOr, 3); |
|
| 45 | 5 | return call_user_func_array($curried, $arguments); |
|
| 46 | } |
||
| 47 |