Passed
Push — master ( d23e96...1bc100 )
by Roeland
11:25 queued 10s
created
apps/workflowengine/lib/Check/FileMimeType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 				if (strpos($path, '/webdav/') === 0) {
123 123
 					$path = substr($path, strlen('/webdav'));
124 124
 				}
125
-				$path = $this->path . $path;
125
+				$path = $this->path.$path;
126 126
 				$mimeType = $this->mimeTypeDetector->detectPath($path);
127 127
 				return $this->cacheAndReturnMimeType($this->storage->getId(), $path, $mimeType);
128 128
 			}
@@ -215,6 +215,6 @@  discard block
 block discarded – undo
215 215
 	}
216 216
 
217 217
 	public function supportedEntities(): array {
218
-		return [ File::class ];
218
+		return [File::class];
219 219
 	}
220 220
 }
Please login to merge, or discard this patch.