partkeepr

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

commit b5d203ee1d673519b80ee725d8df9aff51a71fc2
parent d0db3f36ede5c547a270553f89495ef428e9a88b
Author: Felicitus <felicitus@felicitus.org>
Date:   Fri,  4 Sep 2015 18:56:18 +0200

Renamed getters and setters for needsReview and partCondition to match the property names

Diffstat:
Msrc/PartKeepr/PartBundle/Entity/Part.php | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/PartKeepr/PartBundle/Entity/Part.php b/src/PartKeepr/PartBundle/Entity/Part.php @@ -227,7 +227,7 @@ class Part extends BaseEntity $this->images = new ArrayCollection(); $this->attachments = new ArrayCollection(); $this->setCreateDate(new \DateTime()); - $this->setReviewFlag(false); + $this->setNeedsReview(false); } /** @@ -330,7 +330,7 @@ class Part extends BaseEntity * * @param boolean $bReview True if the part needs review, false otherwise */ - public function setReviewFlag($bReview) + public function setNeedsReview($bReview) { $this->needsReview = $bReview; } @@ -340,7 +340,7 @@ class Part extends BaseEntity * * @return boolean True if the part needs review, false otherwise */ - public function getReviewFlag() + public function getNeedsReview() { return $this->needsReview; } @@ -350,7 +350,7 @@ class Part extends BaseEntity * * @param string $partCondition The part's condition */ - public function setCondition($partCondition) + public function setPartCondition($partCondition) { $this->partCondition = $partCondition; } @@ -360,7 +360,7 @@ class Part extends BaseEntity * * @return string The part condition */ - public function getCondition() + public function getPartCondition() { return $this->partCondition; }