Namespaces
ngatngay
database
designpattern
http
session
Classes
database
row
statement
Overview
Namespace
Class
Tree
1:
<?php
2:
3:
namespace
ngatngay\database;
4:
5:
class
statement
extends
\PDOStatement
6:
{
7:
protected
function
__construct()
8:
{
9:
$this
->setFetchMode(\PDO::FETCH_CLASS, row::class);
10:
}
11:
}
12: