Completed
Push — master ( 6cd78d...063960 )
by Maxence
40s queued 13s
created
lib/AppInfo/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 use Psr\Container\ContainerInterface;
52 52
 use Throwable;
53 53
 
54
-if (file_exists($autoLoad = __DIR__ . '/../../vendor/autoload.php')) {
54
+if (file_exists($autoLoad = __DIR__.'/../../vendor/autoload.php')) {
55 55
 	include_once $autoLoad;
56 56
 }
57 57
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 		return [
142 142
 			'id'    => self::APP_ID,
143 143
 			'order' => 5,
144
-			'href'  => $urlGen->linkToRoute(self::APP_ID . '.Navigation.navigate'),
144
+			'href'  => $urlGen->linkToRoute(self::APP_ID.'.Navigation.navigate'),
145 145
 			'icon'  => $urlGen->imagePath(self::APP_ID, 'fulltextsearch.svg'),
146 146
 			'name'  => 'Search'
147 147
 		];
Please login to merge, or discard this patch.
lib/Tools/Traits/TArrayTools.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -400,7 +400,7 @@
 block discarded – undo
400 400
 		foreach ($keys as $key) {
401 401
 			if (!array_key_exists($key, $arr)) {
402 402
 				throw new MalformedArrayException(
403
-					'source: ' . json_encode($arr) . ' - missing key: ' . $key
403
+					'source: '.json_encode($arr).' - missing key: '.$key
404 404
 				);
405 405
 			}
406 406
 		}
Please login to merge, or discard this patch.