Yves P 10 years ago
parent
commit
668bcb3896
1 changed files with 7 additions and 1 deletions
  1. 7 1
      tests/test_app/Plugin/TestPluginTwo/src/Shell/ExampleShell.php

+ 7 - 1
tests/test_app/Plugin/TestPluginTwo/src/Shell/ExampleShell.php

@@ -34,7 +34,13 @@ class ExampleShell extends Shell
         $this->out('This is the main method called from TestPluginTwo.ExampleShell');
     }
 
-    public function say_hello() {
+    /**
+     * say_hello method
+     *
+     * @return void
+     */
+    public function say_hello()
+    {
     	$this->out('Hello from the TestPluginTwo.ExampleShell');
     }
 }