fix property

This commit is contained in:
Beu 2023-01-17 12:31:50 +01:00
parent 9e8432999b
commit fab4b98787
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ class CheckBoxDesign implements Imageable, Styleable, SubStyleable
public function setStyle($style) public function setStyle($style)
{ {
$this->style = (string)$style; $this->style = (string)$style;
$this->url = null; $this->imageUrl = null;
return $this; return $this;
} }
@ -91,7 +91,7 @@ class CheckBoxDesign implements Imageable, Styleable, SubStyleable
public function setSubStyle($subStyle) public function setSubStyle($subStyle)
{ {
$this->subStyle = (string)$subStyle; $this->subStyle = (string)$subStyle;
$this->url = null; $this->imageUrl = null;
return $this; return $this;
} }