Skip to content

Commit bae581a

Browse files
committed
comments
1 parent 9c745a9 commit bae581a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/EXIFExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class EXIFExtractor {
66
public static function extract($path) {
77
$exifData = @exif_read_data($path, 'ANY_TAG', true);
88
if (!$exifData) {
9-
return null; // Możesz tutaj obsłużyć błąd w inny sposób
9+
return null;
1010
}
1111

1212
return $exifData;

src/IPTCExtractor.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ class IPTCExtractor {
2323
'2#116' => 'copyrightNotice',
2424
'2#120' => 'caption',
2525
'2#122' => 'captionWriter',
26-
// innych kodów IPTC, które chcesz obsługiwać
2726
];
2827

2928
public static function extract($path) {

0 commit comments

Comments
 (0)