Skip to content

Commit

Permalink
fix minor things
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelcom committed May 16, 2020
1 parent b468480 commit e227def
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Command/GeneratePackageCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected function configure()
->addOption('validation', null, InputOption::VALUE_OPTIONAL, 'Enable/Disable the generation of validation rules in every generated setter.')
->addOption('struct', null, InputOption::VALUE_OPTIONAL, 'Use this class as parent class for any StructType class. Default class is \WsdlToPhp\PackageBase\AbstractStructBase from wsdltophp/packagebase package')
->addOption('structarray', null, InputOption::VALUE_OPTIONAL, 'Use this class as parent class for any StructArrayType class. Default class is \WsdlToPhp\PackageBase\AbstractStructArrayBase from wsdltophp/packagebase package')
->addOption('structenum', null, InputOption::VALUE_OPTIONAL, 'Use this class as parent class for any StructEnumType class. Default class is \WsdlToPhp\PackageBase\AbstractStructArrayBase from wsdltophp/packagebase package')
->addOption('structenum', null, InputOption::VALUE_OPTIONAL, 'Use this class as parent class for any StructEnumType class. Default class is \WsdlToPhp\PackageBase\AbstractStructEnumBase from wsdltophp/packagebase package')
->addOption('soapclient', null, InputOption::VALUE_OPTIONAL, 'Use this class as parent class for any ServiceType class. Default class is \WsdlToPhp\PackageBase\AbstractSoapClientBase from wsdltophp/packagebase package')
->addOption('composer-name', null, InputOption::VALUE_REQUIRED, 'Composer name of the generated package')
->addOption('composer-settings', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'Composer settings of the generated package')
Expand Down
2 changes: 1 addition & 1 deletion tests/Generator/GeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ public function testGetEmptySoapClientStreamContextOptions()
'http' => [
'protocol_version' => 1.1000000000000001,
'header' => [
"Connection: close",
'Connection: close',
],
],
], $instance->getSoapClient()->getSoapClientStreamContextOptions());
Expand Down
2 changes: 1 addition & 1 deletion tests/Model/ModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function testToJsonSerialize()
'name' => 'foo_',
)"
*/
public function testInstanceFromSerializedJsonMustThrowAnAxceptionForMissingClass()
public function testInstanceFromSerializedJsonMustThrowAnExceptionForMissingClass()
{
EmptyModel::instanceFromSerializedJson(self::bingGeneratorInstance(), [
'inheritance' => '',
Expand Down

0 comments on commit e227def

Please sign in to comment.