initial commit
[namibia] / module / Stock / src / Stock / Fixture / FullServiceHistory.php
1 <?php
2 namespace Stock\Fixture;
3
4
5
6 class FullServiceHistory extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\Stock\Entity\FullServiceHistory', array(
12                                 array('name' => 'Yes'),
13                                 array('name' => 'Partial'),
14                                 array('name' => 'No'),
15                                 array('name' => 'Agents')
16                 ));
17         }
18
19 }