Skip to content

Commit 26f62b1

Browse files
fix confusing docblock (#34371)
1 parent bf32c44 commit 26f62b1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Illuminate/Database/Eloquent/Builder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ public function forceCreate(array $attributes)
790790
}
791791

792792
/**
793-
* Update a record in the database.
793+
* Update records in the database.
794794
*
795795
* @param array $values
796796
* @return int
@@ -862,7 +862,7 @@ protected function addUpdatedAtColumn(array $values)
862862
}
863863

864864
/**
865-
* Delete a record from the database.
865+
* Delete records from the database.
866866
*
867867
* @return mixed
868868
*/

src/Illuminate/Database/Query/Builder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2770,7 +2770,7 @@ protected function onceWithColumns($columns, $callback)
27702770
}
27712771

27722772
/**
2773-
* Insert a new record into the database.
2773+
* Insert new records into the database.
27742774
*
27752775
* @param array $values
27762776
* @return bool
@@ -2809,7 +2809,7 @@ public function insert(array $values)
28092809
}
28102810

28112811
/**
2812-
* Insert a new record into the database while ignoring errors.
2812+
* Insert new records into the database while ignoring errors.
28132813
*
28142814
* @param array $values
28152815
* @return int
@@ -2869,7 +2869,7 @@ public function insertUsing(array $columns, $query)
28692869
}
28702870

28712871
/**
2872-
* Update a record in the database.
2872+
* Update records in the database.
28732873
*
28742874
* @param array $values
28752875
* @return int
@@ -2950,7 +2950,7 @@ public function decrement($column, $amount = 1, array $extra = [])
29502950
}
29512951

29522952
/**
2953-
* Delete a record from the database.
2953+
* Delete records from the database.
29542954
*
29552955
* @param mixed $id
29562956
* @return int

0 commit comments

Comments
 (0)