Skip to content

Commit c8bb14c

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: [CS] Replace easy occurences of ?: with ??
2 parents 3fc560e + 0dd911b commit c8bb14c

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
@@ -36,7 +36,7 @@ class ExpressionLanguage
3636
*/
3737
public function __construct(CacheItemPoolInterface $cache = null, array $providers = [])
3838
{
39-
$this->cache = $cache ?: new ArrayAdapter();
39+
$this->cache = $cache ?? new ArrayAdapter();
4040
$this->registerFunctions();
4141
foreach ($providers as $provider) {
4242
$this->registerProvider($provider);

0 commit comments

Comments
 (0)