Issue #3443493: Remove deprecated code from lib/State and lib/Session
2 unresolved threads
Closes #3443493
Merge request reports
Activity
added 18 commits
-
1fac07fa...b00b1682 - 16 commits from branch
project:11.x
- 65ca0c4d - Merge branch '11.x' into 3443493-remove-deprecated-code
- 9f2996bf - fix: restore deprecation infrastructure
-
1fac07fa...b00b1682 - 16 commits from branch
91 85 * {@inheritdoc} 92 86 */ 93 87 public function set($key, $value) { 94 if (isset(self::$deprecatedState[$key])) { 95 // phpcs:ignore Drupal.Semantics.FunctionTriggerError 96 @trigger_error(self::$deprecatedState[$key]['message'], E_USER_DEPRECATED); 97 $key = self::$deprecatedState[$key]['replacement']; 98 } changed this line in version 6 of the diff
87 65 * @see \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::setSaveHandler() 88 66 */ 89 67 public function __construct( 90 RequestStack $request_stack, 91 Connection $connection, 92 MetadataBag $metadata_bag, 93 SessionConfigurationInterface $session_configuration, 94 protected TimeInterface|AbstractProxy|\SessionHandlerInterface|null $time = NULL, 68 protected RequestStack $requestStack, 69 protected Connection $connection, 70 protected MetadataBag $metadata_bag, changed this line in version 7 of the diff
Please register or sign in to reply