Skip to content

Commit 0dd911b

Browse files
committed
[CS] Replace easy occurences of ?: with ??
1 parent a6b2c71 commit 0dd911b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ExpressionLanguage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ExpressionLanguage
3333
*/
3434
public function __construct(CacheItemPoolInterface $cache = null, array $providers = [])
3535
{
36-
$this->cache = $cache ?: new ArrayAdapter();
36+
$this->cache = $cache ?? new ArrayAdapter();
3737
$this->registerFunctions();
3838
foreach ($providers as $provider) {
3939
$this->registerProvider($provider);

0 commit comments

Comments
 (0)