Remove HHVM specific code

This commit is contained in:
Stéphane Goetz 2018-09-20 20:17:51 +02:00
parent 7928b4365b
commit cfc3be0b32
1 changed files with 1 additions and 9 deletions

View File

@ -47,14 +47,6 @@ class Serve extends DauxCommand
echo "Daux development server started on http://{$host}:{$port}/\n";
if (defined('HHVM_VERSION')) {
if (version_compare(HHVM_VERSION, '3.8.0') >= 0) {
passthru("{$binary} -m server -v Server.Type=proxygen -v Server.SourceRoot={$base}/ -v Server.IP={$host} -v Server.Port={$port} -v Server.DefaultDocument=server.php -v Server.ErrorDocument404=server.php");
} else {
throw new Exception("HHVM's built-in server requires HHVM >= 3.8.0.");
}
} else {
passthru("{$binary} -S {$host}:{$port} {$base}/index.php");
}
passthru("{$binary} -S {$host}:{$port} {$base}/index.php");
}
}