Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/xampp/perl/vendor/lib/MooseX/LazyRequire/Meta/Attribute/Trait/ |
package MooseX::LazyRequire::Meta::Attribute::Trait::LazyRequire; BEGIN { $MooseX::LazyRequire::Meta::Attribute::Trait::LazyRequire::AUTHORITY = 'cpan:FLORA'; } { $MooseX::LazyRequire::Meta::Attribute::Trait::LazyRequire::VERSION = '0.09'; } # ABSTRACT: Attribute trait to make getters fail on unset attributes use Moose::Role; use Carp qw/cluck/; use namespace::autoclean; has lazy_required => ( is => 'ro', isa => 'Bool', default => 0, ); after _process_options => sub { my ($class, $name, $options) = @_; if (exists $options->{lazy_require}) { cluck "deprecated option 'lazy_require' used. use 'lazy_required' instead."; $options->{lazy_required} = delete $options->{lazy_require}; } return unless $options->{lazy_required}; # lazy_required + default or builder doesn't make sense because if there # is a default/builder, the reader will always be able to return a value. Moose->throw_error( "You may not use both a builder or a default and lazy_required for one attribute ($name)", data => $options, ) if $options->{builder} or $options->{default}; $options->{ lazy } = 1; $options->{ required } = 1; $options->{ default } = sub { confess "Attribute $name must be provided before calling reader" }; }; package # hide Moose::Meta::Attribute::Custom::Trait::LazyRequire; sub register_implementation { 'MooseX::LazyRequire::Meta::Attribute::Trait::LazyRequire' } 1; __END__ =pod =encoding utf-8 =head1 NAME MooseX::LazyRequire::Meta::Attribute::Trait::LazyRequire - Attribute trait to make getters fail on unset attributes =head1 AUTHORS =over 4 =item * Florian Ragwitz <rafl@debian.org> =item * Dave Rolsky <autarch@urth.org> =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Florian Ragwitz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut