@@ -222,7 +222,7 @@ private static function parseDate(string $dateValue): ?string
222222 /**
223223 * Gets the name of the cookie.
224224 *
225- * @return string The cookie name
225+ * @return string
226226 */
227227 public function getName ()
228228 {
@@ -232,7 +232,7 @@ public function getName()
232232 /**
233233 * Gets the value of the cookie.
234234 *
235- * @return string The cookie value
235+ * @return string
236236 */
237237 public function getValue ()
238238 {
@@ -242,7 +242,7 @@ public function getValue()
242242 /**
243243 * Gets the raw value of the cookie.
244244 *
245- * @return string The cookie value
245+ * @return string
246246 */
247247 public function getRawValue ()
248248 {
@@ -252,7 +252,7 @@ public function getRawValue()
252252 /**
253253 * Gets the expires time of the cookie.
254254 *
255- * @return string|null The cookie expires time
255+ * @return string|null
256256 */
257257 public function getExpiresTime ()
258258 {
@@ -262,7 +262,7 @@ public function getExpiresTime()
262262 /**
263263 * Gets the path of the cookie.
264264 *
265- * @return string The cookie path
265+ * @return string
266266 */
267267 public function getPath ()
268268 {
@@ -272,7 +272,7 @@ public function getPath()
272272 /**
273273 * Gets the domain of the cookie.
274274 *
275- * @return string The cookie domain
275+ * @return string
276276 */
277277 public function getDomain ()
278278 {
@@ -282,7 +282,7 @@ public function getDomain()
282282 /**
283283 * Returns the secure flag of the cookie.
284284 *
285- * @return bool The cookie secure flag
285+ * @return bool
286286 */
287287 public function isSecure ()
288288 {
@@ -292,7 +292,7 @@ public function isSecure()
292292 /**
293293 * Returns the httponly flag of the cookie.
294294 *
295- * @return bool The cookie httponly flag
295+ * @return bool
296296 */
297297 public function isHttpOnly ()
298298 {
@@ -302,7 +302,7 @@ public function isHttpOnly()
302302 /**
303303 * Returns true if the cookie has expired.
304304 *
305- * @return bool true if the cookie has expired, false otherwise
305+ * @return bool
306306 */
307307 public function isExpired ()
308308 {
@@ -312,7 +312,7 @@ public function isExpired()
312312 /**
313313 * Gets the samesite attribute of the cookie.
314314 *
315- * @return string|null The cookie samesite attribute
315+ * @return string|null
316316 */
317317 public function getSameSite (): ?string
318318 {
0 commit comments