Completed
Push — master ( 62ae51...6fb038 )
by adam
03:04
created
src/Guzzle/MiddlewareFactory.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 *
40 40
 	 * @param bool $delay default to true, can be false to speed up tests
41 41
 	 *
42
-	 * @return callable
42
+	 * @return \Closure
43 43
 	 */
44 44
 	public function retry( $delay = true ) {
45 45
 		if ( $delay ) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 * Returns a method that takes the number of retries and returns the number of miliseconds
54 54
 	 * to wait
55 55
 	 *
56
-	 * @return callable
56
+	 * @return \Closure
57 57
 	 */
58 58
 	private function getRetryDelay() {
59 59
 		return function ( $numberOfRetries, Response $response = null ) {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	}
79 79
 
80 80
 	/**
81
-	 * @return callable
81
+	 * @return \Closure
82 82
 	 */
83 83
 	private function newRetryDecider() {
84 84
 		return function (
Please login to merge, or discard this patch.