Do not report E_PARSE or E_COMPILE_ERROR crashes

This commit is contained in:
Shoghi Cervantes 2014-09-03 13:38:24 +02:00
parent dea4513c34
commit ba08bfaa45

View File

@ -1898,7 +1898,8 @@ class Server{
}
}elseif(\Phar::running(true) == ""){
return;
}elseif($dump->getData()["type"] === "E_PARSE" or $dump->getData()["type"] === "E_COMPILE_ERROR"){
}
if($dump->getData()["type"] === "E_PARSE" or $dump->getData()["type"] === "E_COMPILE_ERROR"){
return;
}