Skip to content

Commit 5899952

Browse files
author
Tom Van Herreweghe
committed
Improved docblocks & removed unused variable
Signed-off-by: Tom Van Herreweghe <[email protected]>
1 parent 8fca517 commit 5899952

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/PHPExif/Adapter/Native.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function getExifFromFile($file)
216216
*/
217217
public function getIptcData($file)
218218
{
219-
$size = getimagesize($file, $info);
219+
getimagesize($file, $info);
220220
$arrData = array();
221221
if (isset($info['APP13'])) {
222222
$iptc = iptcparse($info['APP13']);

lib/PHPExif/Mapper/Exiftool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class Exiftool implements MapperInterface
9191
* fields for the \PHPExif\Exif class
9292
*
9393
* @param array $data
94-
* @return void
94+
* @return array
9595
*/
9696
public function mapRawData(array $data)
9797
{

lib/PHPExif/Mapper/MapperInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ interface MapperInterface
2727
* fields for the \PHPExif\Exif class
2828
*
2929
* @param array $data
30-
* @return void
30+
* @return array
3131
*/
3232
public function mapRawData(array $data);
3333
}

lib/PHPExif/Mapper/Native.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class Native implements MapperInterface
114114
* fields for the \PHPExif\Exif class
115115
*
116116
* @param array $data
117-
* @return void
117+
* @return array
118118
*/
119119
public function mapRawData(array $data)
120120
{

0 commit comments

Comments
 (0)