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