Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | private function createNotification() |
||
10 | { |
||
11 | $this->mockHttpSession($this->body_notification_preference); |
||
12 | $notification = $this->moip->notifications()->addEvent('ORDER.*') |
||
13 | ->addEvent('PAYMENT.AUTHORIZED') |
||
14 | ->setTarget('http://requestb.in/1dhjesw1') |
||
15 | ->create(); |
||
16 | |||
17 | return $notification; |
||
18 | } |
||
19 | |||
38 |