| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function register(Container $app) |
||
| 14 | { |
||
| 15 | $app->extend( |
||
| 16 | 'eccube.purchase.flow.cart.item_processors', |
||
| 17 | function (ArrayCollection $processors, Container $app) { |
||
| 18 | $processors[] = new EmptyProcessor(); |
||
| 19 | $processors[] = new ValidatableEmptyProcessor(); |
||
| 20 | return $processors; |
||
| 21 | } |
||
| 22 | ); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |