File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?php
22
33namespace MVC \Command ;
4-
4+ /**
5+ * Class Action
6+ * Commande Système du Framework permettant de gérer les actions
7+ * @package MVC\Command
8+ */
59class Action
610{
11+ /**
12+ * Méthode permettant d'afficher l'aide de la commande
13+ */
714 public static function help ()
815 {
916 print "Cette commande permet de manipuler les actions du framework \n\n" ;
Original file line number Diff line number Diff line change 11<?php
22
33namespace MVC \Command ;
4-
4+ /**
5+ * Class Cache
6+ * Commande Système du Framework permettant de gérer le cache
7+ * @package MVC\Command
8+ */
59class Cache
610{
11+ /**
12+ * Méthode permettant d'afficher l'aide de la commande
13+ */
714 public static function help ()
815 {
916 print "Cette commande permet de vider le cache du framework \n\n" ;
Original file line number Diff line number Diff line change 11<?php
22
33namespace MVC \Command ;
4-
4+ /**
5+ * Class Conduit
6+ * Commande Système du Framework permettant de gérer les conduits
7+ * @package MVC\Command
8+ */
59class Conduit
610{
11+ /**
12+ * Méthode permettant d'afficher l'aide de la commande
13+ */
714 public static function help ()
815 {
916 print "Cette commande permet de manipuler les conduits du framework \n\n" ;
Original file line number Diff line number Diff line change 11<?php
22
33namespace MVC \Command ;
4-
4+ /**
5+ * Class Module
6+ * Commande Système du Framework permettant de gérer les modules
7+ * @package MVC\Command
8+ */
59class Module
610{
11+ /**
12+ * Méthode permettant d'afficher l'aide de la commande
13+ */
714 public static function help ()
815 {
916 print "Cette commande permet de manipuler les modules du framework \n\n" ;
Original file line number Diff line number Diff line change 11<?php
22
33namespace MVC \Command ;
4-
4+ /**
5+ * Class Page
6+ * Commande Système du Framework permettant de gérer les pages
7+ * @package MVC\Command
8+ */
59class Page
610{
11+ /**
12+ * Méthode permettant d'afficher l'aide de la commande
13+ */
714 public static function help ()
815 {
916 print "Cette commande permet de manipuler les pages du framework \n\n" ;
Original file line number Diff line number Diff line change 11<?php
22
33namespace MVC \Command ;
4-
4+ /**
5+ * Class Symfony
6+ * Commande Système du Framework permettant de gèrer les modules Symfony
7+ * @package MVC\Command
8+ */
59class Symfony
610{
11+ /**
12+ * Méthode permettant d'afficher l'aide de la commande
13+ */
714 public static function help ()
815 {
916 print "explaination of the command \n\n" ;
@@ -12,6 +19,6 @@ public static function help()
1219 public static function stabilize ()
1320 {
1421 print "stabilize symfony module... \n\n" ;
15- $ symfony_module = shell_exec ('sudo cp ' .CONSOLE_PATH .'/skel/symfony ' .VENDOR_PATH .' -Rf ' );
22+ // $symfony_module = shell_exec('sudo cp '.CONSOLE_PATH.'/skel/symfony '.VENDOR_PATH.' -Rf');
1623 }
1724}
You can’t perform that action at this time.
0 commit comments