Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Aug 23, 2024
1 parent c5a90a6 commit 026dccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ActiveQueryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface ActiveQueryInterface extends QueryInterface
* @throws InvalidConfigException
* @throws Throwable
*
* @return array[]|ActiveRecordInterface[] All rows of the query result. Each array element is an `array` or
* @return ActiveRecordInterface[]|array[] All rows of the query result. Each array element is an `array` or
* instance of {@see ActiveRecordInterface} representing a row of data, depends on {@see isAsArray()} result.
* Empty array if the query results in nothing.
*/
Expand Down Expand Up @@ -616,7 +616,7 @@ public function getMultiple(): bool;
* @throws ReflectionException
* @throws Throwable
*
* @return array|ActiveRecordInterface|null The first row as an `array` or instance of {@see ActiveRecordInterface}
* @return ActiveRecordInterface|array|null The first row as an `array` or instance of {@see ActiveRecordInterface}
* of the query result, depends on {@see isAsArray()} result. `null` if the query results in nothing.
*/
public function one(): array|ActiveRecordInterface|null;
Expand Down

0 comments on commit 026dccd

Please sign in to comment.