aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI
diff options
context:
space:
mode:
authorgroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-11-26 20:36:13 +0000
committergroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-11-26 20:36:13 +0000
commitea32267769f114e45d5dd4ea3bb2b5f2c2c8bed9 (patch)
treeb99a7a73abde548114f5f1f18d8854c3192ec254 /lib/ComponentUI
parent9446e1cd17441b0e3ce7102cfca38de2b7869f24 (diff)
downloadreaction-ea32267769f114e45d5dd4ea3bb2b5f2c2c8bed9.tar.gz
reaction-ea32267769f114e45d5dd4ea3bb2b5f2c2c8bed9.zip
formatting fix
Diffstat (limited to 'lib/ComponentUI')
-rw-r--r--lib/ComponentUI/TestModel.pm19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/ComponentUI/TestModel.pm b/lib/ComponentUI/TestModel.pm
index e13c31c..d33af2f 100644
--- a/lib/ComponentUI/TestModel.pm
+++ b/lib/ComponentUI/TestModel.pm
@@ -7,14 +7,17 @@ use Reaction::InterfaceModel::Reflector::DBIC;
my $reflector = Reaction::InterfaceModel::Reflector::DBIC->new;
-$reflector->reflect_schema
- (
- model_class => __PACKAGE__,
- schema_class => 'RTest::TestDB',
- sources => [qw/Foo Baz/,
- [ Bar => {attributes => [[-exclude => 'avatar']] } ], ## for now....
- ],
- );
+$reflector->reflect_schema(
+ model_class => __PACKAGE__,
+ schema_class => 'RTest::TestDB',
+ sources => [
+ qw/Foo Baz/,
+ [ Bar => {attributes => [[-exclude => 'avatar']] } ], ## for now....
+ ],
+);
+__PACKAGE__->meta->make_immutable;1;
1;
+
+__END__;