1
|
|
|
<?php |
2
|
|
|
namespace Clients\RpcLiteral; |
3
|
|
|
|
4
|
|
|
use Clients\InitCommand; |
5
|
|
|
use SoapClient; |
6
|
|
|
use stdClass; |
7
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
8
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
9
|
|
|
|
10
|
|
View Code Duplication |
class ObjectCommand extends InitCommand |
|
|
|
|
11
|
|
|
{ |
12
|
|
|
protected function configure() |
13
|
|
|
{ |
14
|
|
|
$this->setName('rpc_literal:object'); |
15
|
|
|
} |
16
|
|
|
|
17
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
18
|
|
|
{ |
19
|
|
|
$this->output = $output; |
20
|
|
|
|
21
|
|
|
$this->soapClient = new SoapClient('http://localhost/wsdl-creator/examples/rpc_literal/ObjectExampleSoapServer.php?wsdl', array( |
22
|
|
|
'uri' => "http://foo.bar/", 'location' => 'http://localhost/wsdl-creator/examples/rpc_literal/ObjectExampleSoapServer.php', |
23
|
|
|
'trace' => true, 'cache_wsdl' => WSDL_CACHE_NONE |
24
|
|
|
)); |
25
|
|
|
|
26
|
|
|
$this->serviceInfo('Client Object - rpc/literal'); |
27
|
|
|
|
28
|
|
|
$this->renderMethodsTable(); |
29
|
|
|
|
30
|
|
|
$user = new stdClass(); |
31
|
|
|
$user->name = 'john'; |
32
|
|
|
$user->age = 32; |
33
|
|
|
$response = $this->soapClient->userInfo($user); |
34
|
|
|
$this->method('userInfo', array($user), $response); |
35
|
|
|
|
36
|
|
|
$response = $this->soapClient->getAgentWithId('peter', 999444); |
37
|
|
|
$this->method('getAgentWithId', array('peter', 999444), $response); |
38
|
|
|
|
39
|
|
|
$namesInfo = new stdClass(); |
40
|
|
|
$namesInfo->names = array('billy', 'clark'); |
41
|
|
|
$namesInfo->id = 333; |
42
|
|
|
$response = $this->soapClient->namesForId($namesInfo); |
43
|
|
|
$this->method('namesForId', array($namesInfo), $response); |
44
|
|
|
|
45
|
|
|
$response = $this->soapClient->getCompanies(); |
46
|
|
|
$this->method('getCompanies', array(), $response); |
47
|
|
|
|
48
|
|
|
$response = $this->soapClient->getListOfAgentsWithId(); |
49
|
|
|
$this->method('getListOfAgentsWithId', array(), $response); |
50
|
|
|
|
51
|
|
|
$payments[0] = new stdClass(); |
|
|
|
|
52
|
|
|
$payments[0]->payment = array(1.21, 3.21, 100.60); |
53
|
|
|
$payments[0]->user = 'john'; |
54
|
|
|
$payments[1] = new stdClass(); |
55
|
|
|
$payments[1]->payment = array(120.60); |
56
|
|
|
$payments[1]->user = 'peter'; |
57
|
|
|
$response = $this->soapClient->setPayment($payments); |
58
|
|
|
$this->method('setPayment', array($payments), $response); |
59
|
|
|
|
60
|
|
|
$response = $this->soapClient->getAgentsWithPayment(); |
61
|
|
|
$this->method('getAgentsWithPayment', array(), $response); |
62
|
|
|
|
63
|
|
|
$response = $this->soapClient->getEmployeesWithAgents(); |
64
|
|
|
$this->method('getEmployeesWithAgents', array(), $response); |
65
|
|
|
} |
66
|
|
|
} |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.