Optimized doc comment for join methods.

* fixed issue #4072

* Format

Co-authored-by: 李铭昕 <715557344@qq.com>
This commit is contained in:
lysice 2021-10-20 09:32:34 +08:00 committed by GitHub
parent e21428cf09
commit cde03d92db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -480,7 +480,7 @@ class Builder
* Add a "join where" clause to the query.
*
* @param string $table
* @param string $first
* @param \Closure|string $first
* @param string $operator
* @param string $second
* @return \Hyperf\Database\Query\Builder|static
@ -495,7 +495,7 @@ class Builder
*
* @param \Closure|\Hyperf\Database\Query\Builder|string $query
* @param string $as
* @param string $first
* @param \Closure|string $first
* @param null|string $operator
* @param null|string $second
* @return \Hyperf\Database\Query\Builder|static
@ -523,7 +523,7 @@ class Builder
* Add a "right join where" clause to the query.
*
* @param string $table
* @param string $first
* @param \Closure|string $first
* @param string $operator
* @param string $second
* @return \Hyperf\Database\Query\Builder|static
@ -538,7 +538,7 @@ class Builder
*
* @param \Closure|\Hyperf\Database\Query\Builder|string $query
* @param string $as
* @param string $first
* @param \Closure|string $first
* @param null|string $operator
* @param null|string $second
* @return \Hyperf\Database\Query\Builder|static