package Fey::SQL::Fragment::Where::SubgroupEnd; BEGIN { $Fey::SQL::Fragment::Where::SubgroupEnd::VERSION = '0.40'; } use strict; use warnings; use namespace::autoclean; use Moose; my $Paren = ')'; sub sql { return $Paren; } __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: Represents the end of a subgroup in a WHERE clause =pod =head1 NAME Fey::SQL::Fragment::Where::SubgroupEnd - Represents the end of a subgroup in a WHERE clause =head1 VERSION version 0.40 =head1 DESCRIPTION This class represents the end of a subgroup in a WHERE clause It is intended solely for internal use in L objects, and as such is not intended for public use. =head1 BUGS See L for details on how to report bugs. =head1 AUTHOR Dave Rolsky =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2011 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut __END__