text changes to registration mail content
[namibia] / module / Stock / src / Stock / Fixture / FuelType.php
1 <?php
2 namespace Stock\Fixture;
3
4
5
6 class FuelType extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\Stock\Entity\FuelType', array(
12                                 array('name' => 'Unknown', 'archived' => true),
13                                 array('name' => 'Petrol'),
14                                 array('name' => 'Diesel')
15                 ));
16         }
17
18 }