Mod setArray macro for nested values
This commit is contained in:
parent
49f972bc1b
commit
3bc038c4c1
|
@ -174,10 +174,17 @@ class TestCase extends BaseTestCase
|
||||||
return $this;
|
return $this;
|
||||||
});
|
});
|
||||||
|
|
||||||
Testable::macro('setArray', function ($attributes) {
|
Testable::macro('setArray', function ($attributes, $value = null) {
|
||||||
$self = $this;
|
$self = $this;
|
||||||
foreach ($attributes as $key => $value) {
|
if ($value === null) {
|
||||||
$self = $this->set($key, $value);
|
foreach ($attributes as $key => $value) {
|
||||||
|
$self = $this->set($key, $value);
|
||||||
|
}
|
||||||
|
return $self;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($value as $key => $v) {
|
||||||
|
$self = $self->set($attributes . '.' . $key, $v);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
|
|
Loading…
Reference in New Issue