| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class pollAnswer extends types { |
||
|
|
|||
| 11 | /** Keep all properties which has sub properties */ |
||
| 12 | private const subs = ['voter_chat' => 'BPT\types\chat', 'user' => 'BPT\types\user']; |
||
| 13 | |||
| 14 | /** Unique poll identifier */ |
||
| 15 | public string $poll_id; |
||
| 16 | |||
| 17 | /** Optional. The chat that changed the answer to the poll, if the voter is anonymous */ |
||
| 18 | public chat $voter_chat; |
||
| 19 | |||
| 20 | /** Optional. The user that changed the answer to the poll, if the voter isn't anonymous */ |
||
| 21 | public user $user; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * 0-based identifiers of chosen answer options. May be empty if the vote was retracted. |
||
| 25 | * @var int[] |
||
| 26 | */ |
||
| 27 | public array $option_ids; |
||
| 28 | |||
| 29 | |||
| 30 | public function __construct(stdClass|null $object = null) { |
||
| 36 |
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