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