freenet-router |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 2 | simandl | <?php |
2 | |
||
3 | namespace Phem\ClassLoading\Bootstrapping; |
||
4 | |
||
5 | use Phem\Core\Object; |
||
6 | |
||
7 | /** |
||
8 | * @author Jakub PetrĹžĂlka <petrzilka@czweb.net> |
||
9 | */ |
||
10 | abstract class Bootstrapper extends Object |
||
11 | { |
||
12 | public function init() |
||
13 | { |
||
14 | $this->boot(); |
||
15 | } |
||
16 | |
||
17 | protected abstract function boot(); |
||
18 | } |