| Total Complexity | 1 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class animation extends types { |
||
|
|
|||
| 11 | /** Keep all of properties which has sub properties */ |
||
| 12 | private const subs = ['thumb' => 'BPT\types\photoSize']; |
||
| 13 | |||
| 14 | /** Identifier for this file, which can be used to download or reuse the file */ |
||
| 15 | public string $file_id; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be |
||
| 19 | * used to download or reuse the file. |
||
| 20 | */ |
||
| 21 | public string $file_unique_id; |
||
| 22 | |||
| 23 | /** Video width as defined by sender */ |
||
| 24 | public int $width; |
||
| 25 | |||
| 26 | /** Video height as defined by sender */ |
||
| 27 | public int $height; |
||
| 28 | |||
| 29 | /** Duration of the video in seconds as defined by sender */ |
||
| 30 | public int $duration; |
||
| 31 | |||
| 32 | /** Optional. Animation thumbnail as defined by sender */ |
||
| 33 | public photoSize $thumb; |
||
| 34 | |||
| 35 | /** Optional. Original animation filename as defined by sender */ |
||
| 36 | public string $file_name; |
||
| 37 | |||
| 38 | /** Optional. MIME type of the file as defined by sender */ |
||
| 39 | public string $mime_type; |
||
| 40 | |||
| 41 | /** Optional. File size in bytes */ |
||
| 42 | public int $file_size; |
||
| 43 | |||
| 44 | |||
| 45 | public function __construct(stdClass $update) { |
||
| 49 |
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