Implements PHP magic __toString method to convert the conditions to string.
string A string version of the conditions.
public function __toString() {
// If the caller forgot to call compile() first, refuse to run.
if ($this->changed) {
return '';
}
return $this->stringVersion;
}