Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed null value deprecation #613

Merged
merged 3 commits into from
Jan 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added null check to htmlentities helper
pincombe authored Jan 24, 2024
commit 2ba553e25695170ad4d61ad7629fbae7e475e5e6
7 changes: 6 additions & 1 deletion src/Former/Helpers.php
Original file line number Diff line number Diff line change
@@ -35,7 +35,12 @@ public static function setApp(Container $app)
*/
public static function encode($value)
{
return htmlentities($value ?? '', ENT_QUOTES, 'UTF-8', true);
// Check if $value is null and return empty string
if ($value === null) {
return '';
}

return htmlentities($value, ENT_QUOTES, 'UTF-8', true);
}

////////////////////////////////////////////////////////////////////