value = $value; } /** * @return bool */ public function isSuccess(): bool { return $this->value; } /** * @return bool */ public function isFail(): bool { return !$this->value; } /** * @return int */ public function getWeight(): int { return $this->value ? 0 : 1; } }