Ajout d'un template pour les commandes console permettant de netooyer le cache et d'ajouter à la volé des modules déjà testé

TODO: créer les commandes complétement
TODO: envoyer les bugs wordpress
TODO: corriger le bug de création de la base de donnée pour prestashop
This commit is contained in:
Emmanuel ROY 2019-12-06 22:56:15 +01:00
commit bcc743ea70
5 changed files with 109 additions and 2 deletions

View file

@ -0,0 +1,19 @@
<?php
class cache
{
static public function help(){
print "explaination of the command\n\n";
}
static public function clear(){
print "cache cleared ! \n\n";
}
static public function stabilize(){
print "cache stabilized ! \n\n";
}
}