simplesamlphp /
xml-soap
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace SimpleSAML\SOAP12\XML; |
||
| 6 | |||
| 7 | use SimpleSAML\SOAP12\Type\MustUnderstandValue; |
||
|
0 ignored issues
–
show
|
|||
| 8 | |||
| 9 | /** |
||
| 10 | * @package simplesamlphp/xml-wss-core |
||
| 11 | * |
||
| 12 | * @phpstan-ignore trait.unused |
||
| 13 | */ |
||
| 14 | trait MustUnderstandTrait |
||
| 15 | { |
||
| 16 | /** @var \SimpleSAML\SOAP12\Type\MustUnderstandValue|null */ |
||
| 17 | protected ?MustUnderstandValue $mustUnderstand; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * @return \SimpleSAML\SOAP12\Type\MustUnderstandValue|null |
||
| 22 | */ |
||
| 23 | public function getMustUnderstand(): ?MustUnderstandValue |
||
| 24 | { |
||
| 25 | return $this->mustUnderstand; |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * @param \SimpleSAML\SOAP12\Type\MustUnderstandValue $mustUnderstand|null |
||
| 31 | */ |
||
| 32 | private function setMustUnderstand(?MustUnderstandValue $mustUnderstand): void |
||
| 33 | { |
||
| 34 | $this->mustUnderstand = $mustUnderstand; |
||
| 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