Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ranguard committed Feb 6, 2016
1 parent cdfba8d commit 8c3bbcb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/MetaCPAN/Role/Fastly.pm
Expand Up @@ -6,7 +6,7 @@ package MetaCPAN::Role::Fastly;
use Moose::Role;
use Net::Fastly;

use MetaCPAN::Types qw( ArrayRef Str );
use MetaCPAN::Types;

=head1 NAME
Expand Down Expand Up @@ -74,15 +74,15 @@ has '_surrogate_keys_to_purge' => (
# other cache headers
has 'cdn_cache_ttl' => (
is => 'rw',
isa => 'Int',
default => sub {0},
isa => Int,
default => 0,
);

# Make sure the CDN NEVER caches, ignore any other cdn_cache_ttl settings
has 'cdn_never_cache' => (
is => 'rw',
isa => 'Bool',
default => sub {0},
isa => Bool,
default => 0,
);

has 'browser_max_age' => (
Expand All @@ -93,7 +93,7 @@ has 'browser_max_age' => (

has 'cdn_times' => (
is => 'ro',
isa => 'HashRef',
isa => HashRef,
lazy_build => 1,
);

Expand Down

0 comments on commit 8c3bbcb

Please sign in to comment.