Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class FraudHandler implements HandlerInterface |
||
13 | { |
||
14 | const FRAUD_MSG_LIST = 'FRAUD_MSG_LIST'; |
||
15 | |||
16 | /** |
||
17 | * Handles fraud messages |
||
18 | * |
||
19 | * @param array $handlingSubject |
||
20 | * @param array $response |
||
21 | * @return void |
||
22 | */ |
||
23 | public function handle(array $handlingSubject, array $response) |
||
49 |