diff --git a/Classes/Domain/Model/Product/Tea.php b/Classes/Domain/Model/Product/Tea.php index bc5f533..15fde31 100644 --- a/Classes/Domain/Model/Product/Tea.php +++ b/Classes/Domain/Model/Product/Tea.php @@ -25,13 +25,13 @@ class Tea extends AbstractEntity */ protected string $description; - private string $internalNotes; + private string $internalNotes; - /** - * @var FileReference|null - * @phpstan-var FileReference|LazyLoadingProxy|null - * @Extbase\ORM\Lazy - */ + /** + * @var FileReference|null + * @phpstan-var FileReference|LazyLoadingProxy|null + * @Extbase\ORM\Lazy + */ protected $image; // Note: We cannot use `@var` for the more specific type annotation here as this confuses the Extbase type mapper. @@ -61,11 +61,13 @@ class Tea extends AbstractEntity $this->description = $description; } - public function getInternalNotes(): string { + public function getInternalNotes(): string + { return $this->internalNotes; } - public function setInternalNotes(string $notes): void { + public function setInternalNotes(string $notes): void + { $this->internalNote = $notes; } diff --git a/Configuration/Extbase/Persistence/Classes.php b/Configuration/Extbase/Persistence/Classes.php index 6b92623..8a7b447 100644 --- a/Configuration/Extbase/Persistence/Classes.php +++ b/Configuration/Extbase/Persistence/Classes.php @@ -7,5 +7,5 @@ return [ 'properties' => [ 'ownerUid' => ['fieldName' => 'owner'], ], - ], + ],, ];