Completed
Push — master ( defc9d...f38146 )
by Christopher
02:50
created
ActiveRecord.php 2 patches
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.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $this->schema = new Schema();
93 93
         
94
-        if(!is_null($this->schemaClass)){
95
-            if(class_exists($this->schemaClass)){
94
+        if (!is_null($this->schemaClass)) {
95
+            if (class_exists($this->schemaClass)) {
96 96
                 Schema::set(new $this->schemaClass);
97 97
             } else {
98
-                throw new InvalidConfigException('"' . $this->schemaClass . '" does not exist.');
98
+                throw new InvalidConfigException('"'.$this->schemaClass.'" does not exist.');
99 99
             }
100 100
         }
101 101
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $dn = $values[self::primaryKey()];
189 189
         unset($values[self::primaryKey()]);
190 190
         
191
-        if (($primaryKeys = static::getDb()->execute('ldap_add', [$dn,$values])) === false) {
191
+        if (($primaryKeys = static::getDb()->execute('ldap_add', [$dn, $values])) === false) {
192 192
             return false;
193 193
         }
194 194
         $this->setAttribute(self::primaryKey(), $dn);
Please login to merge, or discard this patch.
DataReader.php 2 patches
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.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function toArray()
122 122
     {
123
-        if($this->_count <= 0){
123
+        if ($this->_count <= 0) {
124 124
             return [];
125 125
         }
126 126
         
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             Yii::endProfile('ldap_free_result', 'chrmorandi\ldap\DataReader');
145 145
 
146 146
             $this->_result = null;
147
-            $this->_row  = null;
147
+            $this->_row = null;
148 148
         }
149 149
     }
150 150
 
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
         $resource = $this->_conn->resource;
218 218
         
219
-        Yii::beginProfile('current:' . $this->key(), 'chrmorandi\ldap\DataReader');
219
+        Yii::beginProfile('current:'.$this->key(), 'chrmorandi\ldap\DataReader');
220 220
         $name = ldap_first_attribute($resource, $this->_row);        
221 221
         
222 222
         while ($name) {            
Please login to merge, or discard this patch.
LdapFunctionTrait.php 2 patches
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.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -96,14 +96,14 @@
 block discarded – undo
96 96
         return ldap_modify_batch($this->resource, $dn, $values);
97 97
     }
98 98
 
99
-     /**
100
-     * Add attribute values to current attributes.
101
-     *
102
-     * @param string $dn
103
-     * @param array  $entry
104
-     *
105
-     * @return mixed
106
-     */
99
+        /**
100
+         * Add attribute values to current attributes.
101
+         *
102
+         * @param string $dn
103
+         * @param array  $entry
104
+         *
105
+         * @return mixed
106
+         */
107 107
     public function modAdd($dn, array $entry)
108 108
     {
109 109
         return ldap_mod_add($this->resource, $dn, $entry);
Please login to merge, or discard this patch.
Query.php 2 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         }
109 109
         
110 110
         $filter = (new FilterBuilder)->build($this->where);
111
-        $select = (is_array($this->select))?$this->select:[];
111
+        $select = (is_array($this->select)) ? $this->select : [];
112 112
 
113 113
         $params = [
114 114
             $db->baseDn,
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
         $params = $command->params;
303 303
         $command->setSql($command->db->getQueryBuilder()->selectExists($command->getSql()));
304 304
         $command->bindValues($params);
305
-        return (boolean)$command->queryScalar();
305
+        return (boolean) $command->queryScalar();
306 306
     }
307 307
 
308 308
     /**
Please login to merge, or discard this patch.
index.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
   </head>
12 12
   <body>
13 13
       <?php
14
-      // put your code here
14
+        // put your code here
15 15
 
16
-      ?>
16
+        ?>
17 17
   </body>
18 18
 </html>
Please login to merge, or discard this patch.
schemas/ActiveDirectory.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -80,13 +80,13 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public $badpasswordtime;
82 82
 
83
-     /**
84
-     * The name that represents an object.
85
-     *
86
-     * @link https://msdn.microsoft.com/en-us/library/ms675449(v=vs.85).aspx
87
-     *
88
-     * @var string
89
-     */
83
+        /**
84
+         * The name that represents an object.
85
+         *
86
+         * @link https://msdn.microsoft.com/en-us/library/ms675449(v=vs.85).aspx
87
+         *
88
+         * @var string
89
+         */
90 90
     public $cn;
91 91
 
92 92
     /**
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public $contact;
127 127
 
128
-     /**
129
-     * The entry's country attribute.
130
-     *
131
-     * @link https://msdn.microsoft.com/en-us/library/ms675432(v=vs.85).aspx
132
-     *
133
-     * @var string
134
-     */
128
+        /**
129
+         * The entry's country attribute.
130
+         *
131
+         * @link https://msdn.microsoft.com/en-us/library/ms675432(v=vs.85).aspx
132
+         *
133
+         * @var string
134
+         */
135 135
     public $c;
136 136
 
137 137
     /**
@@ -154,13 +154,13 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public $defaultnamingcontext;
156 156
 
157
-     /**
158
-     * Contains the name for the department in which the user works.
159
-     *
160
-     * @link https://msdn.microsoft.com/en-us/library/ms675490(v=vs.85).aspx
161
-     *
162
-     * @var string
163
-     */
157
+        /**
158
+         * Contains the name for the department in which the user works.
159
+         *
160
+         * @link https://msdn.microsoft.com/en-us/library/ms675490(v=vs.85).aspx
161
+         *
162
+         * @var string
163
+         */
164 164
     public $department;
165 165
 
166 166
     /**
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
      */
679 679
     public $telephonenumber;
680 680
 
681
-   /**
681
+    /**
682 682
      * The users thumbnail photo path.
683 683
      *
684 684
      * @return string
Please login to merge, or discard this patch.
Connection.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         }
150 150
         $this->resource = ldap_connect($hostname, $port);
151 151
         
152
-        if(!$this->resource){            
152
+        if (!$this->resource) {            
153 153
             return false;          
154 154
         }
155 155
         
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
             throw new LdapException($this->getLastError(), $this->getErrNo());
257 257
         }
258 258
         
259
-        if(is_resource($result)){
259
+        if (is_resource($result)) {
260 260
             return new DataReader($this, $result);
261 261
         }
262 262
 
Please login to merge, or discard this 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.
FilterBuilder.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     public function build($condition)
65 65
     {
66
-       if (!is_array($condition)) {
66
+        if (!is_array($condition)) {
67 67
             return (string) $condition;
68 68
         } elseif (empty($condition)) {
69 69
             return '';
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                 $parts[] = "$column=$value";
99 99
             }
100 100
         }
101
-        return count($parts) === 1 ? '('.$parts[0].')' : '$(' . implode(') (', $parts) . ')';
101
+        return count($parts) === 1 ? '('.$parts[0].')' : '$('.implode(') (', $parts).')';
102 102
     }
103 103
 
104 104
     /**
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
             }
117 117
             if ($operand !== '' && !is_numeric($key)) {
118 118
                 $parts[] = $key.'='.$operand;
119
-            }elseif($operand !== ''){
119
+            }elseif ($operand !== '') {
120 120
                 $other[] = $operand;
121 121
             }
122 122
         }
123 123
         if (!empty($parts)) {
124
-            return '('.$this->operator[$operator].'(' . implode(") (", $parts) . ')'.implode($other).' )';
124
+            return '('.$this->operator[$operator].'('.implode(") (", $parts).')'.implode($other).' )';
125 125
         } else {
126 126
             return '';
127 127
         }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
             return '';
150 150
         }
151 151
 
152
-        return '('.$this->operator['NOT'].'('.key($operands) .'='.$operand.'))';
152
+        return '('.$this->operator['NOT'].'('.key($operands).'='.$operand.'))';
153 153
     }
154 154
 
155 155
     /**
@@ -208,10 +208,10 @@  discard block
 block discarded – undo
208 208
         }
209 209
 
210 210
         if (count($sqlValues) > 1) {
211
-            return "$column $operator (" . implode(', ', $sqlValues) . ')';
211
+            return "$column $operator (".implode(', ', $sqlValues).')';
212 212
         } else {
213 213
             $operator = $operator === 'IN' ? '=' : '<>';
214
-            return $column . $operator . reset($sqlValues);
214
+            return $column.$operator.reset($sqlValues);
215 215
         }
216 216
     }
217 217
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
                     $columns[$i] = $this->db->quoteColumnName($col);
233 233
                 }
234 234
             }
235
-            return '(' . implode(', ', $columns) . ") $operator ($sql)";
235
+            return '('.implode(', ', $columns).") $operator ($sql)";
236 236
         } else {
237 237
             if (strpos($columns, '(') === false) {
238 238
                 $columns = $this->db->quoteColumnName($columns);
@@ -256,14 +256,14 @@  discard block
 block discarded – undo
256 256
             $vs = [];
257 257
             foreach ($columns as $column) {
258 258
                 if (isset($value[$column])) {
259
-                    $phName = self::PARAM_PREFIX . count($params);
259
+                    $phName = self::PARAM_PREFIX.count($params);
260 260
                     $params[$phName] = $value[$column];
261 261
                     $vs[] = $phName;
262 262
                 } else {
263 263
                     $vs[] = 'NULL';
264 264
                 }
265 265
             }
266
-            $vss[] = '(' . implode(', ', $vs) . ')';
266
+            $vss[] = '('.implode(', ', $vs).')';
267 267
         }
268 268
 
269 269
         if (empty($vss)) {
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
             $sqlColumns[] = strpos($column, '(') === false ? $this->db->quoteColumnName($column) : $column;
276 276
         }
277 277
 
278
-        return '(' . implode(', ', $sqlColumns) . ") $operator (" . implode(', ', $vss) . ')';
278
+        return '('.implode(', ', $sqlColumns).") $operator (".implode(', ', $vss).')';
279 279
     }
280 280
 
281 281
     /**
@@ -323,15 +323,15 @@  discard block
 block discarded – undo
323 323
             return $not ? '' : '0=1';
324 324
         }
325 325
         
326
-        $not = ($operator == 'NOT LIKE') ? '(' . $this->operator['NOT'] : false;
326
+        $not = ($operator == 'NOT LIKE') ? '('.$this->operator['NOT'] : false;
327 327
 
328 328
         $parts = [];
329 329
         foreach ($values as $value) {
330 330
             $value = empty($escape) ? $value : strtr($value, $escape);
331
-            $parts[] = $not . '(' . $column .'=*'.$value . '*)' . ($not? ')':'');
331
+            $parts[] = $not.'('.$column.'=*'.$value.'*)'.($not ? ')' : '');
332 332
         }
333 333
 
334
-        return '('.$this->operator[trim($andor)] . implode($parts). ')';
334
+        return '('.$this->operator[trim($andor)].implode($parts).')';
335 335
     }
336 336
 
337 337
     /**
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
             }
117 117
             if ($operand !== '' && !is_numeric($key)) {
118 118
                 $parts[] = $key.'='.$operand;
119
-            }elseif($operand !== ''){
119
+            } elseif($operand !== ''){
120 120
                 $other[] = $operand;
121 121
             }
122 122
         }
Please login to merge, or discard this patch.