Skip to content
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #12 from methylbro/list-should-not-be-required
Browse files Browse the repository at this point in the history
fix #10 list should not be required
  • Loading branch information
methylbro authored Dec 7, 2016
2 parents 4ba65dd + cd3a97c commit d4434da
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion config/individual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ login: ~
password: ~
namespace: "http://tempuri.org/"
wsdl: ~
list:
options:
classmap:
ArrayOfListInfo: "Mediapart\\Selligent\\ArrayOfListInfo"
Expand Down
3 changes: 0 additions & 3 deletions src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ public function getConfigTreeBuilder()
->isRequired()
->cannotBeEmpty()
->end()
->scalarNode('list')
->isRequired()
->end()
->arrayNode('options')
->children()
->arrayNode('classmap')
Expand Down
1 change: 0 additions & 1 deletion tests/BroadcastTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ protected function setUp()
'login' => getenv('soap_login'),
'password' => getenv('soap_password'),
'wsdl' => getenv('soap_wsdl_broadcast'),
'list' => getenv('selligent_list'),
],
Connection::API_BROADCAST
);
Expand Down
1 change: 0 additions & 1 deletion tests/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public function testConfiguration()
'login' => 'login',
'password' => 'password',
'wsdl' => 'http//wsdl?individual',
'list' => 'LISTNAME',
];
$processor = new Processor();
$configuration = new Configuration();
Expand Down
1 change: 0 additions & 1 deletion tests/IndividualTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ protected function setUp()
'login' => getenv('soap_login'),
'password' => getenv('soap_password'),
'wsdl' => getenv('soap_wsdl_individual'),
'list' => getenv('selligent_list'),
],
Connection::API_INDIVIDUAL
);
Expand Down

0 comments on commit d4434da

Please sign in to comment.