Skip to content

Commit 40c8122

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [CS] Replace easy occurences of ?: with ??
2 parents 0c5f0c5 + 6d8940a commit 40c8122

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)