Skip to content

Commit 197f142

Browse files
committed
Catch php syntax errors (or other errors) in bin/magento and output the error instead of staying silent.
1 parent 2b943ed commit 197f142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/magento

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ try {
2121
set_error_handler([$handler, 'handler']);
2222
$application = new Magento\Framework\Console\Cli('Magento CLI');
2323
$application->run();
24-
} catch (\Exception $e) {
24+
} catch (\Throwable $e) {
2525
while ($e) {
2626
echo $e->getMessage();
2727
echo $e->getTraceAsString();

0 commit comments

Comments
 (0)