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