Passed
Pull Request — master (#125)
by Roberto
02:33
created
src/DOMImproved.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * Load xml from path
57 57
      * @param string $filename
58
-     * @return bool
58
+     * @return false|null
59 59
      */
60 60
     public function loadXMLFile($filename)
61 61
     {
Please login to merge, or discard this patch.
src/Exception/ExceptionCollection.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
     
33 33
     /**
34 34
      * Add exceptions to the collection
35
-     * @param ExceptionCollection|\Exception $e Exception to add
36 35
      * @return ExceptionCollection;
37 36
      */
38 37
     public function add(\Exception $exception)
Please login to merge, or discard this patch.
src/Certificate/PublicKey.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     /**
64 64
      * Load class with certificate content
65 65
      * @param string $content
66
-     * @return \static
66
+     * @return PublicKey
67 67
      */
68 68
     public static function createFromContent($content)
69 69
     {
Please login to merge, or discard this patch.
src/Signer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * @param Certificate $certificate
40 40
      * @param string $content
41 41
      * @param string $tagname
42
-     * @param string $marker for URI
42
+     * @param string $mark for URI
43 43
      * @param string $algorithm
44 44
      * @param array $canonical parameters to format node for signature
45 45
      * @param string $rootname name of tag to insert signature block
Please login to merge, or discard this patch.
src/Soap/SoapBase.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     /**
280 280
      * Set security protocol
281 281
      * @param int $protocol
282
-     * @return type Description
282
+     * @return integer Description
283 283
      */
284 284
     public function protocol($protocol = self::SSL_DEFAULT)
285 285
     {
@@ -330,6 +330,7 @@  discard block
 block discarded – undo
330 330
      * @param string $request
331 331
      * @param array $namespaces
332 332
      * @param \SOAPHeader $header
333
+     * @param integer $soapver
333 334
      * @return string
334 335
      */
335 336
     protected function makeEnvelopeSoap(
Please login to merge, or discard this patch.