PHPWarrior\Profile::epic_score_with_grade PHP Method

epic_score_with_grade() public method

Epic score with grade.
public epic_score_with_grade ( ) : string
return string
    public function epic_score_with_grade()
    {
        if ($this->average_grade) {
            $letter = Level::grade_letter($this->average_grade);
            return "{$this->epic_score} ({$letter})";
        } else {
            return epic_score;
        }
    }