/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/migrations/src
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/migrations/src/Plugin.php (2437B)
discoverPlugin($this->getName());
return $collection->addMany($commands);
}
$commands = [];
foreach ($this->migrationCommandsList as $class) {
$name = $class::defaultName();
// If the short name has been used, use the full name.
// This allows app commands to have name preference.
// and app commands to overwrite migration commands.
if (!$collection->has($name)) {
$commands[$name] = $class;
}
// full name
$commands['migrations.' . $name] = $class;
}
return $collection->addMany($commands);
}
}