| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | function let(TranslatorInterface $translator) |
||
| 20 | { |
||
| 21 | $translator->transChoice('sylius.payum_action.payment.description', 2, [ |
||
| 22 | '%items%' => 2, |
||
| 23 | '%total%' => 100.00, |
||
| 24 | ])->willReturn('Payment contains 2 items for a total of 100'); |
||
| 25 | |||
| 26 | $this->beConstructedWith($translator); |
||
| 27 | } |
||
| 28 | |||
| 43 |