aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/Types/DateTime.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Reaction/Types/DateTime.pm')
-rw-r--r--lib/Reaction/Types/DateTime.pm55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/Reaction/Types/DateTime.pm b/lib/Reaction/Types/DateTime.pm
new file mode 100644
index 0000000..60fbabd
--- /dev/null
+++ b/lib/Reaction/Types/DateTime.pm
@@ -0,0 +1,55 @@
+package Reaction::Types::DateTime;
+
+use Moose::Util::TypeConstraints;
+
+use DateTime;
+
+subtype 'DateTime'
+ => as 'Object'
+ => where { $_->isa('DateTime') }
+ => message { "Must be of the form YYYY-MM-DD HH:MM:SS" };
+
+use DateTime::SpanSet;
+
+subtype 'DateTime::SpanSet'
+ => as 'Object'
+ => where { $_->isa('DateTime::SpanSet') };
+
+subtype 'TimeRangeCollection'
+ => as 'ArrayRef';
+
+1;
+
+=head1 NAME
+
+Reaction::Types::DateTime
+
+=head1 DESCRIPTION
+
+=over
+
+=item * DateTime
+
+=item * DateTime::SpanSet
+
+=item * TimeRangeCollection
+
+=back
+
+=head1 SEE ALSO
+
+=over
+
+=item * L<Reaction::Types::Core>
+
+=back
+
+=head1 AUTHORS
+
+See L<Reaction::Class> for authors.
+
+=head1 LICENSE
+
+See L<Reaction::Class> for the license.
+
+=cut