- or download this
my $someframework = SomeFramework->new(parameter => 'value');
- or download this
has 'logger' => (
is => 'ro',
...
SomeFramework::Logger->new(someframework => $self);
}
- or download this
has 'someframework' => (
is => 'ro',
...
writer => '_set_someframework',
required => 1
);
- or download this
my $configuration =
$self->
get_someframework->
get_configuration->
get_blah_blah;
- or download this
my $configuration =
$self->
...
get_somecomponent->
get_configuration->
get_blah_blah;
- or download this
my $configuration = $self->sc->ss->sf->conf->blah_blah;
- or download this
has 'some_framework' => (
is => 'ro',
...
writer => '_set_someframework',
required => 1
);
- or download this
has 'some_framework' => (
is => 'ro',
...
required => 1,
alias => 'sf'
);
- or download this
has 'api' => (
is => 'ro',
...
required => 1,
alias => 'api'
);
- or download this
has 'api' => (
is => 'ro',
...
# returns the reference to its own object
}
);