Skip to content

Commit

Permalink
[Core] allow multiple store-values - stan
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Nov 5, 2024
1 parent 2528a85 commit 27c34c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/CoreShop/Component/Core/Model/ProductStoreValues.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ public function setId(int $id)
$this->id = $id;
}

public function getFieldName(): ?string
public function getFieldName()
{
return $this->fieldName;
}

public function setFieldName(?string $fieldName): void
public function setFieldName(?string $fieldName)
{
$this->fieldName = $fieldName;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ interface ProductStoreValuesInterface extends ResourceInterface, StoreAwareInter
*/
public function getFieldName();

/**
* @return string
*/
public function setFieldName(string $fieldName);

/**
Expand Down

0 comments on commit 27c34c7

Please sign in to comment.