| 1 | <?php |
||
| 10 | class HashPassword |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var PasswordHashService |
||
| 14 | */ |
||
| 15 | protected $hashService; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * RenameFile constructor. |
||
| 19 | * |
||
| 20 | * @param PasswordHashService $hashService |
||
| 21 | */ |
||
| 22 | 1 | public function __construct(PasswordHashService $hashService) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | 1 | public static function enable() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @param array $configuration |
||
| 37 | * @param array $entry |
||
| 38 | * |
||
| 39 | * @return array |
||
| 40 | */ |
||
| 41 | public function execute(array $configuration, array $entry) |
||
| 50 | } |