Basic POD for ::ApplicationAttribute, remove the empty Role directory, switch ::Contr...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Controller.pm
index 116991a..eef8419 100644 (file)
@@ -1,8 +1,8 @@
 package Catalyst::Controller;
 
-#switch to BEGIN { extends qw/ ... /; } ?
-use base qw/Catalyst::Component Catalyst::AttrContainer/;
 use Moose;
+# Note - Must be done at compile time due to attributes (::AttrContainer)
+BEGIN { extends qw/Catalyst::Component Catalyst::AttrContainer/; }
 
 use Class::MOP::Object ();
 use Scalar::Util qw/blessed/;