Skip to content

Commit d464ff5

Browse files
committed
Apply fixes from StyleCI
1 parent 4ec36ec commit d464ff5

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/Illuminate/Database/Query/Builder.php

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1828,14 +1828,14 @@ protected function addDynamic($segment, $connector, $parameters, $index)
18281828
$this->where(Str::snake($segment), '=', $parameters[$index], $bool);
18291829
}
18301830

1831-
/**
1832-
* Add a "where fulltext" clause to the query.
1833-
*
1834-
* @param string|string[] $columns
1835-
* @param string $value
1836-
* @param string $boolean
1837-
* @return $this
1838-
*/
1831+
/**
1832+
* Add a "where fulltext" clause to the query.
1833+
*
1834+
* @param string|string[] $columns
1835+
* @param string $value
1836+
* @param string $boolean
1837+
* @return $this
1838+
*/
18391839
public function whereFullText($columns, $value, array $options = [], $boolean = 'and')
18401840
{
18411841
$type = 'Fulltext';
@@ -1849,13 +1849,13 @@ public function whereFullText($columns, $value, array $options = [], $boolean =
18491849
return $this;
18501850
}
18511851

1852-
/**
1853-
* Add a "or where fulltext" clause to the query.
1854-
*
1855-
* @param string|string[] $columns
1856-
* @param string $value
1857-
* @return $this
1858-
*/
1852+
/**
1853+
* Add a "or where fulltext" clause to the query.
1854+
*
1855+
* @param string|string[] $columns
1856+
* @param string $value
1857+
* @return $this
1858+
*/
18591859
public function orWhereFullText($columns, $value, array $options = [])
18601860
{
18611861
return $this->whereFulltext($columns, $value, $options, 'or');

0 commit comments

Comments
 (0)