Skip to content

Commit 93fcc30

Browse files
committed
static typing tests and remove legacy things
1 parent 797ae1c commit 93fcc30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+279
-461
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"phpunit/phpunit": "^9"
4141
},
4242
"conflict": {
43-
"toflar/psr6-symfony-http-cache-store": "<2.2.1"
43+
"toflar/psr6-symfony-http-cache-store": "<2.2.1",
44+
"phpunit/phpunit": "<8"
4445
},
4546
"suggest": {
4647
"friendsofsymfony/http-cache-bundle": "For integration with the Symfony framework",

src/CacheInvalidator.php

+16-16
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function __construct(ProxyClient $cache)
9595
*
9696
* @throws InvalidArgumentException
9797
*/
98-
public function supports($operation)
98+
public function supports(string $operation)
9999
{
100100
switch ($operation) {
101101
case self::PATH:
@@ -123,7 +123,7 @@ public function supports($operation)
123123
*
124124
* @throws \Exception when trying to override the event dispatcher
125125
*/
126-
public function setEventDispatcher(EventDispatcherInterface $eventDispatcher)
126+
public function setEventDispatcher(EventDispatcherInterface $eventDispatcher): void
127127
{
128128
if ($this->eventDispatcher) {
129129
// if you want to set a custom event dispatcher, do so right after instantiating
@@ -157,7 +157,7 @@ public function getEventDispatcher()
157157
*
158158
* @throws UnsupportedProxyOperationException
159159
*/
160-
public function invalidatePath($path, array $headers = [])
160+
public function invalidatePath($path, array $headers = []): static
161161
{
162162
if (!$this->cache instanceof PurgeCapable) {
163163
throw UnsupportedProxyOperationException::cacheDoesNotImplement('PURGE');
@@ -180,7 +180,7 @@ public function invalidatePath($path, array $headers = [])
180180
*
181181
* @throws UnsupportedProxyOperationException
182182
*/
183-
public function refreshPath($path, array $headers = [])
183+
public function refreshPath($path, array $headers = []): static
184184
{
185185
if (!$this->cache instanceof RefreshCapable) {
186186
throw UnsupportedProxyOperationException::cacheDoesNotImplement('REFRESH');
@@ -205,7 +205,7 @@ public function refreshPath($path, array $headers = [])
205205
*
206206
* @throws UnsupportedProxyOperationException If HTTP cache does not support BAN requests
207207
*/
208-
public function invalidate(array $headers)
208+
public function invalidate(array $headers): static
209209
{
210210
if (!$this->cache instanceof BanCapable) {
211211
throw UnsupportedProxyOperationException::cacheDoesNotImplement('BAN');
@@ -227,7 +227,7 @@ public function invalidate(array $headers)
227227
*
228228
* @throws UnsupportedProxyOperationException If HTTP cache does not support Tags invalidation
229229
*/
230-
public function invalidateTags(array $tags)
230+
public function invalidateTags(array $tags): static
231231
{
232232
if (!$this->cache instanceof TagCapable) {
233233
throw UnsupportedProxyOperationException::cacheDoesNotImplement('Tags');
@@ -250,20 +250,20 @@ public function invalidateTags(array $tags)
250250
* ['example.com', 'other.net']. If the parameter is empty, all hosts
251251
* are matched.
252252
*
253-
* @see BanCapable::banPath()
254-
*
255-
* @param string $path Regular expression pattern for URI to
256-
* invalidate
257-
* @param string $contentType Regular expression pattern for the content
258-
* type to limit banning, for instance 'text'
259-
* @param array|string $hosts Regular expression of a host name or list of
260-
* exact host names to limit banning
253+
* @param string $path Regular expression pattern for URI to
254+
* invalidate
255+
* @param string|null $contentType Regular expression pattern for the content
256+
* type to limit banning, for instance 'text'
257+
* @param array|string|null $hosts Regular expression of a host name or list of
258+
* exact host names to limit banning
261259
*
262260
* @return $this
263261
*
264262
* @throws UnsupportedProxyOperationException If HTTP cache does not support BAN requests
263+
*
264+
*@see BanCapable::banPath()
265265
*/
266-
public function invalidateRegex($path, $contentType = null, $hosts = null)
266+
public function invalidateRegex(string $path, ?string $contentType = null, array|string|null $hosts = null): static
267267
{
268268
if (!$this->cache instanceof BanCapable) {
269269
throw UnsupportedProxyOperationException::cacheDoesNotImplement('BAN');
@@ -281,7 +281,7 @@ public function invalidateRegex($path, $contentType = null, $hosts = null)
281281
*
282282
* @throws UnsupportedProxyOperationException if HTTP cache does not support clearing the cache completely
283283
*/
284-
public function clearCache()
284+
public function clearCache(): static
285285
{
286286
if (!$this->cache instanceof ClearCapable) {
287287
throw UnsupportedProxyOperationException::cacheDoesNotImplement('CLEAR');

src/Event.php

+3-11
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,14 @@
1515

1616
class Event extends BaseEvent
1717
{
18-
private $exception;
18+
private \Throwable $exception;
1919

20-
/**
21-
* Set exception.
22-
*/
23-
public function setException(\Exception $exception)
20+
public function setException(\Throwable $exception): void
2421
{
2522
$this->exception = $exception;
2623
}
2724

28-
/**
29-
* Get exception.
30-
*
31-
* @return \Exception
32-
*/
33-
public function getException()
25+
public function getException(): \Throwable
3426
{
3527
return $this->exception;
3628
}

src/ResponseTagger.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function getTagsHeaderName()
9090
*
9191
* This concatenates all tags and ensures correct encoding.
9292
*
93-
* @return string
93+
* @erturn string
9494
*/
9595
public function getTagsHeaderValue()
9696
{
@@ -104,7 +104,7 @@ public function getTagsHeaderValue()
104104
*
105105
* @return string[]
106106
*/
107-
protected function parseTagsHeaderValue($headers): array
107+
protected function parseTagsHeaderValue(array|string $headers)
108108
{
109109
if ($this->headerFormatter instanceof TagHeaderParser) {
110110
return $this->headerFormatter->parseTagsHeaderValue($headers);
@@ -118,7 +118,7 @@ protected function parseTagsHeaderValue($headers): array
118118
/**
119119
* Check whether the tag handler has any tags to set on the response.
120120
*
121-
* @return bool True if this handler will set at least one tag
121+
* @return bool
122122
*/
123123
public function hasTags()
124124
{
@@ -156,7 +156,7 @@ public function addTags(array $tags)
156156
* This is usually called after adding the tags header to a response. It is
157157
* automatically called by the tagResponse method.
158158
*/
159-
public function clear()
159+
public function clear(): void
160160
{
161161
$this->tags = [];
162162
}
@@ -168,9 +168,9 @@ public function clear()
168168
* @param bool $replace Whether to replace the current tags
169169
* on the response
170170
*
171-
* @return ResponseInterface Tagged response
171+
* @return ResponseInterface
172172
*/
173-
public function tagResponse(ResponseInterface $response, $replace = false)
173+
public function tagResponse(ResponseInterface $response, bool $replace = false)
174174
{
175175
if (!$this->hasTags()) {
176176
return $response;

src/SymfonyCache/CacheInvalidation.php

+25-26
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,35 @@
1111

1212
namespace FOS\HttpCache\SymfonyCache;
1313

14+
use Symfony\Component\HttpFoundation\Request;
15+
use Symfony\Component\HttpFoundation\Response;
16+
use Symfony\Component\HttpKernel\HttpCache\StoreInterface;
1417
use Symfony\Component\HttpKernel\HttpKernelInterface;
15-
use Symfony\Component\HttpKernel\Kernel;
1618

17-
if (interface_exists(CacheInvalidation::class)) {
18-
return;
19-
}
20-
21-
/*
22-
* Symfony 6 introduced a BC break in the signature of the protected method HttpKernelInterface::fetch.
23-
* Load the correct interface to match the signature.
19+
/**
20+
* Interface for a HttpCache that supports active cache invalidation.
2421
*/
25-
if (\class_exists(Kernel::class) && Kernel::MAJOR_VERSION >= 6) {
26-
// Load class for Symfony >=6.0
27-
\class_alias(
28-
Compatibility\CacheInvalidationS6::class,
29-
CacheInvalidation::class
30-
);
31-
} else {
32-
// Load class for any other cases
33-
\class_alias(
34-
Compatibility\CacheInvalidationLegacy::class,
35-
CacheInvalidation::class
36-
);
37-
}
22+
interface CacheInvalidation extends HttpKernelInterface
23+
{
24+
/**
25+
* Forwards the Request to the backend and determines whether the response should be stored.
26+
*
27+
* This methods is triggered when the cache missed or a reload is required.
28+
*
29+
* This method is present on HttpCache but must be public to allow event listeners to do
30+
* refresh operations.
31+
*
32+
* @param Request $request A Request instance
33+
* @param bool $catch Whether to process exceptions
34+
*
35+
* @return Response A Response instance
36+
*/
37+
public function fetch(Request $request, bool $catch = false): Response;
3838

39-
if (!interface_exists(CacheInvalidation::class)) {
4039
/**
41-
* Provide an empty interface for code scanners.
40+
* Gets the store for cached responses.
41+
*
42+
* @return StoreInterface $store The store used by the HttpCache
4243
*/
43-
interface CacheInvalidation extends HttpKernelInterface
44-
{
45-
}
44+
public function getStore(): StoreInterface;
4645
}

src/SymfonyCache/Compatibility/CacheInvalidationLegacy.php

-47
This file was deleted.

src/SymfonyCache/Compatibility/CacheInvalidationS6.php

-47
This file was deleted.

tests/Functional/CacheInvalidatorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
class CacheInvalidatorTest extends VarnishTestCase
2121
{
22-
public function testInvalidateTags()
22+
public function testInvalidateTags(): void
2323
{
2424
if (getenv('VARNISH_MODULES_VERSION')) {
2525
$uri = '/tags_xkey.php';

tests/Functional/ProxyClient/BanAssertions.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ trait BanAssertions
2525
* @param string $header The header that holds the URLs
2626
* @param array $paths The paths to get, defaults to [/cache.php, json.php]
2727
*/
28-
protected function assertBanAll(BanCapable $proxyClient, $header, array $paths = ['/cache.php', '/json.php'])
28+
protected function assertBanAll(BanCapable $proxyClient, string $header, array $paths = ['/cache.php', '/json.php']): void
2929
{
3030
foreach ($paths as $path) {
3131
$this->assertMiss($this->getResponse($path));
@@ -47,7 +47,7 @@ protected function assertBanAll(BanCapable $proxyClient, $header, array $paths =
4747
* @param string $hostname Name of the host so we can invalidate that host
4848
* @param string $path The path to get, defaults to /cache.php
4949
*/
50-
protected function assertBanHost(BanCapable $proxyClient, $header, $hostname, $path = '/cache.php')
50+
protected function assertBanHost(BanCapable $proxyClient, string $header, string $hostname, string $path = '/cache.php'): void
5151
{
5252
$this->assertMiss($this->getResponse($path));
5353
$this->assertHit($this->getResponse($path));
@@ -65,7 +65,7 @@ protected function assertBanHost(BanCapable $proxyClient, $header, $hostname, $p
6565
* @param BanCapable $proxyClient The client to send ban instructions to the cache
6666
* @param array $paths The paths to get, defaults to [/cache.php, json.php]
6767
*/
68-
protected function assertBanPath(BanCapable $proxyClient, array $paths = ['/cache.php', '/json.php'])
68+
protected function assertBanPath(BanCapable $proxyClient, array $paths = ['/cache.php', '/json.php']): void
6969
{
7070
foreach ($paths as $path) {
7171
$this->assertMiss($this->getResponse($path));
@@ -86,7 +86,7 @@ protected function assertBanPath(BanCapable $proxyClient, array $paths = ['/cach
8686
* @param string $htmlPath Path to a HTML content, defaults to /cache.php
8787
* @param string $otherPath Path to a non-HTML content, defaults to json.php
8888
*/
89-
protected function assertBanPathContentType(BanCapable $proxyClient, $htmlPath = '/cache.php', $otherPath = '/json.php')
89+
protected function assertBanPathContentType(BanCapable $proxyClient, string $htmlPath = '/cache.php', string $otherPath = '/json.php'): void
9090
{
9191
$this->assertMiss($this->getResponse($htmlPath));
9292
$this->assertHit($this->getResponse($htmlPath));

tests/Functional/ProxyClient/HttpDispatcherTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
class HttpDispatcherTest extends TestCase
2222
{
23-
public function testNetworkError()
23+
public function testNetworkError(): void
2424
{
2525
$requestFactory = MessageFactoryDiscovery::find();
2626
$dispatcher = new HttpDispatcher(['localhost:1']);
@@ -34,7 +34,7 @@ public function testNetworkError()
3434
}
3535
}
3636

37-
public function testClientError()
37+
public function testClientError(): void
3838
{
3939
$requestFactory = MessageFactoryDiscovery::find();
4040
$dispatcher = new HttpDispatcher(['http://foshttpcache.readthedocs.io']);

0 commit comments

Comments
 (0)