From 0e307a6d0109d01c4cd29e1d00263acc7d0aa45b Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Tue, 26 Apr 2022 10:30:21 +0900 Subject: [PATCH] [BC break] Change default query type "row_list" --- src/Annotation/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Annotation/Query.php b/src/Annotation/Query.php index 751404f..abf312a 100644 --- a/src/Annotation/Query.php +++ b/src/Annotation/Query.php @@ -39,7 +39,7 @@ final class Query */ public $type = 'row_list'; - public function __construct(string $id, string $type = 'row', bool $templated = false) + public function __construct(string $id, string $type = 'row_list', bool $templated = false) { $this->id = $id; $this->templated = $templated;