Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 3 | public function fieldDefinitions() |
|
29 | { |
||
30 | return [ |
||
31 | 3 | 'type' => [static::TYPE => 'string'], |
|
32 | 3 | 'score' => [static::TYPE => 'int'], |
|
33 | 3 | 'price' => [static::TYPE => Money::class], |
|
34 | 3 | 'priceFunction' => [static::TYPE => PriceFunction::class], |
|
35 | 3 | 'isMatching' => [static::TYPE => 'bool'] |
|
36 | ]; |
||
39 |