Mod setArray macro for nested values

This commit is contained in:
philipp lang 2024-10-24 22:39:45 +02:00
parent de4b5452ce
commit 447630e210
1 changed files with 10 additions and 3 deletions

View File

@ -174,10 +174,17 @@ class TestCase extends BaseTestCase
return $this;
});
Testable::macro('setArray', function ($attributes) {
Testable::macro('setArray', function ($attributes, $value = null) {
$self = $this;
foreach ($attributes as $key => $value) {
$self = $this->set($key, $value);
if ($value === null) {
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;