Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class invoice extends types { |
||
|
|||
11 | /** Keep all of properties which has sub properties */ |
||
12 | private const subs = []; |
||
13 | |||
14 | /** Product name */ |
||
15 | public string $title; |
||
16 | |||
17 | /** Product description */ |
||
18 | public string $description; |
||
19 | |||
20 | /** Unique bot deep-linking parameter that can be used to generate this invoice */ |
||
21 | public string $start_parameter; |
||
22 | |||
23 | /** Three-letter ISO 4217 currency code */ |
||
24 | public string $currency; |
||
25 | |||
26 | /** |
||
27 | * Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ |
||
28 | * 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the |
||
29 | * decimal point for each currency (2 for the majority of currencies). |
||
30 | */ |
||
31 | public int $total_amount; |
||
32 | |||
33 | |||
34 | public function __construct(stdClass $update) { |
||
38 |
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