Browse Source

Add test class I forgot earlier.

Mark Story 8 years ago
parent
commit
5e3c347722
1 changed files with 12 additions and 0 deletions
  1. 12 0
      tests/test_app/TestApp/Command/Helper/CommandHelper.php

+ 12 - 0
tests/test_app/TestApp/Command/Helper/CommandHelper.php

@@ -0,0 +1,12 @@
+<?php
+namespace TestApp\Command\Helper;
+
+use Cake\Console\Helper;
+
+class CommandHelper extends Helper
+{
+    public function output($args)
+    {
+        $this->_io->out('I am helping ' . implode(' ', $args));
+    }
+}