예제 #1
0
파일: Invoker.php 프로젝트: m6w6/seekat
 /**
  * Create a new generator invoker
  * @param Client $client
  */
 function __construct(Client $client)
 {
     $this->client = $client;
     parent::__construct(function ($resolve, $reject) {
         return $this->cancel($resolve, $reject);
     });
 }