Completed
Push — develop ( 1a7b0f...446627 )
by Hassan
03:08
created
src/Http/Middleware/SecureRequestMiddleware.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -38,12 +38,18 @@
 block discarded – undo
38 38
         return parent::__invoke($request->withUri($uri), $options);
39 39
     }
40 40
 
41
+    /**
42
+     * @param string $path
43
+     */
41 44
     private function getPath($path)
42 45
     {
43 46
         $pattern = '/^\/v'.Client::API_VERSION.'\//';
44 47
         return preg_replace($pattern, '/', $path);
45 48
     }
46 49
 
50
+    /**
51
+     * @param string $query
52
+     */
47 53
     private function getParams($query)
48 54
     {
49 55
         $params = [];
Please login to merge, or discard this patch.
src/Http/Sessions/DataStoreInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
      *
27 27
      * @param string $key
28 28
      * @param mixed  $value
29
+     * @return void
29 30
      */
30 31
     public function set($key, $value);
31 32
 }
Please login to merge, or discard this patch.