Exemplo n.º 1
0
 /**
  * Bind the properties from a source object to the properties matching to a target object
  *
  * @param mixed $source
  * @param mixed $target
  */
 public static function bindObject($source, $target)
 {
     $binderObject = new BinderObject();
     $binderObject->bindObjectInternal($source, $target);
 }