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