getOptions() public method

Retrieves the options for the PHP SOAP service
public getOptions ( ) : array
return array
Beispiel #1
0
 /**
  * @covers \DragonBe\Vies\Vies::getOptions
  */
 public function testDefaultOptionsAreEmpty()
 {
     $vies = new Vies();
     $options = $vies->getOptions();
     $this->assertInternalType('array', $options);
     $this->assertEmpty($options);
 }