-
-
Save wcravens/1908098 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sub set_config { | |
my $self = shift; | |
my $config = My::Config->new; | |
$self->app->log->debug( $config->test ); #yay | |
$self->helper( config => sub { $config } ); | |
$self->log->debug( $self->config->test ); # Can't call method "test" on unblessed reference | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment