Skip to content

Commit 5beba99

Browse files
committed
docblock
1 parent 5496c12 commit 5beba99

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/Illuminate/Database/Eloquent/Builder.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,14 @@ public function findOr($id, $columns = ['*'], ?Closure $callback = null)
589589
return $callback();
590590
}
591591

592-
public function insertWithCasts(array $values)
592+
/**
593+
* Insert a number of records, merging in default attributes,
594+
* adding timestamps, and converting casts to raw values.
595+
*
596+
* @param list<array<string, mixed>> $values
597+
* @return bool
598+
*/
599+
public function insertWithCasts($values)
593600
{
594601
if (empty($values)) {
595602
return true;

0 commit comments

Comments
 (0)