| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 46 | public function serializationProvider() { |
||
| 47 | return [ |
||
| 48 | [ |
||
| 49 | 'quantity[42,+41,+43]', |
||
| 50 | $query = new QuantityQuery( new PropertyId( 'P42' ), new DecimalValue( '+41' ), new DecimalValue( '+43' ) ) |
||
| 51 | ], |
||
| 52 | [ |
||
| 53 | 'quantity[42,+42]', |
||
| 54 | $query = new QuantityQuery( new PropertyId( 'P42' ), new DecimalValue( '+42' ) ) |
||
| 55 | ], |
||
| 56 | ]; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |