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