コード例 #1
0
 /**
  * Constructor.
  *
  * @param string $rawContent Literal message as received from ami.
  *
  * @return void
  */
 public function __construct($rawContent)
 {
     parent::__construct($rawContent);
 }
コード例 #2
0
ファイル: AsyncAGIStartEvent.php プロジェクト: marcelog/pami
 /**
  * Constructor.
  *
  * @param string $rawContent Literal message as received from ami.
  */
 public function __construct($rawContent)
 {
     parent::__construct($rawContent);
     $this->setKey('Env', urldecode($this->getEnv()));
 }
コード例 #3
0
ファイル: AsyncAGIExecEvent.php プロジェクト: marcelog/pami
 /**
  * Constructor.
  *
  * @param string $rawContent Literal message as received from ami.
  */
 public function __construct($rawContent)
 {
     parent::__construct($rawContent);
     $this->setKey('Result', urldecode($this->getResult()));
 }