You are here

public function ProjectRelease::isSecurityRelease in Automatic Updates 8.2

Determines if the release is a security release.

Return value

bool TRUE if the release is security release, or FALSE otherwise.

File

automatic_updates_9_3_shim/src/ProjectRelease.php, line 201

Class

ProjectRelease
Provides a project release value object.

Namespace

Drupal\automatic_updates_9_3_shim

Code

public function isSecurityRelease() : bool {
  return $this
    ->isReleaseType('Security update');
}