From dcd86f9234c7d49c34999bd5c40cf70c62cd033d Mon Sep 17 00:00:00 2001 From: Robert Korulczyk Date: Thu, 14 Jan 2021 11:13:48 +0100 Subject: [PATCH] Avoid double spaces before "and" in phpdoc of virtual properties --- build/controllers/PhpDocController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/controllers/PhpDocController.php b/build/controllers/PhpDocController.php index 03caf15..144413f 100644 --- a/build/controllers/PhpDocController.php +++ b/build/controllers/PhpDocController.php @@ -735,7 +735,7 @@ class PhpDocController extends Controller if (isset($prop['get'], $prop['set'])) { if ($prop['get']['type'] != $prop['set']['type']) { $note = ' Note that the type of this property differs in getter and setter.' - . ' See [[get' . ucfirst($propName) . '()]] ' + . ' See [[get' . ucfirst($propName) . '()]]' . ' and [[set' . ucfirst($propName) . '()]] for details.'; } } elseif (isset($prop['get'])) {