cuongpd / gapi-google-analytics-php-interface

Automatically exported from code.google.com/p/gapi-google-analytics-php-interface
0 stars 0 forks source link

getDimesions function name should be getDimensions #97

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Line Number: 768

  /**
   * Get an associative array of the dimesions
   * and the matching values for the current result
   *
   * @return Array
   */
  public function getDimesions()
  {
    return $this->dimensions;
  }

======================================
What I suggest is to keep this function as there are many developers already 
using it. Better to create another wrapper function with the proper name.
  /**
   * 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 sna...@gmail.com on 16 Jul 2013 at 8:55