App\Models\Score\Best\Model::weight PHP Метод

weight() публичный Метод

public weight ( )
    public function weight()
    {
        if ($this->weight === null) {
            $this->weight = pow(0.95, $this->position());
        }
        return $this->weight;
    }