value = $value; } /** * @return string Returns the expression */ public function __toString(): string { return $this->value; } /** * @param string $value The expression * @return self */ public static function from(string $value): Expression { return new self($value); } }