From 1a5b7c40c6612cd70c96c054ef12ca42d6feb3fb Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sat, 22 Apr 2023 18:40:06 +0200 Subject: [PATCH] [CLEANUP] Reorder the type annotations for better readability (#819) Apart from this small polish, there is nothing to change in order to be consistent with the latest decision on type annotations as described here: https://decisions.typo3.org/t/phpstan-specific-phpdoc-annotations-in-the-core-code-base/807 Fixes #794 --- Classes/Domain/Model/Product/Tea.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Domain/Model/Product/Tea.php b/Classes/Domain/Model/Product/Tea.php index 66bd819..69134eb 100644 --- a/Classes/Domain/Model/Product/Tea.php +++ b/Classes/Domain/Model/Product/Tea.php @@ -19,8 +19,8 @@ class Tea extends AbstractEntity protected string $description = ''; /** - * @phpstan-var FileReference|LazyLoadingProxy|null * @var FileReference|null + * @phpstan-var FileReference|LazyLoadingProxy|null * @Lazy */ protected $image;