initial commit
[namibia] / module / Stock / src / Stock / Fixture / Category.php
1 <?php
2 namespace Stock\Fixture;
3
4
5
6 class Category extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\Stock\Entity\Category', array(
12                                 'Category.Agricultural' => array('name' => 'Agricultural'),
13                                 'Category.Auto'         => array('name' => 'Auto or Passenger'),
14                                 'Category.Motorcycle'   => array('name' => 'Motorcycle'),
15                                 'Category.Light'        => array('name' => 'Light Commercial'),
16                                 'Category.Medium'       => array('name' => 'Medium Commercial'),
17                                 'Category.Heavy'        => array('name' => 'Heavy Commercial'),
18                                 'Category.Bus'          => array('name' => 'Bus')
19                 ));
20         }
21
22 }