| Total Complexity | 4 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class DevMetadataLoader implements MetadataLoaderInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | private $metadataCache = []; |
||
| 19 | /** |
||
| 20 | * @var MetadataGenerator |
||
| 21 | */ |
||
| 22 | private $metadataGenerator; |
||
| 23 | /** |
||
| 24 | * @var DefinitionsReader |
||
| 25 | */ |
||
| 26 | private $wsdlReader; |
||
| 27 | /** |
||
| 28 | * @var SoapReader |
||
| 29 | */ |
||
| 30 | private $soapReader; |
||
| 31 | |||
| 32 | public function __construct(MetadataGenerator $metadataGenerator, SoapReader $soapReader, DefinitionsReader $wsdlReader) |
||
| 33 | { |
||
| 34 | $this->metadataGenerator = $metadataGenerator; |
||
| 35 | $this->wsdlReader = $wsdlReader; |
||
| 36 | $this->soapReader = $soapReader; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function load($wsdl) |
||
| 51 | } |
||
| 52 | } |
||
| 53 |
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