Skip to content

Commit 60a0ed7

Browse files
committed
Styleci fixes
1 parent 7fda9d4 commit 60a0ed7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/CachePlugin.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ final class CachePlugin implements Plugin
3535
private $config;
3636

3737
/**
38-
* Cache directives indicating if a response can be cached
38+
* Cache directives indicating if a response can be cached.
3939
*
4040
* @var array
4141
*/
@@ -53,7 +53,7 @@ final class CachePlugin implements Plugin
5353
* @var int $cache_lifetime (seconds) To support serving a previous stale response when the server answers 304
5454
* we have to store the cache for a longer time than the server originally says it is valid for.
5555
* We store a cache item for $cache_lifetime + max age of the response.
56-
* @var array $methods list of request methods which can be cached.
56+
* @var array $methods list of request methods which can be cached
5757
* @var array $respect_response_cache_directives list of cache directives this plugin will respect while caching responses.
5858
* }
5959
*/
@@ -72,7 +72,7 @@ public function __construct(CacheItemPoolInterface $pool, StreamFactory $streamF
7272
}
7373

7474
/**
75-
* This method will setup the cachePlugin in client cache mode. When using the client cache mode the plugin will cache responses with `private` cache directive
75+
* This method will setup the cachePlugin in client cache mode. When using the client cache mode the plugin will cache responses with `private` cache directive.
7676
*
7777
* @param CacheItemPoolInterface $pool
7878
* @param StreamFactory $streamFactory
@@ -98,7 +98,7 @@ public static function clientCache(CacheItemPoolInterface $pool, StreamFactory $
9898
}
9999

100100
/**
101-
* This method will setup the cachePlugin in server cache mode. This is the default caching behavior (refuses to cache responses with the `private`or `no-cache` directives
101+
* This method will setup the cachePlugin in server cache mode. This is the default caching behavior (refuses to cache responses with the `private`or `no-cache` directives.
102102
*
103103
* @param CacheItemPoolInterface $pool
104104
* @param StreamFactory $streamFactory

0 commit comments

Comments
 (0)