Skip to content

Commit 65ff8d8

Browse files
committed
Merge pull request #23 from php-http/analysis-q29YRX
Applied fixes from StyleCI
2 parents e840edf + f1fbc9c commit 65ff8d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CachePlugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ protected function isCacheable(ResponseInterface $response)
9696
if (!$this->respectCacheHeaders) {
9797
return true;
9898
}
99-
if ($this->getCacheControlDirective($response, 'no-store') || $this->getCacheControlDirective($response, 'private')) {
99+
if ($this->getCacheControlDirective($response, 'no-store') || $this->getCacheControlDirective($response, 'private')) {
100100
return false;
101101
}
102-
102+
103103
return true;
104104
}
105105

0 commit comments

Comments
 (0)