X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FSchema%2FGraph%2FCompoundEdge.pm;h=ac0faa46791081090b301ad28e04eb25fda3c33a;hb=ba506e52c480afe33dfec6b38a12759fad1e7fa2;hp=ab115b22a556845e652fea3066afde014cf52d4d;hpb=f4b8e04b825168484da452b5a8492b0ab4adb853;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator/Schema/Graph/CompoundEdge.pm b/lib/SQL/Translator/Schema/Graph/CompoundEdge.pm index ab115b2..ac0faa4 100644 --- a/lib/SQL/Translator/Schema/Graph/CompoundEdge.pm +++ b/lib/SQL/Translator/Schema/Graph/CompoundEdge.pm @@ -1,13 +1,15 @@ package SQL::Translator::Schema::Graph::CompoundEdge; +use vars qw[ $VERSION ]; +$VERSION = '1.60'; + use strict; use base qw(SQL::Translator::Schema::Graph::Edge); use Class::MakeMethods::Template::Hash ( - new => ['new'], - object => [ - 'via' => {class => 'SQL::Translator::Schema::Graph::Node'}, - ], - 'array_of_objects -class SQL::Translator::Schema::Graph::Edge' => [ qw( edges ) ], + new => ['new'], + object => [ 'via' => { class => 'SQL::Translator::Schema::Graph::Node' }, ], + 'array_of_objects -class SQL::Translator::Schema::Graph::Edge' => + [qw( edges )], ); 1;