Roll back MTITest result classes
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / MTITest / Result / Foo.pm
index 78fbab8..d8b8e1b 100644 (file)
@@ -10,13 +10,16 @@ __PACKAGE__->table_class(MultipleTableInheritance);
 __PACKAGE__->table('foo');
 
 __PACKAGE__->add_columns(
-    id => { data_type => 'integer', is_auto_increment => 1 },
-    a  => { data_type => 'integer', is_nullable       => 1 }
+  id => { data_type => 'integer', is_auto_increment => 1 },
+  a => { data_type => 'integer', is_nullable => 1 }
 );
 
 __PACKAGE__->set_primary_key('id');
 
-__PACKAGE__->belongs_to( 'bar', 'MTITest::Result::Bar',
-    { 'foreign.id' => 'self.a' } );
+__PACKAGE__->belongs_to(
+  'bar',
+  'MTITest::Result::Bar',
+  { 'foreign.id' => 'self.a' }
+);
 
 1;