column . ' < ' . $this->expression; } public function toQueryString() { return $this->column . '<' . $this->expression; } public function matches($row) { if (! isset($row->{$this->column})) { return false; } return (string) $row->{$this->column} < (string) $this->expression; } }