Skip to content

Commit 4600a4a

Browse files
committed
keep E_STRICT constant defined
1 parent 46b00ea commit 4600a4a

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Zend/zend_constants.stub.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@
6868
*/
6969
const E_USER_NOTICE = UNKNOWN;
7070

71+
/**
72+
* @var int
73+
* @cvalue E_STRICT
74+
*/
75+
const E_STRICT = UNKNOWN;
76+
7177
/**
7278
* @var int
7379
* @cvalue E_RECOVERABLE_ERROR

Zend/zend_constants_arginfo.h

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Zend/zend_errors.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#define E_USER_ERROR (1<<8L)
3232
#define E_USER_WARNING (1<<9L)
3333
#define E_USER_NOTICE (1<<10L)
34+
#define E_STRICT (1<<11L)
3435
#define E_RECOVERABLE_ERROR (1<<12L)
3536
#define E_DEPRECATED (1<<13L)
3637
#define E_USER_DEPRECATED (1<<14L)

0 commit comments

Comments
 (0)