@@ -61,21 +61,10 @@ class CacheInvalidator
61
61
*/
62
62
public const CLEAR = 'clear ' ;
63
63
64
- /**
65
- * @var ProxyClient
66
- */
67
- private $ cache ;
64
+ private ProxyClient $ cache ;
68
65
69
- /**
70
- * @var EventDispatcherInterface
71
- */
72
- private $ eventDispatcher ;
66
+ private EventDispatcherInterface $ eventDispatcher ;
73
67
74
- /**
75
- * Constructor.
76
- *
77
- * @param ProxyClient $cache HTTP cache
78
- */
79
68
public function __construct (ProxyClient $ cache )
80
69
{
81
70
$ this ->cache = $ cache ;
@@ -91,11 +80,9 @@ public function __construct(ProxyClient $cache)
91
80
*
92
81
* @param string $operation one of the class constants
93
82
*
94
- * @return bool
95
- *
96
83
* @throws InvalidArgumentException
97
84
*/
98
- public function supports (string $ operation )
85
+ public function supports (string $ operation ): bool
99
86
{
100
87
switch ($ operation ) {
101
88
case self ::PATH :
@@ -125,7 +112,7 @@ public function supports(string $operation)
125
112
*/
126
113
public function setEventDispatcher (EventDispatcherInterface $ eventDispatcher ): void
127
114
{
128
- if ($ this ->eventDispatcher ) {
115
+ if (isset ( $ this ->eventDispatcher ) ) {
129
116
// if you want to set a custom event dispatcher, do so right after instantiating
130
117
// the invalidator.
131
118
throw new \Exception ('You may not change the event dispatcher once it is set. ' );
@@ -135,12 +122,10 @@ public function setEventDispatcher(EventDispatcherInterface $eventDispatcher): v
135
122
136
123
/**
137
124
* Get the event dispatcher used by the cache invalidator.
138
- *
139
- * @return EventDispatcherInterface
140
125
*/
141
- public function getEventDispatcher ()
126
+ public function getEventDispatcher (): EventDispatcherInterface
142
127
{
143
- if (!$ this ->eventDispatcher ) {
128
+ if (!isset ( $ this ->eventDispatcher ) ) {
144
129
$ this ->eventDispatcher = new EventDispatcher ();
145
130
}
146
131
@@ -150,14 +135,12 @@ public function getEventDispatcher()
150
135
/**
151
136
* Invalidate a path or URL.
152
137
*
153
- * @param string $path Path or URL
154
- * @param array $headers HTTP headers (optional)
155
- *
156
- * @return $this
138
+ * @param string $path Path or URL
139
+ * @param array<string, string> $headers HTTP headers (optional)
157
140
*
158
141
* @throws UnsupportedProxyOperationException
159
142
*/
160
- public function invalidatePath ($ path , array $ headers = []): static
143
+ public function invalidatePath (string $ path , array $ headers = []): static
161
144
{
162
145
if (!$ this ->cache instanceof PurgeCapable) {
163
146
throw UnsupportedProxyOperationException::cacheDoesNotImplement ('PURGE ' );
@@ -171,16 +154,14 @@ public function invalidatePath($path, array $headers = []): static
171
154
/**
172
155
* Refresh a path or URL.
173
156
*
174
- * @param string $path Path or URL
175
- * @param array $headers HTTP headers (optional)
157
+ * @param string $path Path or URL
158
+ * @param array<string, string> $headers HTTP headers (optional)
176
159
*
177
160
* @see RefreshCapable::refresh()
178
161
*
179
- * @return $this
180
- *
181
162
* @throws UnsupportedProxyOperationException
182
163
*/
183
- public function refreshPath ($ path , array $ headers = []): static
164
+ public function refreshPath (string $ path , array $ headers = []): static
184
165
{
185
166
if (!$ this ->cache instanceof RefreshCapable) {
186
167
throw UnsupportedProxyOperationException::cacheDoesNotImplement ('REFRESH ' );
@@ -199,9 +180,7 @@ public function refreshPath($path, array $headers = []): static
199
180
*
200
181
* @see BanCapable::ban()
201
182
*
202
- * @param array $headers HTTP headers that path must match to be banned
203
- *
204
- * @return $this
183
+ * @param array<string, string> $headers HTTP headers that path must match to be banned
205
184
*
206
185
* @throws UnsupportedProxyOperationException If HTTP cache does not support BAN requests
207
186
*/
@@ -221,9 +200,7 @@ public function invalidate(array $headers): static
221
200
*
222
201
* @see TagCapable::tags()
223
202
*
224
- * @param array $tags Tags that should be removed/expired from the cache. An empty tag list is ignored.
225
- *
226
- * @return $this
203
+ * @param string[] $tags Tags that should be removed/expired from the cache. An empty tag list is ignored.
227
204
*
228
205
* @throws UnsupportedProxyOperationException If HTTP cache does not support Tags invalidation
229
206
*/
@@ -257,8 +234,6 @@ public function invalidateTags(array $tags): static
257
234
* @param array|string|null $hosts Regular expression of a host name or list of
258
235
* exact host names to limit banning
259
236
*
260
- * @return $this
261
- *
262
237
* @throws UnsupportedProxyOperationException If HTTP cache does not support BAN requests
263
238
*
264
239
*@see BanCapable::banPath()
@@ -277,8 +252,6 @@ public function invalidateRegex(string $path, ?string $contentType = null, array
277
252
/**
278
253
* Clear the cache completely.
279
254
*
280
- * @return $this
281
- *
282
255
* @throws UnsupportedProxyOperationException if HTTP cache does not support clearing the cache completely
283
256
*/
284
257
public function clearCache (): static
@@ -299,7 +272,7 @@ public function clearCache(): static
299
272
*
300
273
* @throws ExceptionCollection if any errors occurred during flush
301
274
*/
302
- public function flush ()
275
+ public function flush (): int
303
276
{
304
277
try {
305
278
return $ this ->cache ->flush ();
0 commit comments