Completed
Push — master ( 9a8fc2...1b152a )
by Jeroen van
13s queued 11s
created
src/VCR/Util/SoapClient.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Sets the SOAP library hook which is used to intercept SOAP requests.
93 93
      *
94
-     * @param soapHook $hook SOAP library hook to use when intercepting SOAP requests
94
+     * @param SoapHook $hook SOAP library hook to use when intercepting SOAP requests
95 95
      */
96 96
     public function setLibraryHook(SoapHook $hook): void
97 97
     {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      *
123 123
      * If no library hook is set, a new one is created.
124 124
      *
125
-     * @return soapHook SOAP library hook
125
+     * @return SoapHook SOAP library hook
126 126
      */
127 127
     protected function getLibraryHook(): SoapHook
128 128
     {
Please login to merge, or discard this patch.
src/VCR/Util/StreamProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -368,7 +368,7 @@
 block discarded – undo
368 368
      *
369 369
      * @see http://www.php.net/manual/en/streamwrapper.dir-readdir.php
370 370
      *
371
-     * @return mixed should return string representing the next filename, or FALSE if there is no next file
371
+     * @return false|string should return string representing the next filename, or FALSE if there is no next file
372 372
      */
373 373
     public function dir_readdir()
374 374
     {
Please login to merge, or discard this patch.
src/VCR/VCRFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
      * Returns an instance for specified class name and parameters.
97 97
      *
98 98
      * @param string  $className class name to get a instance for
99
-     * @param mixed[] $params    constructor arguments for this class
99
+     * @param string[] $params    constructor arguments for this class
100 100
      *
101 101
      * @return mixed an instance for specified class name and parameters
102 102
      */
Please login to merge, or discard this patch.