CODE_ERROR
CODE_ERROR = 1 : integer
Default error code
Base class for console commands.
$modelClass : string
This object's primary model class name. Should be a plural form.
CakePHP will not inflect the name.
Example: For an object named 'Comments', the modelClass would be 'Comments'.
Plugin classes should use Plugin.Comments
style names to correctly load
models from the correct plugin.
$_tableLocator : \Cake\ORM\Locator\LocatorInterface
Table locator instance
tableLocator(\Cake\ORM\Locator\LocatorInterface|null $tableLocator = null) : \Cake\ORM\Locator\LocatorInterface
Sets the table locator.
If no parameters are passed, it will return the currently used locator.
\Cake\ORM\Locator\LocatorInterface|null | $tableLocator | LocatorInterface instance. |
setTableLocator(\Cake\ORM\Locator\LocatorInterface $tableLocator) : $this
Sets the table locator.
\Cake\ORM\Locator\LocatorInterface | $tableLocator | LocatorInterface instance. |
None found |
getTableLocator() : \Cake\ORM\Locator\LocatorInterface
Gets the table locator.
None found |
log(mixed $msg, integer|string $level = \Psr\Log\LogLevel::ERROR, string|array $context = array()) : boolean
Convenience method to write a message to Log. See Log::write() for more information on writing to logs.
mixed | $msg | Log message. |
integer|string | $level | Error level. |
string|array | $context | Additional log data relevant to this message. |
Success of log write.
None found |
loadModel(string|null $modelClass = null, string|null $modelType = null) : \Cake\Datasource\RepositoryInterface
Loads and constructs repository objects required by this object
Typically used to load ORM Table objects as required. Can also be used to load other types of repository objects your application uses.
If a repository provider does not return an object a MissingModelException will be thrown.
string|null | $modelClass | Name of model class to load. Defaults to $this->modelClass |
string|null | $modelType | The type of repository to load. Defaults to the modelType() value. |
If the model class cannot be found.
When using a type that has not been registered.
If no model type has been defined
The model instance created.
None found |
modelFactory(string $type, callable $factory) : void
Override a existing callable to generate repositories of a given type.
string | $type | The name of the repository type the factory function is for. |
callable | $factory | The factory function used to create instances. |
None found |
None found |
setModelType(string $modelType) : $this
Set the model type to be used by this class
string | $modelType | The model type |
None found |
modelType(string|null $modelType = null) : string|$this
Set or get the model type to be used by this class
string|null | $modelType | The model type or null to retrieve the current |
None found |
__construct()
Constructor
By default CakePHP will construct command objects when building the CommandCollection for your application.
None found |
setName(string $name) : $this
Set the name this command uses in the collection.
Generally invoked by the CommandCollection when the command is added. Required to have at least one space in the name so that the root command can be calculated.
string | $name | The name the command uses in the collection. |
None found |
None found |
getOptionParser() : \Cake\Console\ConsoleOptionParser
Get the option parser.
You can override buildOptionParser() to define your options & arguments.
When the parser is invalid
None found |
initialize() : void
Hook method invoked by CakePHP when a command is about to be executed.
Override this method and implement expensive/important setup steps that should not run on every command run. This method will be called before the options and arguments are validated and processed.
None found |
run(array $argv, \Cake\Console\ConsoleIo $io) : integer|null
Run the command.
array | $argv | Arguments from the CLI environment. |
\Cake\Console\ConsoleIo | $io | The console io |
Exit code or null for success.
None found |
execute(\Cake\Console\Arguments $args, \Cake\Console\ConsoleIo $io) : null|integer
Implement this method with your command's logic.
\Cake\Console\Arguments | $args | The command arguments. |
\Cake\Console\ConsoleIo | $io | The console io |
The exit code or null for success
None found |
abort(integer $code = self::CODE_ERROR) : void
Halt the the current process with a StopException.
integer | $code | The exit code to use. |
None found |
_setModelClass(string $name) : void
Set the modelClass and modelKey properties based on conventions.
If the properties are already set they will not be overwritten
string | $name | Class name. |
None found |
buildOptionParser(\Cake\Console\ConsoleOptionParser $parser) : \Cake\Console\ConsoleOptionParser
Hook method for defining this command's option parser.
\Cake\Console\ConsoleOptionParser | $parser | The parser to be defined |
The built parser.
None found |
displayHelp(\Cake\Console\ConsoleOptionParser $parser, \Cake\Console\Arguments $args, \Cake\Console\ConsoleIo $io) : void
Output help content
\Cake\Console\ConsoleOptionParser | $parser | The option parser. |
\Cake\Console\Arguments | $args | The command arguments. |
\Cake\Console\ConsoleIo | $io | The console io |
None found |
setOutputLevel(\Cake\Console\Arguments $args, \Cake\Console\ConsoleIo $io) : void
Set the output level based on the Arguments.
\Cake\Console\Arguments | $args | The command arguments. |
\Cake\Console\ConsoleIo | $io | The console io |
None found |