diff options
author | Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com> | 2013-11-07 12:05:17 +0000 |
---|---|---|
committer | Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com> | 2013-11-07 12:06:25 +0000 |
commit | b3956bfdb7d000f127b2a70445cbf9bf2287a634 (patch) | |
tree | 33e9726005961cf9a6b9d61468c28f418f959e26 /lib/WebService/TFL/TubeStatus/Response/Line.pm | |
parent | migrate to Moo: bus client (diff) | |
download | HomePanel-b3956bfdb7d000f127b2a70445cbf9bf2287a634.tar.gz HomePanel-b3956bfdb7d000f127b2a70445cbf9bf2287a634.tar.bz2 HomePanel-b3956bfdb7d000f127b2a70445cbf9bf2287a634.zip |
migrate to Moo: tube client
Diffstat (limited to 'lib/WebService/TFL/TubeStatus/Response/Line.pm')
-rw-r--r-- | lib/WebService/TFL/TubeStatus/Response/Line.pm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/WebService/TFL/TubeStatus/Response/Line.pm b/lib/WebService/TFL/TubeStatus/Response/Line.pm index 11d3538..9779443 100644 --- a/lib/WebService/TFL/TubeStatus/Response/Line.pm +++ b/lib/WebService/TFL/TubeStatus/Response/Line.pm @@ -1,23 +1,25 @@ package WebService::TFL::TubeStatus::Response::Line; -use Moose; +use Moo; +use Types::Standard -all; +use WebService::TFL::TubeStatus::Types -all; use WebService::TFL::TubeStatus::Response::LineStatus; use namespace::autoclean; has id => ( is => 'ro', - isa => 'Num', + isa => Num, required => 1, ); has name => ( is => 'ro', - isa => 'Str', + isa => Str, required => 1, ); has status => ( is => 'ro', - isa => 'WebService::TFL::TubeStatus::Response::LineStatus', + isa => LineStatusT, required => 1, ); |