Completed
Pull Request — 1.x (#55)
by Akihito
02:57
created
src/EtagSetterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * Set Etag
16
+     * @return void
16 17
      */
17 18
     public function __invoke(ResourceObject $resourceObject, int $time = null, HttpCache $httpCache = null);
18 19
 }
Please login to merge, or discard this patch.
src/ResourceStorageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -18,11 +18,13 @@  discard block
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * Update or save new Etag
21
+     * @return void
21 22
      */
22 23
     public function updateEtag(ResourceObject $ro);
23 24
 
24 25
     /**
25 26
      * Delete Etag
27
+     * @return void
26 28
      */
27 29
     public function deleteEtag(AbstractUri $uri);
28 30
 
@@ -35,11 +37,13 @@  discard block
 block discarded – undo
35 37
 
36 38
     /**
37 39
      * Save resource cache with value
40
+     * @return boolean
38 41
      */
39 42
     public function saveValue(ResourceObject $ro, int $ttl);
40 43
 
41 44
     /**
42 45
      * Save resource cache with view
46
+     * @return boolean
43 47
      */
44 48
     public function saveView(ResourceObject $ro, int $ttl);
45 49
 
Please login to merge, or discard this patch.