Total Complexity | 0 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class PriceCreationDto |
||
25 | { |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | public $id; |
||
30 | |||
31 | /** |
||
32 | * @var TypeInterface |
||
33 | */ |
||
34 | public $type; |
||
35 | |||
36 | /** |
||
37 | * @var TargetInterface |
||
38 | */ |
||
39 | public $target; |
||
40 | |||
41 | /** |
||
42 | * @var PlanInterface |
||
43 | */ |
||
44 | public $plan; |
||
45 | |||
46 | /** |
||
47 | * @var QuantityInterface |
||
48 | */ |
||
49 | public $prepaid; |
||
50 | |||
51 | /** |
||
52 | * @var Money |
||
53 | */ |
||
54 | public $price; |
||
55 | |||
56 | /** |
||
57 | * @var UnitInterface |
||
58 | */ |
||
59 | public $unit; |
||
60 | |||
61 | /** |
||
62 | * @var Currency |
||
63 | */ |
||
64 | public $currency; |
||
65 | |||
66 | /** |
||
67 | * @var string[] |
||
68 | */ |
||
69 | public $sums; |
||
70 | |||
71 | /** @var float */ |
||
72 | public $rate; |
||
73 | |||
74 | /** @var ProgressivePriceThreshold[] */ |
||
75 | public array $thresholds = []; |
||
76 | } |
||
77 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths