예제 #1
0
파일: Args.php 프로젝트: apoq/frame
 public function __construct(\Frame\Core\Context $context)
 {
     foreach ($GLOBALS['argv'] as $key => $value) {
         if ($key) {
             $this->args['arg' . $key] = $value;
         }
     }
     parent::_construct($context);
 }