GraphAware\Reco4PHP\Result\Recommendation::getScoreOrCreate PHP Method

getScoreOrCreate() private method

private getScoreOrCreate ( $name )
    private function getScoreOrCreate($name)
    {
        if (!array_key_exists($name, $this->scores)) {
            $this->scores[$name] = new Score($name);
        }
        return $this->scores[$name];
    }