From 2e20fd361ac68e82d7562b964e6a4bca5626748b Mon Sep 17 00:00:00 2001 From: Maksim Spirkov <63721828+max-s-lab@users.noreply.github.com> Date: Thu, 11 Sep 2025 20:18:31 +0500 Subject: [PATCH] Fix `@var` annotation in `ActiveRecordTestTrait` (#20519) --- tests/framework/ar/ActiveRecordTestTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/framework/ar/ActiveRecordTestTrait.php b/tests/framework/ar/ActiveRecordTestTrait.php index 6a176ecce6..07f270afc7 100644 --- a/tests/framework/ar/ActiveRecordTestTrait.php +++ b/tests/framework/ar/ActiveRecordTestTrait.php @@ -1297,7 +1297,7 @@ trait ActiveRecordTestTrait /** @var ActiveRecordInterface $orderClass */ $orderClass = $this->getOrderClass(); - /* @var Order $order */ + /** @var Order $order */ $order = $orderClass::findOne(2); $expensiveItems = $order->expensiveItemsUsingViaWithCallable;