Skip to content

Commit 92463ff

Browse files
authored
fix(rule): add int to allowed type of argument in DatabaseRule.php (#56199)
1 parent 525d99e commit 92463ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Validation/Rules/DatabaseRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function where($column, $value = null)
111111
* Set a "where not" constraint on the query.
112112
*
113113
* @param string $column
114-
* @param \Illuminate\Contracts\Support\Arrayable|\UnitEnum|array|string $value
114+
* @param \Illuminate\Contracts\Support\Arrayable|\UnitEnum|array|string|int $value
115115
* @return $this
116116
*/
117117
public function whereNot($column, $value)

0 commit comments

Comments
 (0)