Ejemplo n.º 1
0
Archivo: Plugin.php Proyecto: Jobu/core
 /**
  * Handle command events.
  *
  * @param CommandEvent $event The event being raised.
  *
  * @return void
  *
  * @throws \RuntimeException When the artifact directory could not be created.
  */
 public function handleCommand(CommandEvent $event)
 {
     switch ($event->getCommandName()) {
         case 'update':
             ConfigManipulator::run();
             break;
         default:
     }
 }