add types to CompleteRecheck step
Matt S Trout [Thu, 16 Feb 2017 17:58:37 +0000 (17:58 +0000)]
lib/DX/Step/CompleteRecheck.pm

index a00c796..2c0a76e 100644 (file)
@@ -4,9 +4,9 @@ use DX::Class;
 
 with 'DX::Role::Step';
 
-has was_recheck_for => (is => 'ro', required => 1);
+has was_recheck_for => (is => 'ro', isa => Proposition, required => 1);
 
-has resume_search_state => (is => 'ro', required => 1);
+has resume_search_state => (is => 'ro', isa => SearchState, required => 1);
 
 sub apply_to {
   my ($self, $ss) = @_;