Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function run() |
||
14 | { |
||
15 | Airtime::create([ 'key' => 'incoming-sms', 'credits' => 0.005 ]); |
||
16 | Airtime::create([ 'key' => 'outgoing-sms', 'credits' => 0.02 ]); |
||
17 | Airtime::create([ 'key' => 'lbs', 'credits' => 0.05 ]); |
||
18 | Airtime::create([ 'key' => 'load-10', 'credits' => 0.27 ]); |
||
19 | Airtime::create([ 'key' => 'load-25', 'credits' => 0.61 ]); |
||
20 | } |
||
21 | } |
||
22 |