@@ -1124,7 +1124,7 @@ public function orWhereRaw($sql, $bindings = [])
1124
1124
/**
1125
1125
* Add a "where like" clause to the query.
1126
1126
*
1127
- * @param string $column
1127
+ * @param \Illuminate\Contracts\Database\Query\Expression| string $column
1128
1128
* @param string $value
1129
1129
* @param bool $caseSensitive
1130
1130
* @param string $boolean
@@ -1149,7 +1149,7 @@ public function whereLike($column, $value, $caseSensitive = false, $boolean = 'a
1149
1149
/**
1150
1150
* Add an "or where like" clause to the query.
1151
1151
*
1152
- * @param string $column
1152
+ * @param \Illuminate\Contracts\Database\Query\Expression| string $column
1153
1153
* @param string $value
1154
1154
* @param bool $caseSensitive
1155
1155
* @return $this
@@ -1162,7 +1162,7 @@ public function orWhereLike($column, $value, $caseSensitive = false)
1162
1162
/**
1163
1163
* Add a "where not like" clause to the query.
1164
1164
*
1165
- * @param string $column
1165
+ * @param \Illuminate\Contracts\Database\Query\Expression| string $column
1166
1166
* @param string $value
1167
1167
* @param bool $caseSensitive
1168
1168
* @param string $boolean
@@ -1176,7 +1176,7 @@ public function whereNotLike($column, $value, $caseSensitive = false, $boolean =
1176
1176
/**
1177
1177
* Add an "or where not like" clause to the query.
1178
1178
*
1179
- * @param string $columns
1179
+ * @param \Illuminate\Contracts\Database\Query\Expression| string $column
1180
1180
* @param string $value
1181
1181
* @param bool $caseSensitive
1182
1182
* @return $this
0 commit comments