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