/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Command
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Command/Command.php (2099B)
modelFactory('Table', function ($alias) {
return $this->getTableLocator()->get($alias);
});
if ($this->defaultTable !== null) {
$this->modelClass = $this->defaultTable;
}
if (isset($this->modelClass)) {
$this->loadModel();
}
}
/**
* Implement this method with your command's logic.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null|void The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io)
{
}
}
// phpcs:disable
class_alias(
'Cake\Command\Command',
'Cake\Console\Command'
);
// phpcs:enable