| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function load($wsdl) |
||
| 21 | { |
||
| 22 | if (!isset($this->metadataCache[$wsdl])) { |
||
| 23 | if (!isset($this->metadataMap[$wsdl])) { |
||
| 24 | throw new \Exception(sprintf("Can not find metadata information for %s", $wsdl)); |
||
| 25 | } |
||
| 26 | $this->metadataCache[$wsdl] = require $this->metadataMap[$wsdl]; |
||
| 27 | } |
||
| 28 | |||
| 29 | return $this->metadataCache[$wsdl]; |
||
| 30 | } |
||
| 31 | } |
||
| 32 |