Esempio n. 1
0
 /**
  * Populate an entity from request or response body
  *
  * @param string $body
  * @param Entity $entity
  * @return Entity
  */
 public function entityFromBody($body, $entity)
 {
     $json = $this->decodeJson($body);
     return $entity->populate($json);
 }