mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-19 16:01:57 +08:00
Merge pull request #2553 from xmasterpx/patch-1
Typo fixes for $user->attributes
This commit is contained in:
@@ -331,7 +331,7 @@ For the code above mass assignment will be allowed stsrictly according to `scena
|
|||||||
$user = User::find(42);
|
$user = User::find(42);
|
||||||
$data = ['password' => '123'];
|
$data = ['password' => '123'];
|
||||||
$user->attributes = $data;
|
$user->attributes = $data;
|
||||||
print_r($data);
|
print_r($user->attributes);
|
||||||
```
|
```
|
||||||
|
|
||||||
Will give you empty array because there's no default scenario defined in our `scenarios()`.
|
Will give you empty array because there's no default scenario defined in our `scenarios()`.
|
||||||
@@ -345,7 +345,7 @@ $data = [
|
|||||||
'hashcode' => 'test',
|
'hashcode' => 'test',
|
||||||
];
|
];
|
||||||
$user->attributes = $data;
|
$user->attributes = $data;
|
||||||
print_r($data);
|
print_r($user->attributes);
|
||||||
```
|
```
|
||||||
|
|
||||||
Will give you the following:
|
Will give you the following:
|
||||||
@@ -386,7 +386,7 @@ $data = [
|
|||||||
'password' => '123',
|
'password' => '123',
|
||||||
];
|
];
|
||||||
$user->attributes = $data;
|
$user->attributes = $data;
|
||||||
print_r($data);
|
print_r($user->attributes);
|
||||||
```
|
```
|
||||||
|
|
||||||
Will give you the following:
|
Will give you the following:
|
||||||
|
|||||||
Reference in New Issue
Block a user