Destiny\Grimoire::gPoints PHP Method

gPoints() protected method

protected gPoints ( )
    protected function gPoints()
    {
        $points = 0;
        $this->cards->filter(function (Card $card) use(&$points) {
            $points += $card->totalPoints;
        });
        return $points;
    }