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 StatementInterface.

Namespace

Drupal\Core\Database

Code

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