Pop\Db\Sql::__construct PHP Метод

__construct() публичный Метод

Instantiate the SQL object.
public __construct ( Db $db, mixed $table = null, string $alias = null ) : Sql
$db Db
$table mixed
$alias string
Результат Sql
    public function __construct(Db $db, $table = null, $alias = null)
    {
        $this->setDb($db);
        $this->setTable($table);
        $this->setAlias($alias);
    }