Completed
Push — ws-security ( 4109dc...299d84 )
by Asmir
133:52 queued 103:58
created
src/Client.php 2 patches
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.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -111,6 +111,9 @@
 block discarded – undo
111 111
         return $this->resultCreator->prepareResult($response, $soapOperation['output']);
112 112
     }
113 113
 
114
+    /**
115
+     * @return string
116
+     */
114 117
     public function findFaultClass(ResponseInterface $response)
115 118
     {
116 119
         if (strpos($response->getHeaderLine('Content-Type'), 'application/soap+xml') === 0) {
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/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.
src/Arguments/Headers/Handler/HeaderHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -80,6 +80,9 @@
 block discarded – undo
80 80
         }
81 81
     }
82 82
 
83
+    /**
84
+     * @param string $namespace
85
+     */
83 86
     private function setAttributeOnNode(\DOMElement $node, $name, $value, $namespace)
84 87
     {
85 88
         if (!($prefix = $node->lookupPrefix($namespace)) && !($prefix = $node->ownerDocument->lookupPrefix($namespace))) {
Please login to merge, or discard this patch.
src/WssWsSecurity/Serializer/WsSecurityFilterRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@
 block discarded – undo
337 337
 
338 338
     /**
339 339
      * @param \DOMElement $security
340
-     * @param $dt
340
+     * @param \DateTime $dt
341 341
      * @param Security $securityData
342 342
      */
343 343
     private function handleUsername(\DOMElement $security, $dt, Security $securityData)
Please login to merge, or discard this patch.