diff options
author | dakkar <dakkar@thenautilus.net> | 2023-12-09 14:05:34 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2023-12-09 14:05:34 +0000 |
commit | 808b2f67fce4fe9a68f3126be928dde63ffe9a08 (patch) | |
tree | 819e651d6b9ee7cde159883444d229b4c7f55967 /lib/WebService/TFL | |
parent | actually async (diff) | |
download | HomePanel-808b2f67fce4fe9a68f3126be928dde63ffe9a08.tar.gz HomePanel-808b2f67fce4fe9a68f3126be928dde63ffe9a08.tar.bz2 HomePanel-808b2f67fce4fe9a68f3126be928dde63ffe9a08.zip |
some clean
Diffstat (limited to 'lib/WebService/TFL')
-rw-r--r-- | lib/WebService/TFL/TubeStatus/Response.pm | 2 | ||||
-rw-r--r-- | lib/WebService/TFL/TubeStatus/Response/Line.pm | 2 | ||||
-rw-r--r-- | lib/WebService/TFL/TubeStatus/Response/LineStatus.pm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/WebService/TFL/TubeStatus/Response.pm b/lib/WebService/TFL/TubeStatus/Response.pm index 4fe6524..b6b104b 100644 --- a/lib/WebService/TFL/TubeStatus/Response.pm +++ b/lib/WebService/TFL/TubeStatus/Response.pm @@ -2,7 +2,7 @@ package WebService::TFL::TubeStatus::Response; use Moo; use WebService::TFL::TubeStatus::Response::Line; use Types::Standard -all; -use namespace::autoclean; +use namespace::clean; has lines => ( is => 'ro', diff --git a/lib/WebService/TFL/TubeStatus/Response/Line.pm b/lib/WebService/TFL/TubeStatus/Response/Line.pm index e8163a9..f962418 100644 --- a/lib/WebService/TFL/TubeStatus/Response/Line.pm +++ b/lib/WebService/TFL/TubeStatus/Response/Line.pm @@ -2,7 +2,7 @@ package WebService::TFL::TubeStatus::Response::Line; use Moo; use Types::Standard -all; use WebService::TFL::TubeStatus::Response::LineStatus; -use namespace::autoclean; +use namespace::clean; has id => ( is => 'ro', diff --git a/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm b/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm index 87eb52f..2e8e22b 100644 --- a/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm +++ b/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm @@ -1,7 +1,7 @@ package WebService::TFL::TubeStatus::Response::LineStatus; use Moo; use Types::Standard -all; -use namespace::autoclean; +use namespace::clean; has [qw(statusSeverity statusSeverityDescription)] => ( is => 'ro', |