コード例 #1
0
ファイル: Invoker.php プロジェクト: sergiors/worker
 public function run()
 {
     $this->command->execute();
 }
コード例 #2
0
 /**
  * executes the command
  */
 public function run()
 {
     // here is a key feature of the invoker
     // the invoker is the same whatever is the command
     $this->command->execute();
 }
コード例 #3
0
 /**
  * @return bool
  */
 public function execute()
 {
     return $this->command->execute();
 }