Completed
Push — master ( 8efac5...a0c6e2 )
by Gabor
04:36
created
src/WebHemi/Application/EnvironmentManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         ini_set('session.cookie_httponly', '1');
208 208
 
209 209
         // hide session name
210
-        session_name(self::COOKIE_SESSION_PREFIX . '-' . bin2hex(self::SESSION_SALT));
210
+        session_name(self::COOKIE_SESSION_PREFIX.'-'.bin2hex(self::SESSION_SALT));
211 211
         // set session lifetime to 1 hour
212 212
         session_set_cookie_params(3600);
213 213
     }
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 
242 242
         $this->subDomain = $subDomain;
243 243
         $this->mainDomain = $domain;
244
-        $this->applicationDomain = $this->subDomain.'.'. $this->mainDomain;
244
+        $this->applicationDomain = $this->subDomain.'.'.$this->mainDomain;
245 245
     }
246 246
 
247 247
     /**
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Router/FastRoute/FastRouteAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $routes = $this->config->toArray();
49 49
 
50 50
         $this->adapter = \FastRoute\simpleDispatcher(
51
-            function (RouteCollector $routeCollector) use ($routes) {
51
+            function(RouteCollector $routeCollector) use ($routes) {
52 52
                 foreach ($routes as $route) {
53 53
                     $method   = $route['allowed_methods'];
54 54
                     $uri      = $route['path'];
Please login to merge, or discard this patch.