예제 #1
0
파일: Plugin.php 프로젝트: 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:
     }
 }