Knp\Bundle\KnpBundlesBundle\Entity\Bundle::updateScore PHP Method

updateScore() public method

Updates bundle score with given amount of points
public updateScore ( integer $points = 1 )
$points integer
    public function updateScore($points = 1)
    {
        $this->setScore($this->score + $points);
    }