Passed
Push — master ( e1430d...752221 )
by Kevin
02:57
created
src/Strategy/PrivateCacheStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
                 return new CacheEntry(
94 94
                     $request,
95 95
                     $response,
96
-                    new \DateTime('+'.(int) $cacheControl->get($key).'seconds')
96
+                    new \DateTime('+'.(int)$cacheControl->get($key).'seconds')
97 97
                 );
98 98
             }
99 99
         }
Please login to merge, or discard this patch.
src/CacheEntry.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
         if ($staleIfErrorTo === null && $values->has('stale-if-error')) {
78 78
             $this->staleIfErrorTo = (new \DateTime(
79
-                '@'.($this->staleAt->getTimestamp() + (int) $values->get('stale-if-error'))
79
+                '@'.($this->staleAt->getTimestamp() + (int)$values->get('stale-if-error'))
80 80
             ));
81 81
         } else {
82 82
             $this->staleIfErrorTo = $staleIfErrorTo;
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
         if ($staleWhileRevalidateTo === null && $values->has('stale-while-revalidate')) {
86 86
             $this->staleWhileRevalidateTo = new \DateTime(
87
-                '@'.($this->staleAt->getTimestamp() + (int) $values->get('stale-while-revalidate'))
87
+                '@'.($this->staleAt->getTimestamp() + (int)$values->get('stale-while-revalidate'))
88 88
             );
89 89
         } else {
90 90
             $this->staleWhileRevalidateTo = $staleWhileRevalidateTo;
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
         }
224 224
 
225 225
         // Don't return 0, it's reserved for infinite TTL
226
-        return $ttl !== 0 ? (int) $ttl : -1;
226
+        return $ttl !== 0 ? (int)$ttl : -1;
227 227
     }
228 228
 
229 229
     /**
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     {
239 239
         // Stream/Resource can't be serialized... So we copy the content
240 240
         if ($this->response !== null) {
241
-            $this->responseBody = (string) $this->response->getBody();
241
+            $this->responseBody = (string)$this->response->getBody();
242 242
             $this->response->getBody()->rewind();
243 243
         }
244 244
 
Please login to merge, or discard this patch.
src/CacheMiddleware.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
     /**
106 106
      * @param callable $handler
107 107
      *
108
-     * @return callable
108
+     * @return \Closure
109 109
      */
110 110
     public function __invoke(callable $handler)
111 111
     {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -111,12 +111,12 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function __invoke(callable $handler)
113 113
     {
114
-        return function (RequestInterface $request, array $options) use (&$handler) {
114
+        return function(RequestInterface $request, array $options) use (&$handler) {
115 115
             if (!isset($this->httpMethods[strtoupper($request->getMethod())])) {
116 116
                 // No caching for this method allowed
117 117
 
118 118
                 return $handler($request, $options)->then(
119
-                    function (ResponseInterface $response) use ($request) {
119
+                    function(ResponseInterface $response) use ($request) {
120 120
                         // Invalidate cache after a call of non-safe method on the same URI
121 121
                         $response = $this->invalidateCache($request, $response);
122 122
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
             $promise = $handler($request, $options);
189 189
 
190 190
             return $promise->then(
191
-                function (ResponseInterface $response) use ($request, $cacheEntry) {
191
+                function(ResponseInterface $response) use ($request, $cacheEntry) {
192 192
                     // Check if error and looking for a staled content
193 193
                     if ($response->getStatusCode() >= 500) {
194 194
                         $responseStale = static::getStaleResponse($cacheEntry);
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 
226 226
                     return static::addToCache($this->cacheStorage, $request, $response, $update);
227 227
                 },
228
-                function ($reason) use ($cacheEntry) {
228
+                function($reason) use ($cacheEntry) {
229 229
                     if ($reason instanceof TransferException) {
230 230
                         $response = static::getStaleResponse($cacheEntry);
231 231
                         if ($response instanceof ResponseInterface) {
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
             $request = $request->withHeader(self::HEADER_RE_VALIDATION, '1');
287 287
             $this->waitingRevalidate[] = $this->client
288 288
                 ->sendAsync($request)
289
-                ->then(function (ResponseInterface $response) use ($request, &$cacheStorage, $cacheEntry) {
289
+                ->then(function(ResponseInterface $response) use ($request, &$cacheStorage, $cacheEntry) {
290 290
                     $update = false;
291 291
 
292 292
                     if ($response->getStatusCode() == 304) {
Please login to merge, or discard this patch.