Skip to content

Commit f42aaa5

Browse files
committed
wip
1 parent 6c10534 commit f42aaa5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/Illuminate/Database/Eloquent/Concerns/DecoratesQueryBuilder.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,22 @@ public function orWhereJsonLength($column, $operator, $value = null)
595595
return $this->forwardDecoratedCallTo($this->query, __FUNCTION__, func_get_args());
596596
}
597597

598+
/**
599+
* {@inheritdoc}
600+
*/
601+
public function whereFullText($columns, $value, array $options = [], $boolean = 'and')
602+
{
603+
return $this->forwardDecoratedCallTo($this->query, __FUNCTION__, func_get_args());
604+
}
605+
606+
/**
607+
* {@inheritdoc}
608+
*/
609+
public function orWhereFullText($columns, $value, array $options = [])
610+
{
611+
return $this->forwardDecoratedCallTo($this->query, __FUNCTION__, func_get_args());
612+
}
613+
598614
/**
599615
* {@inheritdoc}
600616
*/

0 commit comments

Comments
 (0)