Completed
Pull Request — master (#376)
by David
04:50
created
src/Exception/InvalidUrlException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param string $server  Invalid server
37
-     * @param array  $allowed Allowed URL parts
37
+     * @param string[]  $allowed Allowed URL parts
38 38
      *
39 39
      * @return self
40 40
      */
Please login to merge, or discard this patch.
src/Exception/ProxyResponseException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 class ProxyResponseException extends \RuntimeException implements HttpCacheException
21 21
 {
22 22
     /**
23
-     * @param ResponseInterface $response HTTP response
24 23
      *
25 24
      * @return ProxyResponseException
26 25
      */
Please login to merge, or discard this patch.
src/Test/Proxy/AbstractProxy.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,6 +74,10 @@  discard block
 block discarded – undo
74 74
         }
75 75
     }
76 76
 
77
+    /**
78
+     * @param integer $timeout
79
+     * @param \Closure $callback
80
+     */
77 81
     protected function wait($timeout, $callback)
78 82
     {
79 83
         for ($i = 0; $i < $timeout; ++$i) {
@@ -91,7 +95,7 @@  discard block
 block discarded – undo
91 95
      * Run a shell command.
92 96
      *
93 97
      * @param string $command
94
-     * @param array  $arguments
98
+     * @param string[]  $arguments
95 99
      *
96 100
      * @throws \RuntimeException If command execution fails
97 101
      */
Please login to merge, or discard this patch.