Completed
Push — soap-12 ( 3b76ba...74e1b0 )
by Asmir
120:12 queued 93:36
created
src/Client.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,13 +6,11 @@
 block discarded – undo
6 6
 use GoetasWebservices\SoapServices\SoapClient\Exception\ClientException;
7 7
 use GoetasWebservices\SoapServices\SoapClient\Exception\FaultException;
8 8
 use GoetasWebservices\SoapServices\SoapClient\Exception\ServerException;
9
-use GoetasWebservices\SoapServices\SoapClient\Exception\SoapException;
10 9
 use GoetasWebservices\SoapServices\SoapClient\Message\MessageFactoryInterface;
11 10
 use GoetasWebservices\SoapServices\SoapClient\Result\ResultCreator;
12 11
 use GoetasWebservices\SoapServices\SoapClient\Result\ResultCreatorInterface;
13 12
 use GoetasWebservices\SoapServices\SoapCommon as SoapCommon;
14 13
 use GoetasWebservices\SoapServices\SoapCommon\SoapEnvelope\Parts\Fault;
15
-use GoetasWebservices\SoapServices\SoapEnvelope;
16 14
 use GuzzleHttp\ClientInterface;
17 15
 use GuzzleHttp\Exception\BadResponseException;
18 16
 use JMS\Serializer\Serializer;
Please login to merge, or discard this patch.
src/ClientFactory.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -73,6 +73,11 @@
 block discarded – undo
73 73
         $this->generator = $generator;
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $wsdl
78
+     * @param string $portName
79
+     * @param string $serviceName
80
+     */
76 81
     private function getSoapService($wsdl, $portName = null, $serviceName = null)
77 82
     {
78 83
         $generator = $this->generator ?: new PhpMetadataGenerator();
Please login to merge, or discard this patch.
src/Arguments/Headers/Handler/HeaderHandler.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -68,6 +68,11 @@
 block discarded – undo
68 68
         }
69 69
     }
70 70
 
71
+    /**
72
+     * @param string $name
73
+     * @param string $value
74
+     * @param string $namespace
75
+     */
71 76
     private function setAttributeOnNode(\DOMElement $node, $name, $value, $namespace)
72 77
     {
73 78
         if (!($prefix = $node->lookupPrefix($namespace)) && !($prefix = $node->ownerDocument->lookupPrefix($namespace))) {
Please login to merge, or discard this patch.
src/StubGeneration/ClientStubGenerator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use GoetasWebservices\SoapServices\SoapClient\StubGeneration\Tag\ParamTag;
7 7
 use GoetasWebservices\XML\WSDLReader\Wsdl\Message\Part;
8 8
 use GoetasWebservices\XML\WSDLReader\Wsdl\PortType;
9
-use GoetasWebservices\XML\WSDLReader\Wsdl\Service;
10 9
 use GoetasWebservices\Xsd\XsdToPhp\Naming\NamingStrategy;
11 10
 use GoetasWebservices\Xsd\XsdToPhp\Php\PhpConverter;
12 11
 use Zend\Code\Generator\ClassGenerator;
Please login to merge, or discard this patch.
src/Metadata/Generator/MetadataGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -115,6 +115,9 @@
 block discarded – undo
115 115
         return $operation;
116 116
     }
117 117
 
118
+    /**
119
+     * @param string $direction
120
+     */
118 121
     protected function generateInOut(Operation $operation, OperationMessage $operationMessage, Param $param, $direction, Service $service)
119 122
     {
120 123
         $xmlNs = $operation->getOperation()->getDefinition()->getTargetNamespace();
Please login to merge, or discard this patch.