/var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Util
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/robmorgan/phinx/src/Phinx/Util/Expression.php (731B)
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);
}
}