Browse Source

Add missing doc blocks.

Mark Story 8 years ago
parent
commit
1aefff66ae
2 changed files with 14 additions and 1 deletions
  1. 9 1
      src/Console/CommandRunner.php
  2. 5 0
      tests/TestCase/Console/CommandRunnerTest.php

+ 9 - 1
src/Console/CommandRunner.php

@@ -26,7 +26,15 @@ use RuntimeException;
  */
 class CommandRunner
 {
-    protected $app, $root;
+    /**
+     * @var \Cake\Http\BaseApplication
+     */
+    protected $app;
+
+    /**
+     * @var string
+     */
+    protected $root;
 
     /**
      * Constructor

+ 5 - 0
tests/TestCase/Console/CommandRunnerTest.php

@@ -29,6 +29,11 @@ use TestApp\Shell\SampleShell;
  */
 class CommandRunnerTest extends TestCase
 {
+    /**
+     * setup
+     *
+     * @return void
+     */
     public function setUp()
     {
         parent::setUp();