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/ExampleCommand
parentf9d52ca9433e33783e59b209554dfba58f30cec4 (diff)
Remove remaining @package/@subpackage/@category declarations from plugins/
fixes #4609
Diffstat (limited to 'plugins/ExampleCommand')
-rw-r--r--plugins/ExampleCommand/Commands/HelloWorld.php5
-rw-r--r--plugins/ExampleCommand/ExampleCommand.php3
2 files changed, 1 insertions, 7 deletions
diff --git a/plugins/ExampleCommand/Commands/HelloWorld.php b/plugins/ExampleCommand/Commands/HelloWorld.php
index 92f543609f..a87bf8f5ef 100644
--- a/plugins/ExampleCommand/Commands/HelloWorld.php
+++ b/plugins/ExampleCommand/Commands/HelloWorld.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 CoreConsole
*/
namespace Piwik\Plugins\ExampleCommand\Commands;
@@ -18,7 +16,6 @@ use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
/**
- * @package ExampleCommand
*/
class HelloWorld extends ConsoleCommand
{
@@ -40,4 +37,4 @@ class HelloWorld extends ConsoleCommand
$output->writeln($message);
}
-} \ No newline at end of file
+}
diff --git a/plugins/ExampleCommand/ExampleCommand.php b/plugins/ExampleCommand/ExampleCommand.php
index d818366edb..3921ee06da 100644
--- a/plugins/ExampleCommand/ExampleCommand.php
+++ b/plugins/ExampleCommand/ExampleCommand.php
@@ -5,13 +5,10 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package ExampleCommand
*/
namespace Piwik\Plugins\ExampleCommand;
/**
- * @package ExampleCommand
*/
class ExampleCommand extends \Piwik\Plugin
{