mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
fixed attribute setting bug in hydrator.
This commit is contained in:
parent
c751844aab
commit
8a4db9ff2d
@ -49,8 +49,9 @@ class Hydrator {
|
||||
|
||||
foreach ($results as $result)
|
||||
{
|
||||
$model = new $class((array) $result);
|
||||
$model = new $class;
|
||||
|
||||
$model->attributes = (array) $result;
|
||||
$model->exists = true;
|
||||
|
||||
// -----------------------------------------------------
|
||||
@ -240,8 +241,9 @@ class Hydrator {
|
||||
// -----------------------------------------------------
|
||||
foreach ($children as $child)
|
||||
{
|
||||
$related = new $class((array) $child);
|
||||
$related = new $class;
|
||||
|
||||
$related->attributes = (array) $child;
|
||||
$related->exists = true;
|
||||
|
||||
// -----------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user