| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function load($wsdl) |
||
| 40 | { |
||
| 41 | if (!isset($this->metadataCache[$wsdl])) { |
||
| 42 | $this->wsdlReader->readFile($wsdl); |
||
| 43 | try { |
||
| 44 | $this->metadataCache[$wsdl] = $this->metadataGenerator->generate($this->soapReader->getServices()); |
||
| 45 | } catch (\Exception $e) { |
||
| 46 | throw new MetadataException(sprintf("Can not generate metadata information for %s", $wsdl), 0, $e); |
||
| 47 | } |
||
| 48 | } |
||
| 49 | |||
| 50 | return $this->metadataCache[$wsdl]; |
||
| 51 | } |
||
| 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