| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class sharedUser extends types { |
||
|
|
|||
| 12 | /** Keep all properties which has sub properties */ |
||
| 13 | private const subs = ['array' => ['photo' => 'BPT\types\photoSize']]; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Identifier of the shared user. This number may have more than 32 significant bits and some programming |
||
| 17 | * languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so |
||
| 18 | * 64-bit integers or double-precision float types are safe for storing these identifiers. The bot may not have |
||
| 19 | * access to the user and could be unable to use this identifier, unless the user is already known to the bot by |
||
| 20 | * some other means. |
||
| 21 | */ |
||
| 22 | public int $user_id; |
||
| 23 | |||
| 24 | /** Optional. First name of the user, if the name was requested by the bot */ |
||
| 25 | public null|string $first_name = null; |
||
| 26 | |||
| 27 | /** Optional. Last name of the user, if the name was requested by the bot */ |
||
| 28 | public null|string $last_name = null; |
||
| 29 | |||
| 30 | /** Optional. Username of the user, if the username was requested by the bot */ |
||
| 31 | public null|string $username = null; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Optional. Available sizes of the chat photo, if the photo was requested by the bot |
||
| 35 | * @var photoSize[] |
||
| 36 | */ |
||
| 37 | public null|array $photo = null; |
||
| 38 | |||
| 39 | |||
| 40 | public function __construct(stdClass|null $object = null) { |
||
| 46 |
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