| Total Complexity | 1 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class chatPhoto extends types { |
||
|
|
|||
| 11 | /** Keep all of properties which has sub properties */ |
||
| 12 | private const subs = []; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * File identifier of small (160x160) chat photo. This file_id can be used only for photo download and only for |
||
| 16 | * as long as the photo is not changed. |
||
| 17 | */ |
||
| 18 | public string $small_file_id; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Unique file identifier of small (160x160) chat photo, which is supposed to be the same over time and for |
||
| 22 | * different bots. Can't be used to download or reuse the file. |
||
| 23 | */ |
||
| 24 | public string $small_file_unique_id; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * File identifier of big (640x640) chat photo. This file_id can be used only for photo download and only for as |
||
| 28 | * long as the photo is not changed. |
||
| 29 | */ |
||
| 30 | public string $big_file_id; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Unique file identifier of big (640x640) chat photo, which is supposed to be the same over time and for |
||
| 34 | * different bots. Can't be used to download or reuse the file. |
||
| 35 | */ |
||
| 36 | public string $big_file_unique_id; |
||
| 37 | |||
| 38 | |||
| 39 | public function __construct(stdClass $update) { |
||
| 43 |
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