Last active
October 26, 2020 14:06
-
-
Save mysiar/89bc28496da32b33b359131ce126b3c5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @ORM\Column(type="decimal", precision=7, scale=1) | |
* @var float | |
*/ | |
private $area; | |
public function setArea(float $area) | |
{ | |
$this->area = $area; | |
} | |
public function getArea(): float | |
{ | |
return $this->area; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment