| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function then(callable $onFulfilled = null, callable $onRejected = null) |
||
| 40 | { |
||
| 41 | if (null === $onFulfilled) { |
||
| 42 | return $this; |
||
| 43 | } |
||
| 44 | |||
| 45 | try { |
||
| 46 | return new self($onFulfilled($this->collection)); |
||
| 47 | } catch (Exception $e) { |
||
| 48 | return new GeocoderRejectedPromise($e); |
||
| 49 | } |
||
| 50 | } |
||
| 51 | |||
| 70 |