You are here

public function ProjectRelease::getCoreCompatibilityMessage in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/update/src/ProjectRelease.php \Drupal\update\ProjectRelease::getCoreCompatibilityMessage()

Gets the core compatibility message for the site's version of Drupal core.

Return value

string|null The core compatibility message or NULL if none is available.

File

core/modules/update/src/ProjectRelease.php, line 264

Class

ProjectRelease
Provides a project release value object.

Namespace

Drupal\update

Code

public function getCoreCompatibilityMessage() : ?string {
  return $this->coreCompatibilityMessage;
}