File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -429,8 +429,6 @@ public function select(Select $select): PDOStatement
429429 * @param iterable $data Row data in terms of column-value pairs
430430 *
431431 * @return PDOStatement
432- *
433- * @throws InvalidArgumentException If data type is invalid
434432 */
435433 public function insert (string $ table , iterable $ data ): PDOStatement
436434 {
@@ -470,8 +468,6 @@ public function lastInsertId(?string $name = null): false|string
470468 * @param string $operator The operator to combine multiple conditions with, if the condition is in the array format
471469 *
472470 * @return PDOStatement
473- *
474- * @throws InvalidArgumentException If data type is invalid
475471 */
476472 public function update (
477473 string |array $ table ,
Original file line number Diff line number Diff line change 22
33namespace ipl \Sql ;
44
5- use InvalidArgumentException ;
6-
75use function ipl \Stdlib \arrayval ;
86
97/**
@@ -118,8 +116,6 @@ public function getValues(): array
118116 * @param iterable $values List of values or associative set of column-value pairs
119117 *
120118 * @return $this
121- *
122- * @throws InvalidArgumentException If values type is invalid
123119 */
124120 public function values (iterable $ values ): static
125121 {
Original file line number Diff line number Diff line change 22
33namespace ipl \Sql ;
44
5- use InvalidArgumentException ;
6-
75use function ipl \Stdlib \arrayval ;
86
97/**
@@ -75,8 +73,6 @@ public function getSet(): ?array
7573 * @param iterable $set Associative set of column-value pairs
7674 *
7775 * @return $this
78- *
79- * @throws InvalidArgumentException If set type is invalid
8076 */
8177 public function set (iterable $ set ): static
8278 {
You can’t perform that action at this time.
0 commit comments