Completed
Push — master ( 155909...12524d )
by
unknown
22:17 queued 18s
created
tests/enable_all.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,18 +5,18 @@
 block discarded – undo
5 5
  * SPDX-License-Identifier: AGPL-3.0-or-later
6 6
  */
7 7
 
8
-require_once __DIR__ . '/../lib/base.php';
8
+require_once __DIR__.'/../lib/base.php';
9 9
 
10 10
 function enableApp($app) {
11 11
 	(new \OC_App())->enable($app);
12 12
 	echo "Enabled application {$app}\n";
13 13
 }
14 14
 
15
-foreach (new \DirectoryIterator(__DIR__ . '/../apps/') as $file) {
15
+foreach (new \DirectoryIterator(__DIR__.'/../apps/') as $file) {
16 16
 	if ($file->isDot()) {
17 17
 		continue;
18 18
 	}
19
-	if (!file_exists($file->getPathname() . '/.git')) {
19
+	if (!file_exists($file->getPathname().'/.git')) {
20 20
 		enableApp($file->getFilename());
21 21
 	}
22 22
 }
Please login to merge, or discard this patch.