Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.2098 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | 1 | public function validated($key = null, $default = null) |
|
34 | { |
||
35 | 1 | $validated = parent::validated(); |
|
36 | |||
37 | 1 | if ($this->isNotFilled('password')) { |
|
38 | Arr::forget($validated, 'password'); |
||
39 | } |
||
40 | |||
41 | 1 | if (!is_null($key)) { |
|
42 | return data_get($validated, $key, $default); |
||
43 | } |
||
44 | |||
45 | 1 | return $validated; |
|
46 | } |
||
48 |