Minimal POD for nacked methods
[cascardo/www-eztv.git] / lib / WWW / EZTV / UA.pm
index f2fbeeb..41df609 100644 (file)
@@ -2,8 +2,12 @@ package WWW::EZTV::UA;
 use Moose::Role;
 use Mojo::UserAgent;
 
+# ABSTRACT: User agent for EZTV scrapper.
+
 has ua  => ( is => 'ro', lazy => 1, default => sub { $EZTV::Global::UA || ($EZTV::Global::UA = Mojo::UserAgent->new) } );
 
+=method get_response
+=cut
 sub get_response {
     my ($self, $url) = (shift, shift);