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