Skip to content

Commit

Permalink
Add missing doc blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jun 21, 2017
1 parent c871aa3 commit 1aefff6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Console/CommandRunner.php
Expand Up @@ -26,7 +26,15 @@
*/
class CommandRunner
{
protected $app, $root;
/**
* @var \Cake\Http\BaseApplication
*/
protected $app;

/**
* @var string
*/
protected $root;

/**
* Constructor
Expand Down
5 changes: 5 additions & 0 deletions tests/TestCase/Console/CommandRunnerTest.php
Expand Up @@ -29,6 +29,11 @@
*/
class CommandRunnerTest extends TestCase
{
/**
* setup
*
* @return void
*/
public function setUp()
{
parent::setUp();
Expand Down

0 comments on commit 1aefff6

Please sign in to comment.