phive registers its own error handler
|
set_error_handler([$this, 'errorHandler']); |
that does not respect the PHP ini error_reporting setting.
This is a bit problematic while running builds for new PHP versions.
While phive would most likely run under php 8.4 without any problems but because there are deprecation errors it just crashes.
I think, during execution time deprecations can safely be ignored.
phive registers its own error handler
phive/src/shared/cli/Runner.php
Line 183 in 9dee308
that does not respect the PHP ini
error_reportingsetting.This is a bit problematic while running builds for new PHP versions.
While
phivewould most likely run under php 8.4 without any problems but because there aredeprecationerrors it just crashes.I think, during execution time deprecations can safely be ignored.