| 1 | <?php |
||
| 19 | class EncodePasswordCommand implements CommandInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $password; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * EncodePasswordCommand constructor. |
||
| 28 | * |
||
| 29 | * @param $password |
||
| 30 | */ |
||
| 31 | public function __construct($password) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function password() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param string $password |
||
| 46 | */ |
||
| 47 | public function setPassword($password) |
||
| 51 | } |
||
| 52 |