Completed
Push — master ( be4867...4d8309 )
by Juliano
03:34 queued 01:05
created
src/Api.php 1 patch
Doc Comments   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,8 +38,6 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * add a header to the api.
40 40
      *
41
-     * @param string $key
42
-     * @param string $value
43 41
      * @param string $name
44 42
      * @return Raidros\Storer\Header
45 43
      */
@@ -61,7 +59,7 @@  discard block
 block discarded – undo
61 59
     /**
62 60
      * Return api headers.
63 61
      *
64
-     * @return array
62
+     * @return Collection
65 63
      */
66 64
     public function getHeaders()
67 65
     {
@@ -71,7 +69,7 @@  discard block
 block discarded – undo
71 69
     /**
72 70
      * Return api endpoints.
73 71
      *
74
-     * @return array
72
+     * @return Collection
75 73
      */
76 74
     public function getEndpoints()
77 75
     {
@@ -84,7 +82,7 @@  discard block
 block discarded – undo
84 82
      * @param string $name
85 83
      * @param array $params
86 84
      * @param array  $headers
87
-     * @return GuzzleHttp\Promise\PromiseInterface
85
+     * @return Response
88 86
      */
89 87
     public function execute($name, array $params = [], array $headers = [])
90 88
     {
Please login to merge, or discard this patch.
src/Executor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     /**
13 13
      * Setup a api endpoint execution.
14 14
      *
15
-     * @param Raidros\Storer\Api $api
15
+     * @param Api $api
16 16
      */
17 17
     public function __construct(Api $api)
18 18
     {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param string $pointName
26 26
      * @param array  $data
27 27
      * @param array  $headers
28
-     * @return Raidros\Storer\Response
28
+     * @return Response
29 29
      */
30 30
     public function run($pointName, array $data = [], array $headers = [])
31 31
     {
Please login to merge, or discard this patch.