SAND-framework/console/command/Symfony.php
Emmanuel ROY 397d0c2972 update console bin
update composer.json for autoload of Command
update in order to make it usefull
2020-12-08 09:28:12 +01:00

17 lines
335 B
PHP

<?php
namespace MVC\Command;
class Symfony
{
static public function help(){
print "explaination of the command\n\n";
}
static public function stabilize(){
print "stabilize symfony module...\n\n";
$symfony_module = shell_exec('sudo cp '.CONSOLE_PATH.'/skel/symfony '.VENDOR_PATH.' -Rf');
}
}