diff vendor/symfony/http-kernel/HttpCache/StoreInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
line wrap: on
line diff
--- a/vendor/symfony/http-kernel/HttpCache/StoreInterface.php	Mon Apr 23 09:33:26 2018 +0100
+++ b/vendor/symfony/http-kernel/HttpCache/StoreInterface.php	Mon Apr 23 09:46:53 2018 +0100
@@ -27,8 +27,6 @@
     /**
      * Locates a cached Response for the Request provided.
      *
-     * @param Request $request A Request instance
-     *
      * @return Response|null A Response instance, or null if no cache entry was found
      */
     public function lookup(Request $request);
@@ -39,25 +37,18 @@
      * Existing entries are read and any that match the response are removed. This
      * method calls write with the new list of cache entries.
      *
-     * @param Request  $request  A Request instance
-     * @param Response $response A Response instance
-     *
      * @return string The key under which the response is stored
      */
     public function write(Request $request, Response $response);
 
     /**
      * Invalidates all cache entries that match the request.
-     *
-     * @param Request $request A Request instance
      */
     public function invalidate(Request $request);
 
     /**
      * Locks the cache for a given Request.
      *
-     * @param Request $request A Request instance
-     *
      * @return bool|string true if the lock is acquired, the path to the current lock otherwise
      */
     public function lock(Request $request);
@@ -65,8 +56,6 @@
     /**
      * Releases the lock for the given Request.
      *
-     * @param Request $request A Request instance
-     *
      * @return bool False if the lock file does not exist or cannot be unlocked, true otherwise
      */
     public function unlock(Request $request);
@@ -74,8 +63,6 @@
     /**
      * Returns whether or not a lock exists.
      *
-     * @param Request $request A Request instance
-     *
      * @return bool true if lock exists, false otherwise
      */
     public function isLocked(Request $request);