Completed
Push — master ( defc9d...f38146 )
by Christopher
02:50
created
ActiveRecord.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * Returns the primary key name(s) for this AR class.
77 77
      * This method should be overridden by child classes to define the primary key.
78 78
      *
79
-     * @return string[] the primary keys of this record.
79
+     * @return string the primary keys of this record.
80 80
      */
81 81
     public static function primaryKey()
82 82
     {
Please login to merge, or discard this patch.
DataReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
     /**
190 190
      * Returns the result of the current item.
191 191
      * This method is required by the interface [[\Iterator]].
192
-     * @return integer the index of the current row.
192
+     * @return string the index of the current row.
193 193
      */
194 194
     public function key()
195 195
     {
Please login to merge, or discard this patch.
LdapFunctionTrait.php 1 patch
Doc Comments   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * @param string $dn
112 112
      * @param array  $entry
113 113
      *
114
-     * @return mixed
114
+     * @return boolean
115 115
      */
116 116
     public function modAdd($dn, array $entry)
117 117
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      * @param string $dn
125 125
      * @param array  $entry
126 126
      *
127
-     * @return mixed
127
+     * @return boolean
128 128
      */
129 129
     public function modReplace($dn, array $entry)
130 130
     {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      * @param string $dn
138 138
      * @param array  $entry
139 139
      *
140
-     * @return mixed
140
+     * @return boolean
141 141
      */
142 142
     public function modDelete($dn, array $entry)
143 143
     {
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      *
175 175
      * @param $searchResult
176 176
      *
177
-     * @return mixed
177
+     * @return resource
178 178
      */
179 179
     public function getFirstEntry($searchResults)
180 180
     {
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      *
187 187
      * @param $entry
188 188
      *
189
-     * @return mixed
189
+     * @return resource
190 190
      */
191 191
     public function getNextEntry($entry)
192 192
     {
@@ -220,6 +220,7 @@  discard block
 block discarded – undo
220 220
 
221 221
     /**
222 222
      * {@inheritdoc}
223
+     * @param integer $option
223 224
      */
224 225
     public function setOption($option, $value)
225 226
     {
@@ -229,10 +230,8 @@  discard block
 block discarded – undo
229 230
     /**
230 231
      * Sets an option on the current connection.
231 232
      *
232
-     * @param int   $option
233
-     * @param mixed $value
234 233
      *
235
-     * @return mixed
234
+     * @return boolean
236 235
      */
237 236
     public function setRebindCallback(callable $callback)
238 237
     {
@@ -242,7 +241,7 @@  discard block
 block discarded – undo
242 241
     /**
243 242
      * Starts a connection using TLS.
244 243
      *
245
-     * @return mixed
244
+     * @return boolean
246 245
      */
247 246
     public function startTLS()
248 247
     {
@@ -253,7 +252,7 @@  discard block
 block discarded – undo
253 252
      * Returns the error number of the last command
254 253
      * executed on the current connection.
255 254
      *
256
-     * @return mixed
255
+     * @return integer
257 256
      */
258 257
     public function getErrNo()
259 258
     {
Please login to merge, or discard this patch.
Query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -339,7 +339,7 @@
 block discarded – undo
339 339
 
340 340
     /**
341 341
      * Sets the SELECT part of the query.
342
-     * @param string|array $columns the columns to be selected.
342
+     * @param string $columns the columns to be selected.
343 343
      * Columns can be specified in either a string (e.g. "id, name") or an array (e.g. ['id', 'name']).
344 344
      *
345 345
      * ```php
Please login to merge, or discard this patch.
Connection.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /**
100 100
      * Get the current resource of connection.
101 101
      *
102
-     * @return mixed
102
+     * @return Connection
103 103
      */
104 104
     public function getResource()
105 105
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      * Retrieve the last error on the current
141 141
      * connection.
142 142
      *
143
-     * @return string
143
+     * @return boolean
144 144
      */
145 145
     public function connect($hostname = [], $port = '389')
146 146
     {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Closes the current connection.
175 175
      *
176
-     * @return mixed
176
+     * @return boolean
177 177
      */
178 178
     public function close()
179 179
     {
Please login to merge, or discard this patch.