Skip to content

Commit

Permalink
Merge branch '4.4' into 5.2
Browse files Browse the repository at this point in the history
* 4.4:
  [CS] Replace easy occurences of ?: with ??
  • Loading branch information
derrabus committed Apr 7, 2021
2 parents 0752411 + 48b4ae9 commit 6d8940a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extension/DumpExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function dump(Environment $env, array $context): ?string
}

$dump = fopen('php://memory', 'r+');
$this->dumper = $this->dumper ?: new HtmlDumper();
$this->dumper = $this->dumper ?? new HtmlDumper();
$this->dumper->setCharset($env->getCharset());

foreach ($vars as $value) {
Expand Down

0 comments on commit 6d8940a

Please sign in to comment.