Esempio n. 1
0
 public function load($resource, $type = null)
 {
     $data = $this->loadFile($resource);
     return Json::parse($data, true);
 }
Esempio n. 2
0
File: Model.php Progetto: fucoso/orm
 /**
  * Returns the model's JSON representation.
  *
  * @return string
  */
 public function toJSON()
 {
     return Json::dump($this);
 }