@@ -51,7 +51,7 @@ discard block |
||
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 |
||
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 | ]; |
@@ -400,7 +400,7 @@ |
||
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 | } |