@@ -33,5 +33,5 @@ |
||
33 | 33 | * |
34 | 34 | * @return void |
35 | 35 | */ |
36 | - public function map(array $input, MetadataInterface &$output); |
|
36 | + public function map(array $input, MetadataInterface & $output); |
|
37 | 37 | } |
@@ -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 | } |
@@ -23,10 +23,10 @@ |
||
23 | 23 | */ |
24 | 24 | class ArrayCollection implements Collection |
25 | 25 | { /** |
26 | - * Holds the entries of the collection |
|
27 | - * |
|
28 | - * @var array |
|
29 | - */ |
|
26 | + * Holds the entries of the collection |
|
27 | + * |
|
28 | + * @var array |
|
29 | + */ |
|
30 | 30 | protected $elements; |
31 | 31 | |
32 | 32 | /** |