| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class textQuote extends types { |
||
|
|
|||
| 11 | /** Keep all properties which has sub properties */ |
||
| 12 | private const subs = ['array' => ['entities' => 'BPT\types\messageEntity']]; |
||
| 13 | |||
| 14 | /** Text of the quoted part of a message that is replied to by the given message */ |
||
| 15 | public string $text; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Optional. Special entities that appear in the quote. Currently, only bold, italic, underline, strikethrough, |
||
| 19 | * spoiler, and custom_emoji entities are kept in quotes. |
||
| 20 | * @var messageEntity[] |
||
| 21 | */ |
||
| 22 | public null|array $entities = null; |
||
| 23 | |||
| 24 | /** Approximate quote position in the original message in UTF-16 code units as specified by the sender */ |
||
| 25 | public int $position; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Optional. True, if the quote was chosen manually by the message sender. Otherwise, the quote was added |
||
| 29 | * automatically by the server. |
||
| 30 | */ |
||
| 31 | public null|bool $is_manual = null; |
||
| 32 | |||
| 33 | |||
| 34 | public function __construct(stdClass|null $object = null) { |
||
| 40 |
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