Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/Shipment/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ use MooX::Types::MooseLike::Base qw(:all);
use MooX::Types::MooseLike::DateTime qw( DateAndTime );
use namespace::clean;

use Exporter 'import';
our @EXPORT_OK = qw( coerce_datetime );
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Curious why adding this was required?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running test in perl 5.40, I got a few complain about function not exported, therefor not usable.

This seem like a new error came from Perl.


=head1 Class Attributes

=head2 from_address, to_address
Expand Down
Loading