From 9f6143c129e45a4544a65d8977ddc920b349b4c1 Mon Sep 17 00:00:00 2001 From: Dave Long Date: Thu, 27 Jun 2024 08:11:12 +0100 Subject: [PATCH] Issue #3453068 by kalpanajaiswal, BenStallings: Sort::fields property is incorrectly defined as a string --- core/modules/jsonapi/src/Query/Sort.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/jsonapi/src/Query/Sort.php b/core/modules/jsonapi/src/Query/Sort.php index 3f01638e916..df85e06a863 100644 --- a/core/modules/jsonapi/src/Query/Sort.php +++ b/core/modules/jsonapi/src/Query/Sort.php @@ -47,7 +47,7 @@ class Sort { /** * The fields on which to sort. * - * @var string + * @var array */ protected $fields;