Skip to content

Commit

Permalink
Add doc blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Scherer committed May 20, 2015
1 parent 726fc42 commit fad7c83
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Console/Shell.php
Expand Up @@ -667,6 +667,12 @@ protected function _stop($status = 0)
exit($status);
}

/**
* Returns an array that can be used to describe the internal state of this
* object.
*
* @return array
*/
public function __debugInfo()
{
return [
Expand Down
6 changes: 6 additions & 0 deletions src/Controller/Component.php
Expand Up @@ -181,6 +181,12 @@ public function implementedEvents()
return $events;
}

/**
* Returns an array that can be used to describe the internal state of this
* object.
*
* @return array
*/
public function __debugInfo()
{
return [
Expand Down
6 changes: 6 additions & 0 deletions src/View/Helper.php
Expand Up @@ -220,6 +220,12 @@ public function implementedEvents()
return $events;
}

/**
* Returns an array that can be used to describe the internal state of this
* object.
*
* @return array
*/
public function __debugInfo()
{
return [
Expand Down

0 comments on commit fad7c83

Please sign in to comment.