Issue #3098521 by Gnanagowthaman sankar, mandclu, penyaskito: drupal_installation_attempted() deprecation referencing wrong change record

(cherry picked from commit 70a86d7b99)
merge-requests/64/head
catch 2020-01-27 10:53:47 +00:00
parent 6ee0528fde
commit 31ff469d24
1 changed files with 2 additions and 2 deletions

View File

@ -734,11 +734,11 @@ class ConfigInstaller implements ConfigInstallerInterface {
* Use \Drupal\Core\Installer\InstallerKernel::installationAttempted()
* instead.
*
* @see https://www.drupal.org/node/3035275
* @see https://www.drupal.org/node/3052704
* @see \Drupal\Core\Installer\InstallerKernel::installationAttempted()
*/
protected function drupalInstallationAttempted() {
@trigger_error(__METHOD__ . '() is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Installer\InstallerKernel::installationAttempted() instead. See https://www.drupal.org/node/3035275', E_USER_DEPRECATED);
@trigger_error(__METHOD__ . '() is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Installer\InstallerKernel::installationAttempted() instead. See https://www.drupal.org/node/3052704', E_USER_DEPRECATED);
return InstallerKernel::installationAttempted();
}