예제 #1
0
 public function load($resource, $type = null)
 {
     $data = $this->loadFile($resource);
     return Json::parse($data, true);
 }
예제 #2
0
파일: Model.php 프로젝트: Macavity/phormium
 /**
  * Returns the model's JSON representation.
  *
  * @return string
  */
 public function toJSON()
 {
     return Json::dump($this);
 }