| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | protected function resolve(array $data, array $rules, array $messages, array $customAttributes) |
||
| 12 | { |
||
| 13 | if (is_null($this->resolver)) { |
||
| 14 | return new Validator($this->translator, $data, $rules, $messages, $customAttributes); |
||
| 15 | } |
||
| 16 | |||
| 17 | return call_user_func($this->resolver, $this->translator, $data, $rules, $messages, $customAttributes); |
||
| 18 | } |
||
| 20 |