Created
November 7, 2012 19:14
-
-
Save xphere/4033736 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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