Fix: PHP 8.1+ compatibility and bootstrap improvements#337
Merged
papac merged 7 commits intobowphp:5.xfrom Dec 18, 2025
Merged
Conversation
…ibility Remove deprecation warnings by explicitly declaring nullable parameter types. Fixed functions: - db(), table(), get_last_insert_id(), db_table() - create_csrf_token(), csrf_time_is_expired() - redirect(), email(), session() - cache(), app_hash(), bow_hash(), app_trans() - url(), cookie(), e() Also fixed DiskFilesystemService::store() parameter type declaration.
Remove deprecation warnings in Tokenize class: - csrf() parameter $time - csrfExpired() parameter $time
Fix session_set_cookie_params() type error by properly casting: - domain: can be null - secure: must be bool - httponly: must be bool
Simplify method_exists check by inverting logic. More readable and follows early return pattern.
papac
approved these changes
Dec 18, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves all PHP 8.1+ deprecation warnings and fixes Application bootstrap issues.
Changes:
Files: 5 modified, +61/-39 lines
Tested: PHP 8.1, 8.2, 8.3, 8.4
Breaking changes: None