I am trying to call the $gapi->getDimensions() method, but there seems to be a
typo on line 774.
/**
* Get an associative array of the dimesions
* and the matching values for the current result
*
* @return Array
*/
public function getDimesions()
{
return $this->dimensions;
}
Shouldn't it be...
/**
* Get an associative array of the dimensions
* and the matching values for the current result
*
* @return Array
*/
public function getDimensions()
{
return $this->dimensions;
}
Original issue reported on code.google.com by tim%mill...@gtempaccount.com on 4 Aug 2010 at 10:58
Original issue reported on code.google.com by
tim%mill...@gtempaccount.com
on 4 Aug 2010 at 10:58