1 <?php
2
3 namespace VersionSwitch;
4
5 /**
6 * Switches MYSQL versions
7 *
8 * @author Art <a.molcanovas@gmail.com>
9 */
10 class MySQL extends AbstractVersionSwitch {
11
12 /**
13 * Constructor
14 *
15 * @author Art <a.molcanovas@gmail.com>
16 */
17 function __construct() {
18 $this->ini = 'mysql_version';
19 $this->dir = DIR_MYSQL;
20 $this->service = 'alomysql';
21
22 parent::__construct();
23 }
24 }