1 | <?php |
||
8 | abstract class Component |
||
9 | { |
||
10 | /** |
||
11 | * @var Application |
||
12 | */ |
||
13 | protected $app; |
||
14 | |||
15 | public function __construct( Application $app ) |
||
19 | |||
20 | /** |
||
21 | * @return void |
||
22 | */ |
||
23 | abstract public function init(); |
||
24 | |||
25 | /** |
||
26 | * @return void|array |
||
27 | */ |
||
28 | abstract public function register(); |
||
29 | |||
30 | /** |
||
31 | * @param string $id |
||
32 | * @return array |
||
33 | */ |
||
34 | protected function normalizeThis( $data, array $defaults, $id ) |
||
45 | } |
||
46 |