| 1 | <?php |
||
| 11 | class Password extends AbstractField |
||
| 12 | { |
||
| 13 | use Orderable; |
||
| 14 | use Nullable; |
||
| 15 | use Tooltip; |
||
| 16 | use Placeholder; |
||
| 17 | |||
| 18 | protected $hash = 'bcrypt'; |
||
| 19 | |||
| 20 | 3 | public function hash($hash) |
|
| 42 | |||
| 43 | 3 | public function value(Request $request) |
|
| 49 | |||
| 50 | 2 | public function shouldSkip(Request $request) |
|
| 54 | |||
| 55 | public function getListValue($model) |
||
| 62 | |||
| 63 | public function getEditFormValue($model) |
||
| 72 | |||
| 73 | public function getCreateFormValue() |
||
| 79 | } |
||
| 80 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..