initial commit
[namibia] / module / Location / src / Location / Fixture / Country.php
1 <?php
2 namespace Location\Fixture;
3
4
5
6 class Country extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\\Location\\Entity\\Country', array(
12                                 'Country.ZA' => array('name' => 'South Africa'),
13                                 'Country.AU' => array('name' => 'Australia')
14                 ));
15         }
16
17 }