Skip to content

Commit 4ec36ec

Browse files
committed
Fix some docblocks
1 parent a5a0158 commit 4ec36ec

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

src/Illuminate/Database/DBAL/TimestampType.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ class TimestampType extends Type implements PhpDateTimeMappingType
1111
{
1212
/**
1313
* {@inheritdoc}
14-
*
15-
* @return string
1614
*/
1715
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
1816
{
@@ -89,8 +87,6 @@ protected function getSQLitePlatformSQLDeclaration(array $fieldDeclaration)
8987

9088
/**
9189
* {@inheritdoc}
92-
*
93-
* @return string
9490
*/
9591
public function getName()
9692
{

src/Illuminate/Database/Query/Builder.php

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,6 @@ protected function invalidOperator($operator)
847847
* @param mixed $operator
848848
* @param mixed $value
849849
* @return $this
850-
* {@inheritdoc}
851850
*/
852851
public function orWhere($column, $operator = null, $value = null)
853852
{
@@ -1829,9 +1828,14 @@ protected function addDynamic($segment, $connector, $parameters, $index)
18291828
$this->where(Str::snake($segment), '=', $parameters[$index], $bool);
18301829
}
18311830

1832-
/**
1833-
* {@inheritdoc}
1834-
*/
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+
*/
18351839
public function whereFullText($columns, $value, array $options = [], $boolean = 'and')
18361840
{
18371841
$type = 'Fulltext';
@@ -1845,9 +1849,13 @@ public function whereFullText($columns, $value, array $options = [], $boolean =
18451849
return $this;
18461850
}
18471851

1848-
/**
1849-
* {@inheritdoc}
1850-
*/
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+
*/
18511859
public function orWhereFullText($columns, $value, array $options = [])
18521860
{
18531861
return $this->whereFulltext($columns, $value, $options, 'or');

src/Illuminate/Database/Query/Grammars/PostgresGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PostgresGrammar extends Grammar
2222
];
2323

2424
/**
25-
* {@inheritdoc}
25+
* Compile a basic where clause.
2626
*
2727
* @param \Illuminate\Database\Query\Builder $query
2828
* @param array $where

0 commit comments

Comments
 (0)