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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-03-23 06:17:00 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-03-23 06:17:00 +0300
commit97c1cc7f27aea43b3785ab6335e48bf41ae043b7 (patch)
treedf04f81aec4afe02a7e635c33842a0d4c5249dda /plugins/ExampleCommand
parent2aed127e94ae5525c944f8455db469774e713195 (diff)
Making the formatting of template files consistent with Piwik's styleguide and PSR-2
Diffstat (limited to 'plugins/ExampleCommand')
-rw-r--r--plugins/ExampleCommand/Commands/HelloWorld.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/ExampleCommand/Commands/HelloWorld.php b/plugins/ExampleCommand/Commands/HelloWorld.php
index d8dc781e3f..ef76f3e186 100644
--- a/plugins/ExampleCommand/Commands/HelloWorld.php
+++ b/plugins/ExampleCommand/Commands/HelloWorld.php
@@ -4,7 +4,6 @@
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
*/
namespace Piwik\Plugins\ExampleCommand\Commands;
@@ -23,7 +22,6 @@ use Symfony\Component\Console\Output\OutputInterface;
*/
class HelloWorld extends ConsoleCommand
{
-
/**
* This methods allows you to configure your command. Here you can define the name and description of your command
* as well as all options and arguments you expect when executing it.
@@ -48,7 +46,7 @@ class HelloWorld extends ConsoleCommand
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
- $name = $input->getOption('name');
+ $name = $input->getOption('name');
$message = sprintf('<info>HelloWorld: %s</info>', $name);