コード例 #1
0
ファイル: AbstractServiceBack.php プロジェクト: iwatea/Swim
 public function __construct(ContainerInterface $container, ContainerAwareCommand $command, InputInterface $input, OutputInterface $output)
 {
     parent::__construct($container);
     $this->_command = $command;
     $this->_input = $input;
     $this->_output = $output;
 }
コード例 #2
0
ファイル: AbstractServiceWeb.php プロジェクト: iwatea/Swim
 /**
  * initialize
  */
 public function initialize()
 {
     parent::initialize();
     $this->_result = array();
 }