@@ -11,7 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace PHPExif\Common\Data\ValueObject\Exif; |
13 | 13 | |
14 | -use PHPExif\Common\Data\ValueObject\IntegerObject; |
|
15 | 14 | use \InvalidArgumentException; |
16 | 15 | use \RuntimeException; |
17 | 16 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | public static function fromHorizontalResolution(HorizontalResolution $resolution) |
36 | 36 | { |
37 | 37 | return new self( |
38 | - $resolution->getValue() . '/1' |
|
38 | + $resolution->getValue().'/1' |
|
39 | 39 | ); |
40 | 40 | } |
41 | 41 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | public static function fromHorizontalResolution(HorizontalResolution $resolution) |
36 | 36 | { |
37 | 37 | return new self( |
38 | - $resolution->getValue() . '/1' |
|
38 | + $resolution->getValue().'/1' |
|
39 | 39 | ); |
40 | 40 | } |
41 | 41 | } |
@@ -11,7 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace PHPExif\Common\Data\ValueObject\Exif; |
13 | 13 | |
14 | -use PHPExif\Common\Data\ValueObject\IntegerObject; |
|
15 | 14 | use \InvalidArgumentException; |
16 | 15 | use \RuntimeException; |
17 | 16 |