
Untitled
By: a guest on
May 7th, 2012 | syntax:
Perl | size: 0.28 KB | hits: 19 | expires: Never
sub get_formatted_data_for_analysis
{
my ($self, $type, $key) = @_;
my $cached_path = $self->get_cached_path( $type, $key );
$self->fetch_by_url( $type, $key ) unless -e $cached_path;
return $self->formatter->format_file( $cached_path );
}