a481099a6b5c1c52977377643f3e1e0cece9c71d
[namibia] / module / Location / src / Location / Fixture / Town.php
1 <?php
2 namespace Location\Fixture;
3
4
5
6 class Town extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\\Location\\Entity\\Town', array(
12                                 'Town.Pretoria' => array(
13                                                 'region' => self::getReference('Region.Gauteng'),
14                                                 'name'   => 'Pretoria'
15                                 ),
16                 ));
17         }
18
19 }