Skip to content

Commit 8b0c18e

Browse files
committed
Fix unused param
1 parent 86d9b2c commit 8b0c18e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DynamoDbModel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public function update(array $attributes = [], array $options = [])
202202

203203
public function updateAsync(array $attributes = [], array $options = [])
204204
{
205-
return $this->fill($attributes)->saveAsync();
205+
return $this->fill($attributes)->saveAsync($options);
206206
}
207207

208208
public static function create(array $attributes = [])

0 commit comments

Comments
 (0)