Completed
Push — master ( c7d7d2...b9efc1 )
by Vadim
02:49
created
src/Adapter/Ivona/Authenticate.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@  discard block
 block discarded – undo
19 19
 
20 20
     /**
21 21
      * Constructor
22
-     * @param $secretKey
23
-     * @param $accessKey
22
+     * @param string $secretKey
23
+     * @param string $accessKey
24 24
      */
25 25
     public function __construct($secretKey, $accessKey)
26 26
     {
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * Set post data
84
-     * @param array $postData
84
+     * @param string $postData
85 85
      * @return $this
86 86
      */
87 87
     public function setPostData($postData)
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * Get authorization headers
95 95
      * @param string $serviceType
96
-     * @return array
96
+     * @return string[]
97 97
      */
98 98
     public function getHeader($serviceType)
99 99
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
     /**
137 137
      * Get string to sign
138
-     * @param $canonical
138
+     * @param string $canonical
139 139
      * @return string
140 140
      */
141 141
     protected function getStringToSign($canonical)
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 
167 167
     /**
168 168
      * Create signature
169
-     * @param $requestType
169
+     * @param string $requestType
170 170
      * @return string
171 171
      */
172 172
     protected function createSignature($requestType)
Please login to merge, or discard this patch.
src/Adapter/Ivona/Payload.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * Get service headers
48
-     * @return array
48
+     * @return string[]
49 49
      */
50 50
     public function getHeaders()
51 51
     {
Please login to merge, or discard this patch.