X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDX%2FResolution.pm;h=a821f7ac86c8b23497f7c3a17095510a1828e55a;hb=22d295940695930eebfbd7d0bd2e7495667cbb49;hp=35059dd124b5781fb94525ccc44a3ac888d798d6;hpb=fe5af11f90482c9f5bdf74cd1f7699849451e211;p=scpubgit%2FDX.git diff --git a/lib/DX/Resolution.pm b/lib/DX/Resolution.pm index 35059dd..a821f7a 100644 --- a/lib/DX/Resolution.pm +++ b/lib/DX/Resolution.pm @@ -3,9 +3,9 @@ package DX::Resolution; use DX::Utils qw(expand_deps); use DX::Class; -has veracity_depends_on => (is => 'ro', required => 1); +has veracity_depends_on => (is => 'ro', required => 1, isa => DependencyList); -has actions => (is => 'ro', required => 1); +has actions => (is => 'ro', required => 1, isa => ArrayRef[Action]); sub next_resolution { $_[0] }