diff --git a/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php b/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php index 322c43625c..6eadbf8438 100644 --- a/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php +++ b/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php @@ -69,7 +69,7 @@ public function getFullPath($name) { * {@inheritdoc} */ public function writeable() { - @trigger_error('writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/2898947', E_USER_DEPRECATED); + @trigger_error('writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/3155413', E_USER_DEPRECATED); return FALSE; } diff --git a/core/lib/Drupal/Component/PhpStorage/FileStorage.php b/core/lib/Drupal/Component/PhpStorage/FileStorage.php index a2303b06c6..27d88afe7c 100644 --- a/core/lib/Drupal/Component/PhpStorage/FileStorage.php +++ b/core/lib/Drupal/Component/PhpStorage/FileStorage.php @@ -148,7 +148,7 @@ public function getFullPath($name) { * {@inheritdoc} */ public function writeable() { - @trigger_error('writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/2898947', E_USER_DEPRECATED); + @trigger_error('writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/3155413', E_USER_DEPRECATED); return TRUE; } diff --git a/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php b/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php index 330e15a1c5..62553d6a6e 100644 --- a/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php +++ b/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php @@ -59,7 +59,7 @@ public function save($name, $code); * * @deprecated in drupal:9.0.0 and is removed from drupal:10.0.0. No replacement. * - * @see https://www.drupal.org/node/2898947 + * @see https://www.drupal.org/node/3155413 */ public function writeable(); diff --git a/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageReadOnlyTest.php b/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageReadOnlyTest.php index 48c4c807ef..5641386a26 100644 --- a/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageReadOnlyTest.php +++ b/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageReadOnlyTest.php @@ -80,7 +80,7 @@ public function testReadOnly() { /** * @covers ::writeable * @group legacy - * @expectedDeprecation writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/2898947 + * @expectedDeprecation writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/3155413 */ public function testWritable() { $php_read = new FileReadOnlyStorage($this->readonlyStorage); diff --git a/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php b/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php index 63a85b5c83..351764990f 100644 --- a/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php +++ b/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php @@ -49,7 +49,7 @@ public function testCRUD() { /** * @covers ::writeable * @group legacy - * @expectedDeprecation writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/2898947 + * @expectedDeprecation writeable() is deprecated in drupal:9.0.0 and will be removed from drupal:10.0.0. No replacement. See https://www.drupal.org/node/3155413 */ public function testWritable() { $php = new FileStorage($this->standardSettings);