You are here

private function ProjectSecurityData::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/update/src/ProjectSecurityData.php \Drupal\update\ProjectSecurityData::__construct()
  2. 10 core/modules/update/src/ProjectSecurityData.php \Drupal\update\ProjectSecurityData::__construct()

Constructs a ProjectSecurityData object.

Parameters

string $existing_version: The existing (currently installed) version of the project.

array $releases: Project releases as returned by update_get_available().

File

core/modules/update/src/ProjectSecurityData.php, line 78

Class

ProjectSecurityData
Calculates a project's security coverage information.

Namespace

Drupal\update

Code

private function __construct($existing_version = NULL, array $releases = []) {
  $this->existingVersion = $existing_version;
  $this->releases = $releases;
}