aboutsummaryrefslogtreecommitdiffstats
path: root/includes/media/TransformationalImageHandler.php
diff options
context:
space:
mode:
authorBartosz DziewoƄski <matma.rex@gmail.com>2017-10-07 00:17:58 +0200
committerJames D. Forrester <jforrester@wikimedia.org>2018-05-30 18:06:13 -0700
commit485f66f1744fea056e20a5bef619989bf1749202 (patch)
tree10f1fa9496adf8a6057e28138c941bb2671fbeec /includes/media/TransformationalImageHandler.php
parentb191e5e860f24e1dd05e3d3d782364e4ea75b176 (diff)
downloadmediawikicore-485f66f1744fea056e20a5bef619989bf1749202.tar.gz
mediawikicore-485f66f1744fea056e20a5bef619989bf1749202.zip
Use PHP 7 '??' operator instead of '?:' with 'isset()' where convenient
Find: /isset\(\s*([^()]+?)\s*\)\s*\?\s*\1\s*:\s*/ Replace with: '\1 ?? ' (Everywhere except includes/PHPVersionCheck.php) (Then, manually fix some line length and indentation issues) Then manually reviewed the replacements for cases where confusing operator precedence would result in incorrect results (fixing those in I478db046a1cc162c6767003ce45c9b56270f3372). Change-Id: I33b421c8cb11cdd4ce896488c9ff5313f03a38cf
Diffstat (limited to 'includes/media/TransformationalImageHandler.php')
-rw-r--r--includes/media/TransformationalImageHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/media/TransformationalImageHandler.php b/includes/media/TransformationalImageHandler.php
index 85430d2c23de..ea0d61bf1a38 100644
--- a/includes/media/TransformationalImageHandler.php
+++ b/includes/media/TransformationalImageHandler.php
@@ -127,7 +127,7 @@ abstract class TransformationalImageHandler extends ImageHandler {
'mimeType' => $image->getMimeType(),
'dstPath' => $dstPath,
'dstUrl' => $dstUrl,
- 'interlace' => isset( $params['interlace'] ) ? $params['interlace'] : false,
+ 'interlace' => $params['interlace'] ?? false,
];
if ( isset( $params['quality'] ) && $params['quality'] === 'low' ) {