@@ -55,13 +55,13 @@ |
||
| 55 | 55 | $namespace = $reflClass->getNamespaceName(); |
| 56 | 56 | $namespace .= '\\Exif'; |
| 57 | 57 | |
| 58 | - $path = realpath(__DIR__ . '/Mapper/Exif'); |
|
| 58 | + $path = realpath(__DIR__.'/Mapper/Exif'); |
|
| 59 | 59 | |
| 60 | - foreach (glob($path . '/*Mapper.php') as $classPath) { |
|
| 60 | + foreach (glob($path.'/*Mapper.php') as $classPath) { |
|
| 61 | 61 | $className = str_replace('.php', '', array_reverse( |
| 62 | 62 | explode(DIRECTORY_SEPARATOR, $classPath) |
| 63 | 63 | )[0]); |
| 64 | - $fqcn = $namespace . '\\' . $className; |
|
| 64 | + $fqcn = $namespace.'\\'.$className; |
|
| 65 | 65 | |
| 66 | 66 | $fieldMapper = new $fqcn(); |
| 67 | 67 | |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | /** |
| 33 | 33 | * {@inheritDoc} |
| 34 | 34 | */ |
| 35 | - public function map(array $input, MetadataInterface &$output) |
|
| 35 | + public function map(array $input, MetadataInterface & $output) |
|
| 36 | 36 | { |
| 37 | 37 | $this->mapArray($input, $output); |
| 38 | 38 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | (int) $input['COMPUTED'][$inputField] |
| 59 | 59 | ); |
| 60 | 60 | |
| 61 | - $method = 'with' . $inputField; |
|
| 61 | + $method = 'with'.$inputField; |
|
| 62 | 62 | |
| 63 | 63 | $output = $output->$method($valueObject); |
| 64 | 64 | } |