Destiny\Grimoire\Rank::__construct PHP Method

__construct() public method

public __construct ( Statistic $statistic, array $properties )
$statistic Statistic
$properties array
    public function __construct(Statistic $statistic, array $properties)
    {
        parent::__construct($statistic->grimoire, $properties);
        $this->statistic = $statistic;
        $this->inProgress = $statistic->value >= $this->offset && $statistic->value < $this->threshold;
        $this->completed = $statistic->value >= $this->threshold;
    }