Fix API doc errors in Console/

This commit is contained in:
mark_story 2014-05-27 23:16:05 -04:00
parent f287bc76c0
commit bb58bbe642
3 changed files with 6 additions and 6 deletions

View file

@ -254,7 +254,7 @@ class Shell extends Object {
/** /**
* Lazy loads models using the loadModel() method if declared in $uses * Lazy loads models using the loadModel() method if declared in $uses
* *
* @param string $name * @param string $name The name of the model to look for.
* @return void * @return void
*/ */
public function __isset($name) { public function __isset($name) {
@ -446,7 +446,7 @@ class Shell extends Object {
/** /**
* Display the help in the correct format * Display the help in the correct format
* *
* @param string $command * @param string $command The command to get help for.
* @return void * @return void
*/ */
protected function _displayHelp($command) { protected function _displayHelp($command) {
@ -477,7 +477,7 @@ class Shell extends Object {
/** /**
* Overload get for lazy building of tasks * Overload get for lazy building of tasks
* *
* @param string $name * @param string $name The property name to access.
* @return Shell Object of Task * @return Shell Object of Task
*/ */
public function __get($name) { public function __get($name) {
@ -819,7 +819,7 @@ class Shell extends Object {
/** /**
* creates the singular name for use in views. * creates the singular name for use in views.
* *
* @param string $name * @param string $name The plural underscored value.
* @return string $name * @return string $name
*/ */
protected function _singularName($name) { protected function _singularName($name) {

View file

@ -317,7 +317,7 @@ class ShellDispatcher {
/** /**
* Parses out the paths from from the argv * Parses out the paths from from the argv
* *
* @param array $args * @param array $args The argv to parse.
* @return void * @return void
*/ */
protected function _parsePaths($args) { protected function _parsePaths($args) {

View file

@ -43,7 +43,7 @@ class TaskCollection extends ObjectCollection {
/** /**
* Constructor * Constructor
* *
* @param Shell $Shell * @param Shell $Shell The shell this task collection is attached to.
*/ */
public function __construct(Shell $Shell) { public function __construct(Shell $Shell) {
$this->_Shell = $Shell; $this->_Shell = $Shell;