Completed
Push — master ( 04c3fa...9e32f0 )
by Thomas
09:51
created

CoreModule::uninstall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
namespace keeko\core;
3
4
use keeko\framework\foundation\AbstractModule;
5
6
/**
7
 * @license MIT
8
 * @author gossi
9
 */
10
class CoreModule extends AbstractModule {
11
	
12
	const EXT_LISTENER = 'keeko.core.listener';
13
	
14
	protected function initialize() {
15
		
16
	}
17
18
	/**
19
	 */
20
	public function install() {
21
	}
22
23
	/**
24
	 */
25
	public function uninstall() {
26
	}
27
28
	/**
29
	 * @param mixed $from
30
	 * @param mixed $to
31
	 */
32
	public function update($from, $to) {
33
	}
34
}
35