Skip to content

Commit

Permalink
fix phpDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
eLFuvo committed Feb 16, 2021
1 parent 04e5c68 commit 53656bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/traits/DateCompareActiveQueryTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trait DateCompareActiveQueryTrait
* @param string $field - table field {{%foo}}.[[bar]]
* @param string|null $date - date for comparing - 2021-02-14 (GMT +3)
* @param string $format - date format for comparing in DB
* @return ActiveQuery
* @return ActiveQuery|DateCompareActiveQueryTrait
*/
public function andCompareDate(
string $operator,
Expand All @@ -50,7 +50,7 @@ public function andCompareDate(
* @param string $field - table field {{%foo}}.[[bar]]
* @param string|null $date - date for comparing - 2021-02-14 (GMT +3)
* @param string $format - date format for comparing in DB
* @return ActiveQuery
* @return ActiveQuery|DateCompareActiveQueryTrait
*/
public function orCompareDate(
string $operator,
Expand All @@ -75,7 +75,7 @@ public function orCompareDate(
* @param string $operator - compare operator: <, <=, =, =>, >
* @param string $field - table field {{%foo}}.[[bar]]
* @param string|null $date - date for comparing - 2021-02-14 (GMT +3)
* @return ActiveQuery
* @return ActiveQuery|DateCompareActiveQueryTrait
*/
public function andCompareTime(
string $operator,
Expand All @@ -91,7 +91,7 @@ public function andCompareTime(
* @param string $operator - compare operator: <, <=, =, =>, >
* @param string $field - table field {{%foo}}.[[bar]]
* @param string|null $date - date for comparing - 2021-02-14 (GMT +3)
* @return ActiveQuery
* @return ActiveQuery|DateCompareActiveQueryTrait
*/
public function orCompareTime(
string $operator,
Expand Down

0 comments on commit 53656bc

Please sign in to comment.