Formats message including line and column information.
string $code Source code associated with the error, for calculation of the columns:
string Formatted message
public function getMessageWithColumnInfo(string $code) : string { return sprintf('%s from %d:%d to %d:%d', $this->getRawMessage(), $this->getStartLine(), $this->getStartColumn($code), $this->getEndLine(), $this->getEndColumn($code)); }