コード例 #1
0
ファイル: Request.php プロジェクト: igaponov/jsonrpc
 /**
  * @inheritdoc
  */
 protected function getSerializableAttributes()
 {
     $attributes = parent::getSerializableAttributes();
     $attributes['method'] = $this->method;
     if ($this->params !== null) {
         $attributes['params'] = $this->params;
     }
     return $attributes;
 }
コード例 #2
0
ファイル: Response.php プロジェクト: igaponov/jsonrpc
 /**
  * @inheritdoc
  */
 protected function getSerializableAttributes()
 {
     $attributes = parent::getSerializableAttributes();
     if ($this->error !== null) {
         $attributes['error'] = $this->error;
     } else {
         $attributes['result'] = $this->result;
     }
     return $attributes;
 }