Skip to content

Instantly share code, notes, and snippets.

@samsonasik
Created July 24, 2014 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsonasik/6124a8aca370e27ffc38 to your computer and use it in GitHub Desktop.
Save samsonasik/6124a8aca370e27ffc38 to your computer and use it in GitHub Desktop.
getMunicipio
$array = array();
foreach($entities as $entity) {
$array[] = array(
'id' => $entity->getId(),
'municipio' => $entity->getMunicipio(),
);
}
return $array;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment