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