| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class ExtOrdIdBoletoHandler implements HandlerInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Response Pay Boleto - Block name. |
||
| 22 | */ |
||
| 23 | public const RESPONSE_BOLETO = 'boleto'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @const string |
||
| 27 | */ |
||
| 28 | public const RESPONSE_BOLETO_ID = 'boleto_id'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Handles. |
||
| 32 | * |
||
| 33 | * @param array $handlingSubject |
||
| 34 | * @param array $response |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | public function handle(array $handlingSubject, array $response) |
||
| 57 |