aboutsummaryrefslogtreecommitdiffstats
path: root/t/lib/RTest/TestDB/Foo.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/RTest/TestDB/Foo.pm')
-rw-r--r--t/lib/RTest/TestDB/Foo.pm12
1 files changed, 5 insertions, 7 deletions
diff --git a/t/lib/RTest/TestDB/Foo.pm b/t/lib/RTest/TestDB/Foo.pm
index a7e669c..9b34bf3 100644
--- a/t/lib/RTest/TestDB/Foo.pm
+++ b/t/lib/RTest/TestDB/Foo.pm
@@ -11,13 +11,11 @@ use Reaction::Types::Core qw/NonEmptySimpleStr/;
has 'id' => (isa => Int, is => 'ro', required => 1);
has 'first_name' => (isa => NonEmptySimpleStr, is => 'rw', required => 1);
has 'last_name' => (isa => NonEmptySimpleStr, is => 'rw', required => 1);
-has 'bars' => (isa => ArrayRef );
-has 'bazes' =>
- (
- isa => ArrayRef,
- required => 1,
- reader => 'get_bazes',
- writer => 'set_bazes'
+has 'bazes' => (
+ isa => ArrayRef,
+ required => 1,
+ reader => 'get_bazes',
+ writer => 'set_bazes'
);
use namespace::clean -except => [ 'meta' ];