Completed
Push — master ( eb3939...c1a83e )
by Kevin
04:01
created
src/AbstractClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      * Return the list of options that can be passed to the HttpClient
65 65
      *
66 66
      * @param  array  $options
67
-     * @return array
67
+     * @return string[]
68 68
      */
69 69
     protected function getAllowedClientOptions(array $options)
70 70
     {
Please login to merge, or discard this patch.
src/Client.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * Returns all options that can be configured.
84 84
      *
85
-     * @return array
85
+     * @return string[]
86 86
      */
87 87
     protected function getConfigurableOptions()
88 88
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Returns all options that are required.
100 100
      *
101
-     * @return array
101
+     * @return string[]
102 102
      */
103 103
     protected function getRequiredOptions()
104 104
     {
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
      * Returns command method based on the command.
170 170
      *
171 171
      * @param  string  $command
172
-     * @return array
172
+     * @return string
173 173
      */
174 174
     public function getCommandMethod($command)
175 175
     {
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      * Signs the command parameters.
228 228
      *
229 229
      * @param  array  $params
230
-     * @return array
230
+     * @return string
231 231
      */
232 232
     protected function signCommandParameters(array $params = [])
233 233
     {
@@ -276,7 +276,6 @@  discard block
 block discarded – undo
276 276
     /**
277 277
      * Set Cloudstack Client API list.
278 278
      *
279
-     * @param  array  $list
280 279
      * @return void
281 280
      */
282 281
     public function setApiList(array $apiList)
Please login to merge, or discard this patch.