| Total Complexity | 4 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class AuthorizationRequest implements BuilderInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public const GETNET_ORDER_ID = 'getnet_order_id'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var ConfigInterface |
||
| 28 | */ |
||
| 29 | protected $config; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param ConfigInterface $config |
||
| 33 | */ |
||
| 34 | public function __construct( |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Build. |
||
| 42 | * |
||
| 43 | * @param array $buildSubject |
||
| 44 | */ |
||
| 45 | public function build(array $buildSubject) |
||
| 64 |