Mercurial > pub > Impl
annotate lib/IMPL/Config/Include.pm @ 413:af8d359ee4cc ref20150831
working on di container
| author | cin |
|---|---|
| date | Thu, 24 Sep 2015 12:19:30 +0300 |
| parents | c6e90e02dd17 |
| children |
| rev | line source |
|---|---|
| 407 | 1 package IMPL::Config::Include; |
| 2 use strict; | |
| 3 use warnings; | |
| 4 use IMPL::require { | |
| 5 Conf => 'IMPL::Config', | |
| 6 Exception => 'IMPL::Exception' | |
| 7 }; | |
| 8 | |
| 9 | |
| 10 sub restore { | |
| 11 my ($self,$data) = @_; | |
| 12 | |
| 13 die Exception->new("A file name is required") if ref $data || not $data; | |
| 14 | |
| 15 return Conf->spawn($data); | |
| 16 } | |
| 17 | |
| 18 1; |
