You are here

public function ProjectRelease::isUnsupported in Automatic Updates 8.2

Determines if the release is unsupported.

Return value

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

File

automatic_updates_9_3_shim/src/ProjectRelease.php, line 211

Class

ProjectRelease
Provides a project release value object.

Namespace

Drupal\automatic_updates_9_3_shim

Code

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