@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | public function newApp(AbstractAppMeta $appMeta, $contexts, Cache $cache = null) |
55 | 55 | { |
56 | 56 | $cache = $cache ?: $this->getCache($appMeta, $contexts); |
57 | - $appId = $appMeta->name . $contexts; |
|
57 | + $appId = $appMeta->name.$contexts; |
|
58 | 58 | $app = $cache->fetch($appId); |
59 | 59 | if ($app) { |
60 | 60 | return $app; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | private function getCache(AbstractAppMeta $appMeta, $contexts) |
77 | 77 | { |
78 | - $isDeveop = ! is_int(strpos($contexts, 'prod')); |
|
78 | + $isDeveop = !is_int(strpos($contexts, 'prod')); |
|
79 | 79 | if ($isDeveop) { |
80 | 80 | return new VoidCache; |
81 | 81 | } |