Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'modules/API/APIable.php')
-rwxr-xr-xmodules/API/APIable.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/modules/API/APIable.php b/modules/API/APIable.php
index feaf139b08..1edefd771e 100755
--- a/modules/API/APIable.php
+++ b/modules/API/APIable.php
@@ -1,20 +1,20 @@
-<?php
-/**
- * Piwik - Open source web analytics
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
- * @version $Id$
- *
- * @package Piwik_API
- */
-
-
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
+ * @version $Id$
+ *
+ * @package Piwik_API
+ */
+
+
require_once "Archive.php";
/**
- * This class is the parent class of all the modules that can be called using the API Proxy.
- * For example a plugin "Provider" can publish its API by creating a file plugins/Provider/API.php
- * that is extending this Piwik_Apiable class.
+ * This class is the parent class of all the modules that can be called using the API Proxy.
+ * For example a plugin "Provider" can publish its API by creating a file plugins/Provider/API.php
+ * that is extending this Piwik_Apiable class.
* All the Piwik_Apiable classes are read and loaded by the Piwik_API_Proxy class.
* The public methods of this class are published in the API and are then callable using the API module.
* The parameters of the function are read directly from the GET request (they must have the same name).
@@ -26,7 +26,7 @@ require_once "Archive.php";
*
* See the documentation on http://dev.piwik.org > API
*
- * @package Piwik_API
+ * @package Piwik_API
* @see Piwik_API_Proxy
*/