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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-01-14 08:41:15 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-01-14 08:41:15 +0300
commit44e229ee1a26f5e999fec470e3b85efa3c08a7a1 (patch)
tree7f64e0abcc138859e81192ec014f25b616f42f6d /plugins/ExamplePlugin
parenta0726311e5ef66ef4b686f344e2fa1d56ced82d0 (diff)
Added phpdoc package
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/API.php11
-rw-r--r--plugins/ExamplePlugin/Controller.php7
2 files changed, 17 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/API.php b/plugins/ExamplePlugin/API.php
index 2cbd9595f8..a8d89b22ee 100644
--- a/plugins/ExamplePlugin/API.php
+++ b/plugins/ExamplePlugin/API.php
@@ -9,6 +9,12 @@
* @package Piwik_ExamplePlugin
*/
+
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class MagicObject
{
function Incredible(){ return 'Incroyable'; }
@@ -16,6 +22,11 @@ class MagicObject
public $great = 'formidable';
}
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class Piwik_ExamplePlugin_API extends Piwik_Apiable
{
static private $instance = null;
diff --git a/plugins/ExamplePlugin/Controller.php b/plugins/ExamplePlugin/Controller.php
index 6fe8719fbd..3ce071e434 100644
--- a/plugins/ExamplePlugin/Controller.php
+++ b/plugins/ExamplePlugin/Controller.php
@@ -9,7 +9,12 @@
* @package Piwik_ExamplePlugin
*/
-
+
+
+/**
+ *
+ * @package Piwik_ExamplePlugin
+ */
class Piwik_ExamplePlugin_Controller extends Piwik_Controller
{
function getDefaultAction()