-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
39 lines (36 loc) · 1008 Bytes
/
plugin.php
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
<?php
/**
* Plugin.php
*
* PHP version 7
*
* @category Together
* @package Xpressengine\Plugins\Together
* @author XE Developers <[email protected]>
* @copyright 2019 Copyright XEHub Corp. <https://www.xehub.io>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
* @link https://xpressengine.io
*/
namespace Xpressengine\Plugins\Together;
use Xpressengine\Plugin\AbstractPlugin;
/**
* Class Plugin
*
* @category Together
* @package Xpressengine\Plugins\Together
* @author XE Developers <[email protected]>
* @copyright 2019 Copyright XEHub Corp. <https://www.xehub.io>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
* @link https://xpressengine.io
*/
class Plugin extends AbstractPlugin
{
/**
* 이 메소드는 활성화(activate) 된 플러그인이 부트될 때 항상 실행됩니다.
*
* @return void
*/
public function boot()
{
}
}