Skip to content

Commit b5c298c

Browse files
committed
Fixed indent
1 parent 33c64b8 commit b5c298c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/CachePlugin.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ final class CachePlugin implements Plugin
4747
* @param array $config {
4848
*
4949
* @var bool $respect_cache_headers Whether to look at the cache directives or ignore them. This option is
50-
* deprecated, use `respect_response_cache_directives` instead
51-
* @var int $default_ttl (seconds) If we do not respect cache headers or can't calculate a good ttl, use this
52-
* value
53-
* @var string $hash_algo The hashing algorithm to use when generating cache keys
54-
* @var int $cache_lifetime (seconds) To support serving a previous stale response when the server answers 304
55-
* we have to store the cache for a longer time than the server originally says it is valid for.
56-
* We store a cache item for $cache_lifetime + max age of the response.
57-
* @var array $methods list of request methods which can be cached
58-
* @var array $respect_response_cache_directives list of cache directives this plugin will respect while caching responses.
59-
* }.
50+
* deprecated, use `respect_response_cache_directives` instead
51+
* @var int $default_ttl (seconds) If we do not respect cache headers or can't calculate a good ttl, use this
52+
* value
53+
* @var string $hash_algo The hashing algorithm to use when generating cache keys
54+
* @var int $cache_lifetime (seconds) To support serving a previous stale response when the server answers 304
55+
* we have to store the cache for a longer time than the server originally says it is valid for.
56+
* We store a cache item for $cache_lifetime + max age of the response.
57+
* @var array $methods list of request methods which can be cached
58+
* @var array $respect_response_cache_directives list of cache directives this plugin will respect while caching responses.
59+
* }.
6060
*/
6161
public function __construct(CacheItemPoolInterface $pool, StreamFactory $streamFactory, array $config = [])
6262
{

0 commit comments

Comments
 (0)