Skip to content

Commit efbba02

Browse files
committed
Apply fixes from StyleCI
1 parent 9069cd4 commit efbba02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Classes/Domain/Extractor/ExifExtractor.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ public function extractMetaData(FlowResource $resource, MetaDataCollection $meta
191191
}
192192
}
193193
}
194-
195-
if (isset($exifData['PhotographicSensitivity']) && is_array($exifData['PhotographicSensitivity'])) {
196-
$exifData['PhotographicSensitivity'] = (int)current($exifData['PhotographicSensitivity']);
194+
195+
if (isset($exifData['PhotographicSensitivity']) && \is_array($exifData['PhotographicSensitivity'])) {
196+
$exifData['PhotographicSensitivity'] = (int)\current($exifData['PhotographicSensitivity']);
197197
}
198198

199199
if (isset($exifData['GPSVersionID'])) {

0 commit comments

Comments
 (0)