Skip to content

Commit

Permalink
Break the PHP linting
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed Nov 1, 2023
1 parent 5dedd7f commit b2d095d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions Classes/Domain/Model/Product/Tea.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -61,11 +61,13 @@ public function setDescription(string $description): void
$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;
}

Expand Down
2 changes: 1 addition & 1 deletion Configuration/Extbase/Persistence/Classes.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
'properties' => [
'ownerUid' => ['fieldName' => 'owner'],
],
],
],,
];

0 comments on commit b2d095d

Please sign in to comment.