1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace BPT\types; |
4
|
|
|
|
5
|
|
|
use stdClass; |
6
|
|
|
|
7
|
|
|
/** |
8
|
|
|
* This object describes the type of reaction |
9
|
|
|
*/ |
10
|
|
|
class reactionType extends types { |
|
|
|
|
11
|
|
|
/** Keep all properties which has sub properties */ |
12
|
|
|
private const subs = []; |
13
|
|
|
|
14
|
|
|
/** Can be one of "emoji" or "custom_emoji" */ |
15
|
|
|
public string $type; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* `emoji` only. Currently, it can be one of "๐", "๐", "โค", "๐ฅ", "๐ฅฐ", "๐", "๐", "๐ค", |
19
|
|
|
* "๐คฏ", "๐ฑ", "๐คฌ", "๐ข", "๐", "๐คฉ", "๐คฎ", "๐ฉ", "๐", "๐", "๐", "๐คก", "๐ฅฑ", |
20
|
|
|
* "๐ฅด", "๐", "๐ณ", "โคโ๐ฅ", "๐", "๐ญ", "๐ฏ", "๐คฃ", "โก", "๐", "๐", "๐", "๐คจ", |
21
|
|
|
* "๐", "๐", "๐พ", "๐", "๐", "๐", "๐ด", "๐ญ", "๐ค", "๐ป", "๐จโ๐ป", "๐", "๐", |
22
|
|
|
* "๐", "๐", "๐จ", "๐ค", "โ", "๐ค", "๐ซก", "๐
", "๐", "โ", "๐
", "๐คช", "๐ฟ", "๐", |
23
|
|
|
* "๐", "๐", "๐ฆ", "๐", "๐", "๐", "๐", "๐พ", "๐คทโโ", "๐คท", "๐คทโโ", "๐ก" |
24
|
|
|
*/ |
25
|
|
|
public string $emoji; |
26
|
|
|
|
27
|
|
|
/** `custom_emoji` only. Custom emoji identifier */ |
28
|
|
|
public string $custom_emoji; |
29
|
|
|
|
30
|
|
|
|
31
|
|
|
public function __construct(stdClass|null $object = null) { |
32
|
|
|
if ($object != null) { |
33
|
|
|
parent::__construct($object, self::subs); |
34
|
|
|
} |
35
|
|
|
} |
36
|
|
|
} |
37
|
|
|
|
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