| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 18 | class keyboardButtonRequestUser extends types { |
||
|
|
|||
| 19 | /** Keep all properties which has sub properties */ |
||
| 20 | private const subs = []; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Signed 32-bit identifier of the request that will be received back in the UsersShared object. Must be unique |
||
| 24 | * within the message |
||
| 25 | */ |
||
| 26 | public int $request_id; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Optional. Pass True to request bots, pass False to request regular users. If not specified, no additional |
||
| 30 | * restrictions are applied. |
||
| 31 | */ |
||
| 32 | public bool $user_is_bot; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Optional. Pass True to request premium users, pass False to request non-premium users. If not specified, no |
||
| 36 | * additional restrictions are applied. |
||
| 37 | */ |
||
| 38 | public bool $user_is_premium; |
||
| 39 | |||
| 40 | /** Optional. The maximum number of users to be selected; 1-10. Defaults to 1. */ |
||
| 41 | public int $max_quantity; |
||
| 42 | |||
| 43 | |||
| 44 | public function __construct(stdClass|null $object = null) { |
||
| 50 |
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