Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function quantitiesProvider(): array |
||
38 | { |
||
39 | return [ |
||
40 | [Quantity::create('mb', 100), '100 mb'], |
||
41 | [Quantity::create('mb', 10000), '10 000 mb'], |
||
42 | [Quantity::create('wtf', 100500), '100 500 wtf'], |
||
43 | [Quantity::create('min', 60.14), '60.14 min'], |
||
44 | [Quantity::create('item', 0.00001), '0.00001 item'], |
||
45 | ]; |
||
46 | } |
||
47 | } |
||
48 |