We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46b24ec commit aab604eCopy full SHA for aab604e
docs/drivers.md
src/PurgeClient/PurgeClientInterface.php
@@ -16,11 +16,16 @@
16
interface PurgeClientInterface extends KernelPurgeClientInterface
17
{
18
/**
19
- * Triggers the cache purge $locationIds.
+ * Triggers the cache purge of $tags.
20
*
21
* It's up to the implementor to decide whether to purge $locationIds right away or to delegate to a separate process.
22
23
- * @param array $locationIds Cache resource(s) to purge (e.g. array of URI to purge in a reverse proxy)
+ * @param array $tags Array of tags to purge
24
*/
25
- public function purge($locationIds);
+ public function purge($tags);
26
+
27
+ /**
28
+ * Purge the whole http cache
29
+ */
30
+ public function purgeAll();
31
}
0 commit comments