You are here

public function ProjectRelease::isInsecure in Drupal 10

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

Determines if the release is insecure.

Return value

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

File

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

Class

ProjectRelease
Provides a project release value object.

Namespace

Drupal\update

Code

public function isInsecure() : bool {
  return $this
    ->isReleaseType('Insecure');
}