diff Lib/IMPL/Web/Security/Session.pm @ 166:4267a2ac3d46

Added Class::Template, Rewritten SQL::Schema 'use parent' directive instead of 'use base'
author wizard
date Sat, 23 Apr 2011 23:12:06 +0400
parents f017c0d7527c
children d1676be8afcc
line wrap: on
line diff
--- a/Lib/IMPL/Web/Security/Session.pm	Sat Apr 23 23:06:48 2011 +0400
+++ b/Lib/IMPL/Web/Security/Session.pm	Sat Apr 23 23:12:06 2011 +0400
@@ -1,6 +1,6 @@
 package IMPL::Web::Security::Session;
 use strict;
-use base qw(IMPL::Security::Context);
+use parent qw(IMPL::Security::Context);
 
 use IMPL::Class::Property;
 
@@ -27,7 +27,7 @@
 # define a custom session for the application
 
 package App::Session;
-use base qw(IMPL::Web::Security::Session);
+use parent qw(IMPL::Web::Security::Session);
 
 use IMPL::Class::Property;
 
@@ -39,7 +39,7 @@
 
 =head1 DESCRIPTION
 
-C<use base qw(IMPL::Security::Context)>
+C<use parent qw(IMPL::Security::Context)>
 
 Представляет собой контекст безопасности, имеет идентификатор. Является базовым классом
 для расширения дополнительными атрибутами.