Skip to content

Commit 6d8940a

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: [CS] Replace easy occurences of ?: with ??
2 parents 0752411 + 48b4ae9 commit 6d8940a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/DumpExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function dump(Environment $env, array $context): ?string
7474
}
7575

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

8080
foreach ($vars as $value) {

0 commit comments

Comments
 (0)