The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Fey::SQL::Fragment::Where::SubgroupEnd;

use strict;
use warnings;
use namespace::autoclean;

our $VERSION = '0.43';

use Moose 2.1200;

my $Paren = ')';

sub sql {
    return $Paren;
}

__PACKAGE__->meta()->make_immutable();

1;

# ABSTRACT: Represents the end of a subgroup in a WHERE clause

__END__

=pod

=head1 NAME

Fey::SQL::Fragment::Where::SubgroupEnd - Represents the end of a subgroup in a WHERE clause

=head1 VERSION

version 0.43

=head1 DESCRIPTION

This class represents the end of a subgroup in a WHERE clause

It is intended solely for internal use in L<Fey::SQL> objects, and as
such is not intended for public use.

=head1 BUGS

See L<Fey> for details on how to report bugs.

=head1 AUTHOR

Dave Rolsky <autarch@urth.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2011 - 2015 by Dave Rolsky.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)

=cut