@@ -58,13 +58,13 @@ protected function configureOptions()
58
58
'purge_method ' => PurgeListener::DEFAULT_PURGE_METHOD ,
59
59
'tags_method ' => PurgeTagsListener::DEFAULT_TAGS_METHOD ,
60
60
'tags_header ' => PurgeTagsListener::DEFAULT_TAGS_HEADER ,
61
- 'tags_path ' => '/ ' ,
61
+ 'tags_invalidate_path ' => '/ ' ,
62
62
'header_length ' => 7500 ,
63
63
]);
64
64
$ resolver ->setAllowedTypes ('purge_method ' , 'string ' );
65
65
$ resolver ->setAllowedTypes ('tags_method ' , 'string ' );
66
66
$ resolver ->setAllowedTypes ('tags_header ' , 'string ' );
67
- $ resolver ->setAllowedTypes ('tags_path ' , 'string ' );
67
+ $ resolver ->setAllowedTypes ('tags_invalidate_path ' , 'string ' );
68
68
$ resolver ->setAllowedTypes ('header_length ' , 'int ' );
69
69
70
70
return $ resolver ;
@@ -86,7 +86,7 @@ public function invalidateTags(array $tags)
86
86
foreach (array_chunk ($ escapedTags , $ chunkSize ) as $ tagchunk ) {
87
87
$ this ->queueRequest (
88
88
$ this ->options ['tags_method ' ],
89
- $ this ->options ['tags_path ' ],
89
+ $ this ->options ['tags_invalidate_path ' ],
90
90
[$ this ->options ['tags_header ' ] => implode (', ' , $ tagchunk )],
91
91
false
92
92
);
0 commit comments