Prose\FromPDOStatement::fetchNum PHP Метод

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

public fetchNum ( )
    public function fetchNum()
    {
        // what are we doing?
        $log = usingLog()->startAction("fetch 1 row from the PDO query result");
        try {
            $row = $this->args[0]->fetch(PDO::FETCH_NUM);
            // all done
            $log->endAction($row);
            return $row;
        } catch (Exception $e) {
            throw new E5xx_ActionFailed(__METHOD__, $e->getMessage());
        }
    }