@@ -114,6 +114,6 @@ |
||
114 | 114 | */ |
115 | 115 | public function __toString() |
116 | 116 | { |
117 | - return (string) $this->getValue() . (string) $this->getUnit(); |
|
117 | + return (string) $this->getValue().(string) $this->getUnit(); |
|
118 | 118 | } |
119 | 119 | } |
@@ -59,7 +59,7 @@ |
||
59 | 59 | public static function fromLineResolution(LineResolution $resolution) |
60 | 60 | { |
61 | 61 | return new self( |
62 | - $resolution->getValue() . '/1', |
|
62 | + $resolution->getValue().'/1', |
|
63 | 63 | (clone $resolution->getUnit()) |
64 | 64 | ); |
65 | 65 | } |