Completed
Push — master ( 30b51c...942354 )
by Chubarov
24:54 queued 21:03
created
src/Assistants/ConstructorUrl.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     /**
14 14
      * Concatenation Url In Curl
15
-     * @param $newParameters string
15
+     * @param string $newParameters string
16 16
      * @return $this
17 17
      */
18 18
     protected function concatenationUrlCurl($newParameters)
Please login to merge, or discard this patch.
src/Actions/Delete.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @return \agoalofalife\bpm\Contracts\Handler
46
+     * @return \Illuminate\Container\Container
47 47
      */
48 48
     public function processData()
49 49
     {
Please login to merge, or discard this patch.
src/Actions/Update.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @return \agoalofalife\bpm\Contracts\Handler
46
+     * @return \Illuminate\Container\Container
47 47
      */
48 48
     public function processData()
49 49
     {
Please login to merge, or discard this patch.
src/Actions/Read.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @return Handler
53
+     * @return \Illuminate\Container\Container
54 54
      */
55 55
     public function processData()
56 56
     {
Please login to merge, or discard this patch.
src/KernelBpm.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param       $key
116
+     * @param       string $key
117 117
      * @param array $array
118 118
      * @return void
119 119
      */
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @return Handler
127
+     * @return \Illuminate\Container\Container
128 128
      */
129 129
     public function getHandler()
130 130
     {
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     /**
135 135
      * Set the response handler
136 136
      * @param string $typeHandler default xml
137
-     * @return Action
137
+     * @return \Illuminate\Container\Container
138 138
      */
139 139
     public function setHandler($typeHandler = 'xml')
140 140
     {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     }
153 153
 
154 154
     /**
155
-     * @param $typeAction string
155
+     * @param string $typeAction string
156 156
      * @return Action
157 157
      */
158 158
     public function setAction($typeAction)
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     /**
199 199
      * Set collection for correct query
200 200
      * @param string $collection
201
-     * @return mixed
201
+     * @return string
202 202
      * @throws \Exception
203 203
      */
204 204
     public function setCollection($collection)
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
         return app()->make(ClientInterface::class);
229 229
     }
230 230
     /**
231
-     * @param $action
231
+     * @param string $action
232 232
      * @return array
233 233
      */
234 234
     private function splitAction($action)
Please login to merge, or discard this patch.