diff --git a/tests/test_app/Plugin/TestPluginTwo/src/Shell/ExampleShell.php b/tests/test_app/Plugin/TestPluginTwo/src/Shell/ExampleShell.php index 76e31940b68..058495dca86 100644 --- a/tests/test_app/Plugin/TestPluginTwo/src/Shell/ExampleShell.php +++ b/tests/test_app/Plugin/TestPluginTwo/src/Shell/ExampleShell.php @@ -34,7 +34,13 @@ public function main() $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'); } }