1 | <?php |
||
5 | class Password extends Text |
||
6 | { |
||
7 | protected $type = 'password'; |
||
8 | |||
9 | protected $notRequired = false; |
||
10 | |||
11 | public function __construct(string $name, string $title) |
||
17 | |||
18 | public function save() |
||
27 | |||
28 | public function getValidationRules() |
||
40 | |||
41 | public function getValue() |
||
45 | |||
46 | protected function hashAsBcrypt() |
||
54 | |||
55 | protected function hashAsMD5() |
||
63 | |||
64 | protected function isNotRequiredWithUpdate() |
||
68 | |||
69 | public function notRequiredWithUpdate() |
||
75 | } |
||
76 |