Completed
Push — master ( fea716...246f0f )
by adam
04:02
created
src/Guzzle/MiddlewareFactory.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	 *
37 37
 	 * @param bool $delay default to true, can be false to speed up tests
38 38
 	 *
39
-	 * @return callable
39
+	 * @return \Closure
40 40
 	 */
41 41
 	public function retry( $delay = true ) {
42 42
 		if ( $delay ) {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 * Returns a method that takes the number of retries and returns the number of miliseconds
51 51
 	 * to wait
52 52
 	 *
53
-	 * @return callable
53
+	 * @return \Closure
54 54
 	 */
55 55
 	private function getRetryDelay() {
56 56
 		return function( $numberOfRetries, Response $response = null ) {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	}
76 76
 
77 77
 	/**
78
-	 * @return callable
78
+	 * @return \Closure
79 79
 	 */
80 80
 	private function newRetryDecider() {
81 81
 		return function (
Please login to merge, or discard this patch.