Skip to content

Commit

Permalink
Merge branch 'release/1.6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Mar 24, 2023
2 parents 8c751e9 + 4eef2f8 commit 4d10214
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.6.4
## 03/24/2023

1. [](#bugfix)
* Fixed an issue with PHP 8.2 [#36](https://github.com/rockettheme/toolbox/pull/36)

# v1.6.3
## 02/19/2023

Expand Down
2 changes: 1 addition & 1 deletion Compat/src/Yaml/Inline.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static function parse($value, $exceptionOnInvalidType = false, $objectSup
self::$objectSupport = $objectSupport;
self::$objectForMap = $objectForMap;

$value = trim($value);
$value = trim($value ?? '');

if ('' === $value) {
return '';
Expand Down

0 comments on commit 4d10214

Please sign in to comment.