/var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/me-tools/src
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/mirko-pagliai/me-tools/src/Plugin.php (1977B)
addOptionalPlugin('Assets');
}
/**
* Add console commands for the plugin
* @param \Cake\Console\CommandCollection $commands The command collection to update
* @return \Cake\Console\CommandCollection
*/
public function console(CommandCollection $commands): CommandCollection
{
return $commands->add('me_tools.create_directories', CreateDirectoriesCommand::class)
->add('me_tools.create_robots', CreateRobotsCommand::class)
->add('me_tools.create_vendors_links', CreateVendorsLinksCommand::class)
->add('me_tools.install', RunAllCommand::class)
->add('me_tools.set_permissions', SetPermissionsCommand::class);
}
}