1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00

Fix PHP_INT_MIN not defined in 5.5

This commit is contained in:
Bob Weinand 2016-08-14 22:44:49 +02:00
parent f82999bb1b
commit 83ceb7f5f8

View File

@ -9,6 +9,10 @@ if (!defined("SIGUSR2")) {
define("SIGUSR2", 31);
}
if (!defined("PHP_INT_MIN")) {
define("PHP_INT_MIN", ~PHP_INT_MAX);
}
abstract class Test extends \PHPUnit_Framework_TestCase {
/**
* The DriverFactory to run this test on