コード例 #1
0
ファイル: Response.php プロジェクト: dazarobbo/cola
 /**
  * Serialises $this to a JSON string
  * @return string
  */
 public function serialise()
 {
     return Json::serialise($this);
 }
コード例 #2
0
ファイル: Response.php プロジェクト: dazarobbo/cola
 /**
  * Formats the current object to a JSON-formatted string
  * IMPORTANT! This will serialise all public properties
  * @return string
  */
 public function toJsonString()
 {
     return Json::serialise($this);
 }