SAND-framework/console/command/sand/Symfony.php

25 lines
555 B
PHP
Raw Normal View History

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