Skip to content

Instantly share code, notes, and snippets.

@xphere
Created November 7, 2012 19:14
Show Gist options
  • Save xphere/4033736 to your computer and use it in GitHub Desktop.
Save xphere/4033736 to your computer and use it in GitHub Desktop.
$observableUniverse = new Location('Universo observable');
$virgoSuperCluster = new Location('Supercúmulo de Virgo', $observableUniverse);
$localGroup = new Location('Grupo Local', $virgoSuperCluster);
$milkyWay = new Location('Via Lactea', $localGroup);
$orionArm = new Location('Brazo de Orión', $milkyWay);
$solarSystem = new Location('Sistema Solar', $orionArm);
$earth = new Location('La Tierra', $solarSystem);
$europe = new Location('Europa', $earth);
$spain = new Location('España', $europe);
$catalonia = new Location('Catalunya', $spain);
$barcelonaProvince = new Location('Barcelona', $catalonia);
$barcelones = new Location('Barcelonés', $barcelonaProvince);
$barcelonaCity = new Location('Barcelona', $barcelones);
$santsDistrict = new Location('Sants', $barcelonaCity);
$myself->setLocation($santsDistrict);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment