partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 1dc4dc2a7689c19a62951dcc0fd042353035f888
parent dbbadb4b535c63fd03eb2cc1351240ef0bffde6e
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon, 22 Jun 2015 13:48:52 +0200

Added setPrefixes and made prefixes public for testing

Diffstat:
Msrc/PartKeepr/UnitBundle/Entity/Unit.php | 15++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/src/PartKeepr/UnitBundle/Entity/Unit.php b/src/PartKeepr/UnitBundle/Entity/Unit.php @@ -35,6 +35,9 @@ class Unit { return $this->id; } + public function setId ($id) { + $this->id = $id; + } /** * The name of the unit (e.g. Volts, Ampere, Farad, Metres) * @ORM\Column(type="string") @@ -60,9 +63,10 @@ class Unit { * inverseJoinColumns={@ORM\JoinColumn(name="siprefix_id", referencedColumnName="id")} * ) * @Groups({"default"}) + * * @var ArrayCollection */ - private $prefixes; + public $prefixes; /** * Creates a new Unit. @@ -102,12 +106,17 @@ class Unit { public function getSymbol () { return $this->symbol; } - + /** - * Returns the si-prefix list for this unit + * Returns the si-prefix list for this unit * @return array An array of SiPrefix objects */ public function getPrefixes () { return $this->prefixes; } + + public function setPrefixes ($array) { + var_dump($array); + $this->prefixes = $array; + } } \ No newline at end of file