[Process] Add default xampp path to the list of possible paths to check

This commit is contained in:
Jordi Boggiano 2012-07-03 18:50:27 +02:00
parent 28e1313e5d
commit 45219ef80f

View File

@ -53,6 +53,9 @@ class PhpExecutableFinder
}
$dirs = array(PHP_BINDIR);
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
$dirs[] = 'C:\xampp\php\\';
}
return $this->executableFinder->find('php', false, $dirs);
}