-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathInstaller.php
More file actions
61 lines (53 loc) · 1.7 KB
/
Copy pathInstaller.php
File metadata and controls
61 lines (53 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/*
+------------------------------------------------------------------------+
| PhalconEye CMS |
+------------------------------------------------------------------------+
| Copyright (c) 2013-2014 PhalconEye Team (http://phalconeye.com/) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to license@phalconeye.com so we can send you a copy immediately. |
+------------------------------------------------------------------------+
*/
namespace Blog;
use Engine\Installer as EngineInstaller;
/**
* Installer for Blog.
*
* @category PhalconEye\Module
* @package Module
*/
class Installer extends EngineInstaller
{
/**
* Used to install specific database entities or other specific action.
*
* @return void
*/
public function install()
{
}
/**
* Used before package will be removed from the system.
*
* @return void
*/
public function remove()
{
}
/**
* Used to apply some updates.
*
* @param string $currentVersion Current version name.
*
* @return mixed 'string' (new version) if migration is not finished, 'null' if all updates were applied
*/
public function update($currentVersion)
{
return null;
}
}