예제 #1
0
파일: Console.php 프로젝트: sigma-z/dive
 public function populateCommandParams()
 {
     if (!$this->command) {
         throw new ConsoleException("Missing command to populate command params!");
     }
     $params = $this->parseArguments();
     $this->command->setParams($params);
 }