my $foo = One->new_from_config('myconfig.yml'); print Dumper $foo->frobnicate($bar); sub One::frobnicate( $self, $item ) { for my $step (@{ $self->steps }) { $item = $step->frobnicate( $item ); }; return $item }