Skip to content

Commit

Permalink
Remove assignation to unexistant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
trecouvr committed Jan 16, 2014
1 parent 94ca7ce commit 21f1aeb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Payutc/Bom/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -524,12 +524,10 @@ public static function decCreditById($usr_id, $val) {

public function incCredit($val) {
$this::incCreditById($this->getId(), $val);
$this->credit += $val;
}

public function decCredit($val) {
$this::decCreditById($this->getId(), $val);
$this->credit -= $val;
}

public static function getUserFromCas($ticket, $service) {
Expand Down

0 comments on commit 21f1aeb

Please sign in to comment.