Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15415402
D19602.id46866.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
780 B
Referenced Files
None
Subscribers
None
D19602.id46866.diff
View Options
diff --git a/src/moduleutils/PhutilBootloader.php b/src/moduleutils/PhutilBootloader.php
--- a/src/moduleutils/PhutilBootloader.php
+++ b/src/moduleutils/PhutilBootloader.php
@@ -236,12 +236,16 @@
// reporting enabled for these errors since we don't have a way to do
// anything more graceful.
+ // Likewise, some errors, including "cannot redeclare Class::method()"
+ // cause PHP to fatal immediately with E_COMPILE_ERROR. Treat these like
+ // the similar errors which raise E_ERROR.
+
// See also T12190.
$old_last = error_get_last();
try {
- $old = error_reporting(E_ERROR);
+ $old = error_reporting(E_ERROR | E_COMPILE_ERROR);
$okay = include_once $path;
error_reporting($old);
} catch (Exception $ex) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 21, 5:48 AM (2 w, 21 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7229885
Default Alt Text
D19602.id46866.diff (780 B)
Attached To
Mode
D19602: When including files, also print E_COMPILE_ERROR to avoid dying silently
Attached
Detach File
Event Timeline
Log In to Comment