Revert "simplify dual Moo/Moose logic a bit"
[p5sagit/Function-Parameters.git] / lib / Function / Parameters / Info.pm
index fd8a0ec..6c624ff 100644 (file)
@@ -1,10 +1,9 @@
 package Function::Parameters::Info;
 
 use v5.14.0;
-
 use warnings;
 
-our $VERSION = '0.02';
+our $VERSION = '0.04';
 
 # If Moo isn't loaded yet but Moose is, avoid pulling in Moo and fall back to Moose
 my ($Moo, $meta_make_immutable);
@@ -26,7 +25,7 @@ BEGIN {
        BEGIN { $Moo->import; }
        use overload
                fallback => 1,
-               '""' => sub { $_[0]->name },
+               '""'     => sub { $_[0]->name },
        ;
 
        has $_ => (is => 'ro') for qw(name type);
@@ -173,7 +172,7 @@ Lukas Mai, C<< <l.mai at web.de> >>
 
 =head1 COPYRIGHT & LICENSE
 
-Copyright 2012 Lukas Mai.
+Copyright 2013 Lukas Mai.
 
 This program is free software; you can redistribute it and/or modify it
 under the terms of either: the GNU General Public License as published