getRow() public method

Returns the an associative array keyed by columns for the given row.
public getRow ( integer $row ) : array
$row integer
return array
 /**
  * Returns the an associative array keyed by columns for the given row.
  *
  * @param int $row
  * @return array
  */
 public function getRow($row)
 {
     $row = $this->table->getRow($row);
     return array_map(array($this, 'getReplacedValue'), $row);
 }