Passed
Branch master (1838cf)
by Slye
02:34
created
Category
src/System.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
                             </ul>
212 212
                            </li>";
213 213
 				}
214
-				$body    .= '</ul>';
214
+				$body .= '</ul>';
215 215
 				$message = (new Swift_Message($this->l10n->translate('mail_subject_on_error')))->setFrom(getenv('MAIL_FROM'),
216 216
 					getenv('MAIL_FROM_NAME'))
217 217
 																							   ->setTo(getenv('MAIL_TO'),
Please login to merge, or discard this patch.
src/FileManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 	private function _getFiles(): void
39 39
 	{
40 40
 		$files       = scandir($this->params['files_path'], SCANDIR_SORT_ASCENDING);
41
-		$this->files = array_filter($files, function ($k) {
41
+		$this->files = array_filter($files, function($k) {
42 42
 			$return = [];
43 43
 			if ($k !== '..' && $k !== '.') {
44 44
 				$return[] = $k;
Please login to merge, or discard this patch.