protected function Statement::__construct

File

drupal/core/lib/Drupal/Core/Database/Statement.php, line 35
Definition of Drupal\Core\Database\StatementBase

Class

Statement
Default implementation of DatabaseStatementInterface.

Namespace

Drupal\Core\Database

Code

protected function __construct($dbh) {
  $this->dbh = $dbh;
  $this
    ->setFetchMode(PDO::FETCH_OBJ);
}