@@ -1379,7 +1379,7 @@ public function orWhereNotNull($column)
1379
1379
* Add a "where date" statement to the query.
1380
1380
*
1381
1381
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1382
- * @param string $operator
1382
+ * @param \DateTimeInterface| string|null $operator
1383
1383
* @param \DateTimeInterface|string|null $value
1384
1384
* @param string $boolean
1385
1385
* @return $this
@@ -1403,7 +1403,7 @@ public function whereDate($column, $operator, $value = null, $boolean = 'and')
1403
1403
* Add an "or where date" statement to the query.
1404
1404
*
1405
1405
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1406
- * @param string $operator
1406
+ * @param \DateTimeInterface| string|null $operator
1407
1407
* @param \DateTimeInterface|string|null $value
1408
1408
* @return $this
1409
1409
*/
@@ -1420,7 +1420,7 @@ public function orWhereDate($column, $operator, $value = null)
1420
1420
* Add a "where time" statement to the query.
1421
1421
*
1422
1422
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1423
- * @param string $operator
1423
+ * @param \DateTimeInterface| string|null $operator
1424
1424
* @param \DateTimeInterface|string|null $value
1425
1425
* @param string $boolean
1426
1426
* @return $this
@@ -1444,7 +1444,7 @@ public function whereTime($column, $operator, $value = null, $boolean = 'and')
1444
1444
* Add an "or where time" statement to the query.
1445
1445
*
1446
1446
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1447
- * @param string $operator
1447
+ * @param \DateTimeInterface| string|null $operator
1448
1448
* @param \DateTimeInterface|string|null $value
1449
1449
* @return $this
1450
1450
*/
@@ -1461,7 +1461,7 @@ public function orWhereTime($column, $operator, $value = null)
1461
1461
* Add a "where day" statement to the query.
1462
1462
*
1463
1463
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1464
- * @param string $operator
1464
+ * @param \DateTimeInterface| string|int|null $operator
1465
1465
* @param \DateTimeInterface|string|int|null $value
1466
1466
* @param string $boolean
1467
1467
* @return $this
@@ -1489,7 +1489,7 @@ public function whereDay($column, $operator, $value = null, $boolean = 'and')
1489
1489
* Add an "or where day" statement to the query.
1490
1490
*
1491
1491
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1492
- * @param string $operator
1492
+ * @param \DateTimeInterface| string|int|null $operator
1493
1493
* @param \DateTimeInterface|string|int|null $value
1494
1494
* @return $this
1495
1495
*/
@@ -1506,7 +1506,7 @@ public function orWhereDay($column, $operator, $value = null)
1506
1506
* Add a "where month" statement to the query.
1507
1507
*
1508
1508
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1509
- * @param string $operator
1509
+ * @param \DateTimeInterface| string|int|null $operator
1510
1510
* @param \DateTimeInterface|string|int|null $value
1511
1511
* @param string $boolean
1512
1512
* @return $this
@@ -1534,7 +1534,7 @@ public function whereMonth($column, $operator, $value = null, $boolean = 'and')
1534
1534
* Add an "or where month" statement to the query.
1535
1535
*
1536
1536
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1537
- * @param string $operator
1537
+ * @param \DateTimeInterface| string|int|null $operator
1538
1538
* @param \DateTimeInterface|string|int|null $value
1539
1539
* @return $this
1540
1540
*/
@@ -1551,7 +1551,7 @@ public function orWhereMonth($column, $operator, $value = null)
1551
1551
* Add a "where year" statement to the query.
1552
1552
*
1553
1553
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1554
- * @param string $operator
1554
+ * @param \DateTimeInterface| string|int|null $operator
1555
1555
* @param \DateTimeInterface|string|int|null $value
1556
1556
* @param string $boolean
1557
1557
* @return $this
@@ -1575,7 +1575,7 @@ public function whereYear($column, $operator, $value = null, $boolean = 'and')
1575
1575
* Add an "or where year" statement to the query.
1576
1576
*
1577
1577
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
1578
- * @param string $operator
1578
+ * @param \DateTimeInterface| string|int|null $operator
1579
1579
* @param \DateTimeInterface|string|int|null $value
1580
1580
* @return $this
1581
1581
*/
0 commit comments