(string $token)
| 79 | } |
| 80 | |
| 81 | private function removeLegacyPassword(string $token): void |
| 82 | { |
| 83 | if ($this->getValue('data-password', $token) !== null) { |
| 84 | $this->removeValue('data-password', $token); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | protected function removeValue(string $key, string $token): void |
| 89 | { |
no test coverage detected