getRow() public method

Returns the an associative array keyed by columns for the given row.
public getRow ( integer $row ) : array
$row integer
return array
Esempio n. 1
0
 /**
  * Returns the an associative array keyed by columns for the given row.
  *
  * @param int $row
  * @return array
  */
 public function getRow($row)
 {
     $this->loadData();
     return parent::getRow($row);
 }