Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | protected function hasOtherMotive(StdClass $data) |
||
32 | { |
||
33 | $others = array_merge( |
||
34 | Itau::OCCURRENCES_DEBITS, |
||
35 | Itau::OCCURRENCES_INSTRUCTION_CANCELED, |
||
36 | Itau::OCCURRENCES_PAYER_CLAIMS, |
||
37 | Itau::OCCURRENCES_PROTEST_ORDER_HALTED |
||
38 | ); |
||
39 | |||
40 | return in_array($data->occurrenceCode, $others); |
||
41 | } |
||
42 | |||
64 |