From 90a256f49e4be917556fa94f9988546b1d6d07f3 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 1 Nov 2022 21:44:37 +0100 Subject: [PATCH] [CLEANUP] Use short class references in the domain model annotations (#669) Starting with TYPO3 10LTS, it is no longer necessary to use FQCNs for domain property annotations for Extbase. --- Classes/Domain/Model/Product/Tea.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Domain/Model/Product/Tea.php b/Classes/Domain/Model/Product/Tea.php index f98aad6..66bd819 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 \TYPO3\CMS\Extbase\Domain\Model\FileReference|LazyLoadingProxy|null - * @var \TYPO3\CMS\Extbase\Domain\Model\FileReference|null + * @phpstan-var FileReference|LazyLoadingProxy|null + * @var FileReference|null * @Lazy */ protected $image;