-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTheliaMySQLModesChecker.php
More file actions
31 lines (27 loc) · 1.31 KB
/
TheliaMySQLModesChecker.php
File metadata and controls
31 lines (27 loc) · 1.31 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
<?php
/*************************************************************************************/
/* This file is part of the Thelia package. */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace TheliaMySQLModesChecker;
use Thelia\Module\BaseModule;
/**
* @author Gilles Bourgeat <gilles.bourgeat@gmail.com>
*/
class TheliaMySQLModesChecker extends BaseModule
{
/** @var string */
const DOMAIN_NAME = 'theliamysqlmodeschecker';
/*
* You may now override BaseModuleInterface methods, such as:
* install, destroy, preActivation, postActivation, preDeactivation, postDeactivation
*
* Have fun !
*/
}