From d826cd364325f36eb2fde51250a1b7dfde577fcc Mon Sep 17 00:00:00 2001 From: Tigrov Date: Fri, 17 May 2024 17:33:45 +0700 Subject: [PATCH] Fix --- src/ActiveQueryTrait.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ActiveQueryTrait.php b/src/ActiveQueryTrait.php index f17f748bc..59845712f 100644 --- a/src/ActiveQueryTrait.php +++ b/src/ActiveQueryTrait.php @@ -73,6 +73,8 @@ public function asArray(bool|null $value = true): static * CustomerQuery->with('orders')->with('country')->all(); * ``` * + * @param array|string ...$with a list of relation names or relation definitions. + * * @return static the query object itself. */ public function with(array|string ...$with): static