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:
authorFabian Becker <halfdan@xnorfz.de>2014-02-03 02:56:05 +0400
committerFabian Becker <halfdan@xnorfz.de>2014-02-03 02:56:05 +0400
commit6b9ae92360cdd006cb3fc283ad2526e0ce9e1b34 (patch)
treee813ea3420b8199a8de8b2fe6d95f99b5ea69d86 /plugins/MobileMessaging
parentf9d52ca9433e33783e59b209554dfba58f30cec4 (diff)
Remove remaining @package/@subpackage/@category declarations from plugins/
fixes #4609
Diffstat (limited to 'plugins/MobileMessaging')
-rw-r--r--plugins/MobileMessaging/API.php3
-rw-r--r--plugins/MobileMessaging/APIException.php3
-rw-r--r--plugins/MobileMessaging/Controller.php3
-rw-r--r--plugins/MobileMessaging/CountryCallingCodes.php3
-rw-r--r--plugins/MobileMessaging/GSMCharset.php3
-rw-r--r--plugins/MobileMessaging/MobileMessaging.php3
-rw-r--r--plugins/MobileMessaging/ReportRenderer/ReportRendererException.php3
-rw-r--r--plugins/MobileMessaging/ReportRenderer/Sms.php3
-rw-r--r--plugins/MobileMessaging/SMSProvider.php4
-rw-r--r--plugins/MobileMessaging/SMSProvider/Clockwork.php3
-rw-r--r--plugins/MobileMessaging/SMSProvider/StubbedProvider.php5
11 files changed, 1 insertions, 35 deletions
diff --git a/plugins/MobileMessaging/API.php b/plugins/MobileMessaging/API.php
index 4543146c5c..aba3edba22 100644
--- a/plugins/MobileMessaging/API.php
+++ b/plugins/MobileMessaging/API.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
@@ -21,7 +19,6 @@ use Piwik\Plugins\MobileMessaging\SMSProvider;
* - activate phone numbers
* - check remaining credits
* - send SMS
- * @package MobileMessaging
* @method static \Piwik\Plugins\MobileMessaging\API getInstance()
*/
class API extends \Piwik\Plugin\API
diff --git a/plugins/MobileMessaging/APIException.php b/plugins/MobileMessaging/APIException.php
index 515d872bf0..129bac1f74 100644
--- a/plugins/MobileMessaging/APIException.php
+++ b/plugins/MobileMessaging/APIException.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
@@ -14,7 +12,6 @@ namespace Piwik\Plugins\MobileMessaging;
use Exception;
/**
- * @package MobileMessaging
*/
class APIException extends Exception
{
diff --git a/plugins/MobileMessaging/Controller.php b/plugins/MobileMessaging/Controller.php
index d3b849c946..640782d8f7 100644
--- a/plugins/MobileMessaging/Controller.php
+++ b/plugins/MobileMessaging/Controller.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
@@ -22,7 +20,6 @@ require_once PIWIK_INCLUDE_PATH . '/plugins/UserCountry/functions.php';
/**
*
- * @package MobileMessaging
*/
class Controller extends \Piwik\Plugin\ControllerAdmin
{
diff --git a/plugins/MobileMessaging/CountryCallingCodes.php b/plugins/MobileMessaging/CountryCallingCodes.php
index b98aa180ad..c7c8f6ec8a 100644
--- a/plugins/MobileMessaging/CountryCallingCodes.php
+++ b/plugins/MobileMessaging/CountryCallingCodes.php
@@ -5,15 +5,12 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
/**
*
- * @package MobileMessaging
*/
class CountryCallingCodes
{
diff --git a/plugins/MobileMessaging/GSMCharset.php b/plugins/MobileMessaging/GSMCharset.php
index 3a8da08290..1fa4778d5c 100644
--- a/plugins/MobileMessaging/GSMCharset.php
+++ b/plugins/MobileMessaging/GSMCharset.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
@@ -14,7 +12,6 @@ namespace Piwik\Plugins\MobileMessaging;
/**
* GSM 03.38 Charset
*
- * @package MobileMessaging
*/
class GSMCharset
{
diff --git a/plugins/MobileMessaging/MobileMessaging.php b/plugins/MobileMessaging/MobileMessaging.php
index c76ee865ac..57f3d76d3b 100644
--- a/plugins/MobileMessaging/MobileMessaging.php
+++ b/plugins/MobileMessaging/MobileMessaging.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
@@ -22,7 +20,6 @@ use Piwik\View;
/**
*
- * @package MobileMessaging
*/
class MobileMessaging extends \Piwik\Plugin
{
diff --git a/plugins/MobileMessaging/ReportRenderer/ReportRendererException.php b/plugins/MobileMessaging/ReportRenderer/ReportRendererException.php
index f68d8cfeac..822057d11c 100644
--- a/plugins/MobileMessaging/ReportRenderer/ReportRendererException.php
+++ b/plugins/MobileMessaging/ReportRenderer/ReportRendererException.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package Piwik_MobileMessaging_ReportRenderer
*/
namespace Piwik\Plugins\MobileMessaging\ReportRenderer;
@@ -14,7 +12,6 @@ use Piwik\ReportRenderer;
/**
*
- * @package Piwik_MobileMessaging_ReportRenderer
*/
class ReportRendererException extends ReportRenderer
{
diff --git a/plugins/MobileMessaging/ReportRenderer/Sms.php b/plugins/MobileMessaging/ReportRenderer/Sms.php
index 887ae15fe9..d8a2d24c43 100644
--- a/plugins/MobileMessaging/ReportRenderer/Sms.php
+++ b/plugins/MobileMessaging/ReportRenderer/Sms.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package Piwik_MobileMessaging_ReportRenderer
*/
namespace Piwik\Plugins\MobileMessaging\ReportRenderer;
@@ -18,7 +16,6 @@ use Piwik\View;
/**
*
- * @package Piwik_MobileMessaging_ReportRenderer
*/
class Sms extends ReportRenderer
{
diff --git a/plugins/MobileMessaging/SMSProvider.php b/plugins/MobileMessaging/SMSProvider.php
index 7e8e785671..15fb226315 100644
--- a/plugins/MobileMessaging/SMSProvider.php
+++ b/plugins/MobileMessaging/SMSProvider.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package MobileMessaging
*/
namespace Piwik\Plugins\MobileMessaging;
@@ -17,8 +15,6 @@ use Piwik\Piwik;
/**
* The SMSProvider abstract class is used as a base class for SMS provider implementations.
*
- * @package MobileMessaging
- * @subpackage SMSProvider
*/
abstract class SMSProvider
{
diff --git a/plugins/MobileMessaging/SMSProvider/Clockwork.php b/plugins/MobileMessaging/SMSProvider/Clockwork.php
index da0b07ba1e..16c2068e82 100644
--- a/plugins/MobileMessaging/SMSProvider/Clockwork.php
+++ b/plugins/MobileMessaging/SMSProvider/Clockwork.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package SMSProvider
*/
namespace Piwik\Plugins\MobileMessaging\SMSProvider;
@@ -19,7 +17,6 @@ use Piwik\Plugins\MobileMessaging\SMSProvider;
require_once PIWIK_INCLUDE_PATH . "/plugins/MobileMessaging/APIException.php";
/**
*
- * @package SMSProvider
*/
class Clockwork extends SMSProvider
{
diff --git a/plugins/MobileMessaging/SMSProvider/StubbedProvider.php b/plugins/MobileMessaging/SMSProvider/StubbedProvider.php
index 33a4339f8b..266c0336cc 100644
--- a/plugins/MobileMessaging/SMSProvider/StubbedProvider.php
+++ b/plugins/MobileMessaging/SMSProvider/StubbedProvider.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package SMSProvider
*/
namespace Piwik\Plugins\MobileMessaging\SMSProvider;
@@ -15,7 +13,6 @@ use Piwik\Plugins\MobileMessaging\SMSProvider;
/**
* Used for testing
*
- * @package SMSProvider
*/
class StubbedProvider extends SMSProvider
{
@@ -34,4 +31,4 @@ class StubbedProvider extends SMSProvider
{
return 1;
}
-} \ No newline at end of file
+}