SAND-framework/console/command/Sand/Symfony.php
Emmanuel ROY aed63829d0 update :
- fix url root directory return
 - adding arguments to command bin.php
2021-04-22 10:44:29 +02:00

25 lines
555 B
PHP

<?php
namespace MVC\Command\Sand;
/**
* Class Symfony
* Commande Système du Framework permettant de gèrer les modules Symfony
* @package MVC\Command\Sand
*/
class Symfony
{
/**
* Méthode permettant d'afficher l'aide de la commande
*/
public static function help()
{
print "explaination of the command\n\n";
}
public static function stabilize()
{
print "stabilize symfony module...\n\n";
//$symfony_module = shell_exec('sudo cp '.CONSOLE_PATH.'/skel/symfony '.VENDOR_PATH.' -Rf');
}
}