Completed
Push — 2.0 ( b1f1bc )
by Vitaly
08:30
created

Module::configure()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
nc 1
1
<?php
2
namespace samsonphp\core;
3
4
/**
5
 * Module
6
 *
7
 * @author Vitaly Iegorov <[email protected]>
8
 */
9
abstract class Module
10
{
11
    /**
12
     * Module configuration stage
13
     * @param ContainerInterface $container
14
     */
15
    abstract public function configure(ContainerInterface $container);
16
17
    /**
18
     * Module preparation stage
19
     */
20
    public function prepare()
21
    {
22
23
    }
24
25
    /**
26
     * Module initialization stage
27
     */
28
    public function init()
29
    {
30
31
    }
32
}
33