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