Skip to content

Commit

Permalink
config: disable deprecations in production php.ini files
Browse files Browse the repository at this point in the history
dev should probably override this setting, but keeping it as-is for now
  • Loading branch information
chuckadams committed Feb 6, 2025
1 parent 071d528 commit b8db745
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/cli/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ upload_max_filesize = 20M
max_file_uploads = 20


error_reporting = E_ALL
; error_reporting = E_ALL & ~E_DEPRECATED
; error_reporting = E_ALL
error_reporting = E_ALL & ~E_DEPRECATED

display_errors = Off
display_startup_errors = Off
Expand Down
4 changes: 2 additions & 2 deletions docker/webapp/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ upload_max_filesize = 20M
max_file_uploads = 20


error_reporting = E_ALL
; error_reporting = E_ALL & ~E_DEPRECATED
; error_reporting = E_ALL
error_reporting = E_ALL & ~E_DEPRECATED

display_errors = Off
display_startup_errors = Off
Expand Down

0 comments on commit b8db745

Please sign in to comment.