| 1 | <?php |
||
| 14 | class RawSoapContext implements SoapContextInterface |
||
| 15 | { |
||
| 16 | use SoapManager { |
||
| 17 | setWSDL as soapWSDL; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Parameters of SoapExtension. |
||
| 22 | * |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | private $parameters = []; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function setSoapParameters(array $parameters) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param string $name |
||
| 39 | * The name of parameter from behat.yml. |
||
| 40 | * |
||
| 41 | * @return mixed |
||
| 42 | */ |
||
| 43 | protected function getSoapParameter($name) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | * |
||
| 51 | * @see SoapManager::setOptions() |
||
| 52 | * @see SoapManager::setNamespaces() |
||
| 53 | */ |
||
| 54 | protected function setWSDL($wsdl) |
||
| 68 | } |
||
| 69 |