From e13738b48c4891e7b8cb989c335bab4ecb645366 Mon Sep 17 00:00:00 2001 From: Neil Davies Date: Wed, 4 Sep 2024 14:30:19 +0100 Subject: [PATCH] style: add space before return type in method signature --- src/components/BaseDataset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BaseDataset.php b/src/components/BaseDataset.php index 707fe87..f374ee7 100644 --- a/src/components/BaseDataset.php +++ b/src/components/BaseDataset.php @@ -255,7 +255,7 @@ public function getJsonDataset(): string * * @return string The JSON-encoded labels. */ - public function getJsonLabels():string + public function getJsonLabels(): string { return Json::encode($this->getLabels()); }