From c609955b0446f5bfcb3a42a58b790e1ff782cb91 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Fri, 23 Aug 2024 05:35:12 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/ActiveQueryInterface.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/ActiveQueryInterface.php b/src/ActiveQueryInterface.php index 0f81231f7..19790c8c2 100644 --- a/src/ActiveQueryInterface.php +++ b/src/ActiveQueryInterface.php @@ -30,13 +30,12 @@ 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 asArray(), isAsArray()} - * value. Empty array if the query results in nothing. - * * @throws Exception * @throws InvalidConfigException * @throws Throwable + * @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 asArray(), isAsArray()} + * value. Empty array if the query results in nothing. */ public function all(): array; @@ -609,15 +608,14 @@ 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 asArray(), isAsArray()} value. `null` if the query results in nothing. - * * @throws Exception * @throws InvalidArgumentException * @throws InvalidConfigException * @throws NotSupportedException * @throws ReflectionException * @throws Throwable + * @return ActiveRecordInterface|array|null The first row as an `array` or instance of {@see ActiveRecordInterface} + * of the query result, depends on {@see asArray(), isAsArray()} value. `null` if the query results in nothing. */ public function one(): array|ActiveRecordInterface|null; }