protected Statement::__construct(Connection $dbh)
File
- core/lib/Drupal/Core/Database/Statement.php, line 34
Class
- Statement
- Default implementation of StatementInterface.
Namespace
Drupal\Core\Database
Code
1 2 3 4 | protected function __construct(Connection $dbh ) { $this ->dbh = $dbh ; $this ->setFetchMode(\PDO::FETCH_OBJ); } |
Please login to continue.