Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / media / ExifBitmap.php
index b2d2443..732be3d 100644 (file)
@@ -34,8 +34,7 @@ class ExifBitmapHandler extends BitmapHandler {
 
        function convertMetadataVersion( $metadata, $version = 1 ) {
                // basically flattens arrays.
-               $version = explode( ';', $version, 2 );
-               $version = intval( $version[0] );
+               $version = intval( explode( ';', $version, 2 )[0] );
                if ( $version < 1 || $version >= 2 ) {
                        return $metadata;
                }
@@ -110,7 +109,7 @@ class ExifBitmapHandler extends BitmapHandler {
                        if ( isset( $exif['MEDIAWIKI_EXIF_VERSION'] )
                                && $exif['MEDIAWIKI_EXIF_VERSION'] == 1
                        ) {
-                               //back-compatible but old
+                               // back-compatible but old
                                wfDebug( __METHOD__ . ": back-compat version\n" );
 
                                return self::METADATA_COMPATIBLE;
@@ -146,12 +145,12 @@ class ExifBitmapHandler extends BitmapHandler {
                ) {
                        // So we don't try and display metadata from PagedTiffHandler
                        // for example when using InstantCommons.
-                       return array();
+                       return [];
                }
 
                $exif = unserialize( $metadata );
                if ( !$exif ) {
-                       return array();
+                       return [];
                }
                unset( $exif['MEDIAWIKI_EXIF_VERSION'] );