Deprecate generateSalt()
3 unresolved threads
3 unresolved threads
Closes #3443198
Merge request reports
Activity
13 14 */ 14 15 abstract class PhpassHashedPasswordBase implements PasswordInterface { 15 16 17 use DeprecatedServicePropertyTrait; 18 19 /** 20 * The deprecated properties and services on this class. 21 */ 22 protected array $deprecatedProperties = ['countLog2' => 'countLog2']; changed this line in version 4 of the diff
124 132 * A 12 character string containing the iteration count and a random salt. 125 133 */ 126 134 protected function generateSalt() { 135 @trigger_error('Calling ' . __METHOD__ . '() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3443277', E_USER_DEPRECATED); 137 @trigger_error('Calling ' . __METHOD__ . '() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3443277', E_USER_DEPRECATED); 137 @trigger_error(__METHOD__ . '() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3443277', E_USER_DEPRECATED); changed this line in version 5 of the diff
- Resolved by catch
added 4 commits
-
3e0bd81c...9898e1ed - 2 commits from branch
project:10.3.x
- 49b5b63e - Deprecate generateSalt()
- 1408ed20 - Properly deprecate variable and method
-
3e0bd81c...9898e1ed - 2 commits from branch
Please register or sign in to reply