@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $tmpPath = $this->getLocalFile($file); |
66 | 66 | if ($tmpPath === false) { |
67 | 67 | \OC::$server->get(LoggerInterface::class)->error( |
68 | - 'Failed to get thumbnail for: ' . $file->getPath(), |
|
68 | + 'Failed to get thumbnail for: '.$file->getPath(), |
|
69 | 69 | ['app' => 'core'] |
70 | 70 | ); |
71 | 71 | return null; |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $bp->setFormat('jpg'); |
78 | 78 | } catch (\Exception $e) { |
79 | 79 | \OC::$server->get(LoggerInterface::class)->error( |
80 | - 'File: ' . $file->getPath() . ' Imagick says:', |
|
80 | + 'File: '.$file->getPath().' Imagick says:', |
|
81 | 81 | [ |
82 | 82 | 'exception' => $e, |
83 | 83 | 'app' => 'core', |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $bp = new \Imagick(); |
114 | 114 | |
115 | 115 | // Layer 0 contains either the bitmap or a flat representation of all vector layers |
116 | - $bp->readImage($tmpPath . '[0]'); |
|
116 | + $bp->readImage($tmpPath.'[0]'); |
|
117 | 117 | |
118 | 118 | // Fix orientation from EXIF |
119 | 119 | $bp->autoOrient(); |