Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Data/Verifier/Field.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Predicate that returns true if this field has an original value.

has original_value => (
is => 'rw',
isa => 'Maybe[Str|ArrayRef|HashRef[Str]]',
isa => 'Maybe[Str|ArrayRef|HashRef[Str]|Object]',
predicate => 'has_original_value'
);

Expand All @@ -36,7 +36,7 @@ Predicate that returns true if this field has a post filter value.

has post_filter_value => (
is => 'rw',
isa => 'Maybe[Str|ArrayRef|HashRef[Str]]',
isa => 'Maybe[Str|ArrayRef|HashRef[Str]|Object]',
predicate => 'has_post_filter_value'
);

Expand Down