@@ -76,7 +76,7 @@ |
||
| 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 | { |
@@ -166,7 +166,7 @@ |
||
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | $values = $this->getDirtyAttributes($attributes); |
| 169 | - $params =[ |
|
| 169 | + $params = [ |
|
| 170 | 170 | 'ou=teste,DC=adteste,DC=ifnmg,DC=edu,DC=br', |
| 171 | 171 | $values |
| 172 | 172 | ]; |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | |
| 10 | 10 | use Yii; |
| 11 | 11 | use yii\base\Component; |
| 12 | -use yii\base\NotSupportedException; |
|
| 13 | 12 | |
| 14 | 13 | /** |
| 15 | 14 | * Command represents a SQL statement to be executed against a database. |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | $params = []; |
| 170 | 170 | foreach ($this->params as $name => $value) { |
| 171 | 171 | if (is_string($name) && strncmp(':', $name, 1)) { |
| 172 | - $name = ':' . $name; |
|
| 172 | + $name = ':'.$name; |
|
| 173 | 173 | } |
| 174 | 174 | if (is_string($value)) { |
| 175 | 175 | $params[$name] = $this->db->quoteValue($value); |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | } |
| 187 | 187 | $sql = ''; |
| 188 | 188 | foreach (explode('?', $this->_sql) as $i => $part) { |
| 189 | - $sql .= (isset($params[$i]) ? $params[$i] : '') . $part; |
|
| 189 | + $sql .= (isset($params[$i]) ? $params[$i] : '').$part; |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | return $sql; |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | $this->pdoStatement = $pdo->prepare($sql); |
| 226 | 226 | $this->bindPendingParams(); |
| 227 | 227 | } catch (\Exception $e) { |
| 228 | - $message = $e->getMessage() . "\nFailed to prepare SQL: $sql"; |
|
| 228 | + $message = $e->getMessage()."\nFailed to prepare SQL: $sql"; |
|
| 229 | 229 | $errorInfo = $e instanceof \PDOException ? $e->errorInfo : null; |
| 230 | 230 | throw new Exception($message, $errorInfo, (int) $e->getCode(), $e); |
| 231 | 231 | } |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | } else { |
| 268 | 268 | $this->pdoStatement->bindParam($name, $value, $dataType, $length, $driverOptions); |
| 269 | 269 | } |
| 270 | - $this->params[$name] =& $value; |
|
| 270 | + $this->params[$name] = & $value; |
|
| 271 | 271 | |
| 272 | 272 | return $this; |
| 273 | 273 | } |
@@ -189,7 +189,7 @@ |
||
| 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 | { |
@@ -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) { |
@@ -111,7 +111,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | { |
@@ -105,14 +105,14 @@ discard block |
||
| 105 | 105 | return ldap_modify_batch($this->resource, $dn, $values); |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - /** |
|
| 109 | - * Add attribute values to current attributes. |
|
| 110 | - * |
|
| 111 | - * @param string $dn |
|
| 112 | - * @param array $entry |
|
| 113 | - * |
|
| 114 | - * @return mixed |
|
| 115 | - */ |
|
| 108 | + /** |
|
| 109 | + * Add attribute values to current attributes. |
|
| 110 | + * |
|
| 111 | + * @param string $dn |
|
| 112 | + * @param array $entry |
|
| 113 | + * |
|
| 114 | + * @return mixed |
|
| 115 | + */ |
|
| 116 | 116 | public function modAdd($dn, array $entry) |
| 117 | 117 | { |
| 118 | 118 | return ldap_mod_add($this->resource, $dn, $entry); |
@@ -249,12 +249,12 @@ discard block |
||
| 249 | 249 | return ldap_start_tls($this->resource); |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - /** |
|
| 253 | - * Returns the error number of the last command |
|
| 254 | - * executed on the current connection. |
|
| 255 | - * |
|
| 256 | - * @return mixed |
|
| 257 | - */ |
|
| 252 | + /** |
|
| 253 | + * Returns the error number of the last command |
|
| 254 | + * executed on the current connection. |
|
| 255 | + * |
|
| 256 | + * @return mixed |
|
| 257 | + */ |
|
| 258 | 258 | public function getErrNo() |
| 259 | 259 | { |
| 260 | 260 | return ldap_errno($this->resource); |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | protected $isEnabled = true; |
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | - * @param LdapConnectionInterface $connection |
|
| 42 | + * @param ConnectionInterface $connection |
|
| 43 | 43 | */ |
| 44 | 44 | public function __construct(ConnectionInterface $connection) |
| 45 | 45 | { |
@@ -339,7 +339,7 @@ |
||
| 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 |
@@ -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 | /** |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | /** |
| 29 | 29 | * Sets the current LDAP attribute schema. |
| 30 | 30 | * |
| 31 | - * @param SchemaInterface $schema |
|
| 31 | + * @param \chrmorandi\ldap\schemas\ActiveDirectory $schema |
|
| 32 | 32 | */ |
| 33 | 33 | public static function set(SchemaInterface $schema) |
| 34 | 34 | { |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | /** |
| 39 | 39 | * Returns a new instance of the default schema. |
| 40 | 40 | * |
| 41 | - * @return SchemaInterface |
|
| 41 | + * @return \chrmorandi\ldap\schemas\ActiveDirectory |
|
| 42 | 42 | */ |
| 43 | 43 | public static function getDefault() |
| 44 | 44 | { |
@@ -62,12 +62,12 @@ discard block |
||
| 62 | 62 | $value = preg_match('/^(\\\[0-9a-fA-F]{2})+$/', (string) $value) ? $value : ldap_escape($value, $ignore, $flags); |
| 63 | 63 | |
| 64 | 64 | // Per RFC 4514, leading/trailing spaces should be encoded in DNs, as well as carriage returns. |
| 65 | - if ((int)$flags & LDAP_ESCAPE_DN) { |
|
| 65 | + if ((int) $flags & LDAP_ESCAPE_DN) { |
|
| 66 | 66 | if (!empty($value) && $value[0] === ' ') { |
| 67 | - $value = '\\20' . substr($value, 1); |
|
| 67 | + $value = '\\20'.substr($value, 1); |
|
| 68 | 68 | } |
| 69 | 69 | if (!empty($value) && $value[strlen($value) - 1] === ' ') { |
| 70 | - $value = substr($value, 0, -1) . '\\20'; |
|
| 70 | + $value = substr($value, 0, -1).'\\20'; |
|
| 71 | 71 | } |
| 72 | 72 | // Only carriage returns seem to be valid, not line feeds (per testing of AD anyway). |
| 73 | 73 | $value = str_replace("\r", '\0d', $value); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | */ |
| 85 | 85 | public static function unescapeValue($value) |
| 86 | 86 | { |
| 87 | - $callback = function ($matches) { |
|
| 87 | + $callback = function($matches) { |
|
| 88 | 88 | return chr(hexdec($matches[1])); |
| 89 | 89 | }; |
| 90 | 90 | |
@@ -11,8 +11,8 @@ |
||
| 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> |