summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Otto <martijn.otto@copernica.com>2016-05-20 11:18:05 +0200
committerMartijn Otto <martijn.otto@copernica.com>2016-05-20 11:18:05 +0200
commitd9ad555a30df0e4fbb5e97a0aac2c3951069b433 (patch)
treef36725e5fe797a97b3431fd7c566f3be0691a51d
parent72618921adee29022038dd5fbd130f922d5078bc (diff)
Update check for PHP version
-rw-r--r--zend/includes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zend/includes.h b/zend/includes.h
index 4908e77..4189205 100644
--- a/zend/includes.h
+++ b/zend/includes.h
@@ -40,10 +40,10 @@
#include <SAPI.h>
/**
- * We don't compile for php7 just yet
+ * We don't work with older versions of PHP
*/
#if PHP_VERSION_ID < 70000
-# error "This library required PHP version 7.0 or higher. Use PHP-CPP-LEGACY for older versions."
+# error "This library requires PHP version 7.0 or higher. Use PHP-CPP-LEGACY for older versions."
#endif
/**