From 38565092afcfafbd65fe0a76bd302c454c40c608 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 22 Sep 2015 16:45:52 +0200 Subject: get_(active_)service: return hashrefs after all, not hashes --- lib/Travel/Status/DE/HAFAS.pm | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'lib/Travel/Status/DE/HAFAS.pm') diff --git a/lib/Travel/Status/DE/HAFAS.pm b/lib/Travel/Status/DE/HAFAS.pm index 979a538..f093baf 100644 --- a/lib/Travel/Status/DE/HAFAS.pm +++ b/lib/Travel/Status/DE/HAFAS.pm @@ -349,7 +349,7 @@ sub get_service { my ($service) = @_; if ( defined $service and exists $hafas_instance{$service} ) { - return %{ $hafas_instance{$service} }; + return $hafas_instance{$service}; } return; } @@ -358,7 +358,7 @@ sub get_active_service { my ($self) = @_; if ( defined $self->{active_service} ) { - return %{ $hafas_instance{ $self->{active_service} } }; + return $hafas_instance{ $self->{active_service} }; } return; } @@ -499,7 +499,7 @@ undef. =item $status->similar_stops -Returns a list of hashes describing stops whose name is similar to the one +Returns a list of hashrefs describing stops whose name is similar to the one requested in the constructor's B parameter. Returns nothing if the active service does not support this feature. This is most useful if B returns 'H730', which means that the @@ -510,11 +510,11 @@ on the return value. =item $status->get_active_service -Returns a hash describing the active service when a service is active and -nothing otherwise. The hash contains the keys B (URL to the station board -service), B (URL to the stopfinder service, if supported), B, -and B (arrayref describing the supported modes of transport, may -contain duplicates). +Returns a hashref describing the active service when a service is active and +nothing otherwise. The hashref contains the keys B (URL to the station +board service), B (URL to the stopfinder service, if supported), +B, and B (arrayref describing the supported modes of +transport, may contain duplicates). =item Travel::Status::DE::HAFAS::get_services() @@ -525,9 +525,8 @@ the constructor's B parameter. =item Travel::Status::DE::HAFAS::get_service(I<$service>) -Returns a hash describing the service I<$service>. Returns nothing -if I<$service> is not supported. See -B for the hash layout. +Returns a hashref describing the service I<$service>. Returns nothing if +I<$service> is not supported. See B for the hashref layout. =back -- cgit v1.2.3