Completed
Pull Request — master (#18)
by
unknown
01:06
created
src/Actions/Action.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -9,9 +9,20 @@
 block discarded – undo
9 9
  */
10 10
 trait Action
11 11
 {
12
+    /**
13
+     * @param string $uri
14
+     */
12 15
     abstract function get($uri, $payload = []);
13 16
     abstract function put($uri, array $payload = []);
17
+
18
+    /**
19
+     * @param string $uri
20
+     */
14 21
     abstract function post($uri, array $payload = []);
22
+
23
+    /**
24
+     * @param string $uri
25
+     */
15 26
     abstract function delete($uri, array $payload = []);
16 27
     abstract function transformCollection($collection, $class, $key = '', $extraData = []);
17 28
 }
Please login to merge, or discard this patch.