Exemplo n.º 1
0
 /**
  *
  * @param Object $model - the model to encode
  * @param ProjectModel $projectModel
  * @return array
  */
 public static function encodeModel($model, $projectModel)
 {
     /* Note: I had to change the name of this static method to something else besides 'encode' because
      * PHP complained about the signature not being the same as the parent class JsonEncoder
      * cjh 2013-08
      */
     $e = new ActivityListDtoEncoder($projectModel);
     return $e->_encode($model);
 }