| 1 | <?php |
||
| 8 | class Password extends \stdClass implements Arrayable |
||
| 9 | { |
||
| 10 | /** @var string */ |
||
| 11 | public $password; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * This validate and return an array |
||
| 15 | * @return array |
||
| 16 | */ |
||
| 17 | public function toArray(): array |
||
| 23 | |||
| 24 | /** |
||
| 25 | * This function validate a card password |
||
| 26 | */ |
||
| 27 | public function validate() |
||
| 34 | } |
||
| 35 |