Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/remove-onepopulate-allpopulate' …
Browse files Browse the repository at this point in the history
…into remove-onepopulate-allpopulate

# Conflicts:
#	src/ActiveQueryInterface.php
  • Loading branch information
Tigrov committed Aug 23, 2024
2 parents e316688 + c609955 commit c5a90a6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ActiveQueryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ interface ActiveQueryInterface extends QueryInterface
/**
* @inheritdoc
*
* @return array[]|ActiveRecordInterface[] 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.
*
* @throws Exception
* @throws InvalidConfigException
* @throws Throwable
*
* @return array[]|ActiveRecordInterface[] 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.
*/
public function all(): array;

Expand Down Expand Up @@ -609,15 +609,15 @@ public function getMultiple(): bool;
/**
* @inheritdoc
*
* @return array|ActiveRecordInterface|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.
*
* @throws Exception
* @throws InvalidArgumentException
* @throws InvalidConfigException
* @throws NotSupportedException
* @throws ReflectionException
* @throws Throwable
*
* @return array|ActiveRecordInterface|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;
}

0 comments on commit c5a90a6

Please sign in to comment.