You are here

public function ExceptionDetectNeedsInstallSubscriber::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/EventSubscriber/ExceptionDetectNeedsInstallSubscriber.php \Drupal\Core\EventSubscriber\ExceptionDetectNeedsInstallSubscriber::__construct()
  2. 9 core/lib/Drupal/Core/EventSubscriber/ExceptionDetectNeedsInstallSubscriber.php \Drupal\Core\EventSubscriber\ExceptionDetectNeedsInstallSubscriber::__construct()

Constructs a new ExceptionDetectNeedsInstallSubscriber.

Parameters

\Drupal\Core\Database\Connection $connection: The default database connection.

File

core/lib/Drupal/Core/EventSubscriber/ExceptionDetectNeedsInstallSubscriber.php, line 31

Class

ExceptionDetectNeedsInstallSubscriber
Exception handler to determine if an exception indicates an uninstalled site.

Namespace

Drupal\Core\EventSubscriber

Code

public function __construct(Connection $connection) {
  $this->connection = $connection;
}