@@ -76,7 +76,7 @@ class CacheInvalidator
7676 private $ headerLength = 7500 ;
7777
7878 /**
79- * Constructor
79+ * Constructor.
8080 *
8181 * @param ProxyClientInterface $cache HTTP cache
8282 */
@@ -112,12 +112,12 @@ public function supports($operation)
112112 case self ::INVALIDATE :
113113 return $ this ->cache instanceof BanInterface;
114114 default :
115- throw new InvalidArgumentException ('Unknown operation ' . $ operation );
115+ throw new InvalidArgumentException ('Unknown operation ' . $ operation );
116116 }
117117 }
118118
119119 /**
120- * Set event dispatcher
120+ * Set event dispatcher.
121121 *
122122 * @param EventDispatcherInterface $eventDispatcher
123123 *
@@ -136,7 +136,7 @@ public function setEventDispatcher(EventDispatcherInterface $eventDispatcher)
136136 }
137137
138138 /**
139- * Get event dispatcher
139+ * Get event dispatcher.
140140 *
141141 * @return EventDispatcherInterface
142142 */
@@ -150,7 +150,7 @@ public function getEventDispatcher()
150150 }
151151
152152 /**
153- * Add subscriber
153+ * Add subscriber.
154154 *
155155 * @param EventSubscriberInterface $subscriber
156156 *
@@ -166,7 +166,7 @@ public function addSubscriber(EventSubscriberInterface $subscriber)
166166 }
167167
168168 /**
169- * Set the HTTP header name that will hold cache tags
169+ * Set the HTTP header name that will hold cache tags.
170170 *
171171 * @param string $tagsHeader
172172 *
@@ -184,7 +184,7 @@ public function setTagsHeader($tagsHeader)
184184 }
185185
186186 /**
187- * Get the HTTP header name that will hold cache tags
187+ * Get the HTTP header name that will hold cache tags.
188188 *
189189 * @return string
190190 *
@@ -196,7 +196,7 @@ public function getTagsHeader()
196196 }
197197
198198 /**
199- * Invalidate a path or URL
199+ * Invalidate a path or URL.
200200 *
201201 * @param string $path Path or URL
202202 * @param array $headers HTTP headers (optional)
@@ -217,7 +217,7 @@ public function invalidatePath($path, array $headers = array())
217217 }
218218
219219 /**
220- * Refresh a path or URL
220+ * Refresh a path or URL.
221221 *
222222 * @param string $path Path or URL
223223 * @param array $headers HTTP headers (optional)
0 commit comments