File: BuildArgs.pm

package info (click to toggle)
libsql-translator-perl 0.11024-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,572 kB
  • sloc: perl: 67,471; sql: 3,809; xml: 258; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 675 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package SQL::Translator::Role::BuildArgs;

=head1 NAME

SQL::Translator::Role::BuildArgs - Remove undefined constructor arguments

=head1 SYNOPSIS

    package Foo;
    use Moo;
    with qw(SQL::Translator::Role::BuildArgs);

=head1 DESCRIPTION

This L<Moo::Role> wraps BUILDARGS to remove C<undef> constructor
arguments for backwards compatibility with the old L<Class::Base>-based
L<SQL::Translator::Schema::Object>.

=cut

use Moo::Role;

around BUILDARGS => sub {
    my $orig = shift;
    my $self = shift;
    my $args = $self->$orig(@_);

    foreach my $arg (keys %{$args}) {
        delete $args->{$arg} unless defined($args->{$arg});
    }
    return $args;
};

1;