@@ -28,7 +28,7 @@ |
||
| 28 | 28 | /** |
| 29 | 29 | * Creates a new instance from given Resolution object |
| 30 | 30 | * |
| 31 | - * @param HorizontalResolution $Resolution |
|
| 31 | + * @param HorizontalResolution $resolution |
|
| 32 | 32 | * |
| 33 | 33 | * @return HorizontalResolution |
| 34 | 34 | */ |
@@ -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 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | /** |
| 29 | 29 | * Creates a new instance from given Resolution object |
| 30 | 30 | * |
| 31 | - * @param VerticalResolution $Resolution |
|
| 31 | + * @param VerticalResolution $resolution |
|
| 32 | 32 | * |
| 33 | 33 | * @return VerticalResolution |
| 34 | 34 | */ |
@@ -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 fromVerticalResolution(VerticalResolution $resolution) |
| 36 | 36 | { |
| 37 | 37 | return new self( |
| 38 | - $resolution->getValue() . '/1' |
|
| 38 | + $resolution->getValue().'/1' |
|
| 39 | 39 | ); |
| 40 | 40 | } |
| 41 | 41 | } |