@@ -120,7 +120,7 @@ discard block |
||
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 |
||
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 |
||
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) { |
@@ -108,7 +108,7 @@ discard block |
||
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 |
||
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 | /** |
@@ -149,7 +149,7 @@ discard block |
||
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 |
||
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 |
@@ -98,7 +98,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | /** |
@@ -91,11 +91,11 @@ discard block |
||
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 |
||
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); |