mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

Break the PHP linting

This commit is contained in:
Oliver Klee 2023-11-01 16:11:13 +01:00
parent 3eb190d584
commit 65a4738b6f
2 changed files with 11 additions and 9 deletions

View file

@ -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;
}

View file

@ -7,5 +7,5 @@ return [
'properties' => [
'ownerUid' => ['fieldName' => 'owner'],
],
],
],,
];