You are here

final public function Tasks::engineVersionRequirementsCheck in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Install/Tasks.php \Drupal\Core\Database\Install\Tasks::engineVersionRequirementsCheck()

Checks engine version requirements for the status report.

This method is called during runtime and update requirements checks.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup[] A list of error messages.

File

core/lib/Drupal/Core/Database/Install/Tasks.php, line 161

Class

Tasks
Database installer structure.

Namespace

Drupal\Core\Database\Install

Code

public final function engineVersionRequirementsCheck() {
  $this
    ->checkEngineVersion();
  return $this->results['fail'];
}