text changes to registration mail content
[namibia] / module / Auction / src / Auction / Fixture / Increment.php
1 <?php
2 namespace Auction\Fixture;
3
4
5
6 class Increment extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\Auction\Entity\Increment', array(
12                                 array(
13                                                 'from'   => 0,
14                                                 'to'     => 50000,
15                                                 'amount' => 500
16                                 ),
17                                 array(
18                                                 'from'   => 50000,
19                                                 'to'     => 150000,
20                                                 'amount' => 1000
21                                 ),
22                                 array(
23                                                 'from'   => 150000,
24                                                 'to'     => 300000,
25                                                 'amount' => 1500
26                                 ),
27                                 array(
28                                                 'from'   => 300000,
29                                                 'to'     => 16000000,
30                                                 'amount' => 2000
31                                 )
32                 ));
33         }
34
35 }