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:
parent
f82999bb1b
commit
83ceb7f5f8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user