|
|
@@ -193,7 +193,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Override main() to handle action
|
|
|
*
|
|
|
- * @param string $command
|
|
|
+ * @param string $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
public function main($command = null) {
|
|
|
@@ -218,7 +218,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Determine the method to process the current command
|
|
|
*
|
|
|
- * @param string $command
|
|
|
+ * @param string $command The command to run.
|
|
|
* @return string or false
|
|
|
*/
|
|
|
protected function _method($command) {
|
|
|
@@ -256,7 +256,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Bind an association
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _bind($command) {
|
|
|
@@ -283,7 +283,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Unbind an association
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _unbind($command) {
|
|
|
@@ -320,7 +320,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Perform a find
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _find($command) {
|
|
|
@@ -382,7 +382,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Save a record
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _save($command) {
|
|
|
@@ -406,7 +406,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Show the columns for a model
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _columns($command) {
|
|
|
@@ -455,7 +455,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Parse an array URL and show the equivalent URL as a string
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _routeToString($command) {
|
|
|
@@ -471,7 +471,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Parse a string URL and show as an array
|
|
|
*
|
|
|
- * @param mixed $command
|
|
|
+ * @param mixed $command The command to run.
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _routeToArray($command) {
|
|
|
@@ -483,7 +483,7 @@ class ConsoleShell extends AppShell {
|
|
|
/**
|
|
|
* Tells if the specified model is included in the list of available models
|
|
|
*
|
|
|
- * @param string $modelToCheck
|
|
|
+ * @param string $modelToCheck The model to check.
|
|
|
* @return boolean true if is an available model, false otherwise
|
|
|
*/
|
|
|
protected function _isValidModel($modelToCheck) {
|