Browse Source

Merge pull request #2553 from xmasterpx/patch-1

Typo fixes for $user->attributes
tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
314cc8ab59
  1. 6
      docs/guide/model.md

6
docs/guide/model.md

@ -331,7 +331,7 @@ For the code above mass assignment will be allowed stsrictly according to `scena
$user = User::find(42);
$data = ['password' => '123'];
$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()`.
@ -345,7 +345,7 @@ $data = [
'hashcode' => 'test',
];
$user->attributes = $data;
print_r($data);
print_r($user->attributes);
```
Will give you the following:
@ -386,7 +386,7 @@ $data = [
'password' => '123',
];
$user->attributes = $data;
print_r($data);
print_r($user->attributes);
```
Will give you the following:

Loading…
Cancel
Save