Completed
Push — master ( e59301...4f6165 )
by Neomerx
03:58
created
src/Packages/Cors/CorsSettings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
         $appConfig = $this->getAppConfig();
106 106
 
107
-        $defaults[static::KEY_LOG_IS_ENABLED] = (bool)($appConfig[A::KEY_IS_LOG_ENABLED] ?? false);
107
+        $defaults[static::KEY_LOG_IS_ENABLED] = (bool) ($appConfig[A::KEY_IS_LOG_ENABLED] ?? false);
108 108
 
109 109
         if (array_key_exists(A::KEY_APP_ORIGIN_SCHEMA, $appConfig) === true &&
110 110
             array_key_exists(A::KEY_APP_ORIGIN_HOST, $appConfig) === true &&
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
              * @see http://php.net/manual/function.parse-url.php
117 117
              */
118 118
             $defaults[static::KEY_SERVER_ORIGIN] = [
119
-                static::KEY_SERVER_ORIGIN_HOST => (string)$appConfig[A::KEY_APP_ORIGIN_HOST],
120
-                static::KEY_SERVER_ORIGIN_PORT => (string)$appConfig[A::KEY_APP_ORIGIN_PORT],
119
+                static::KEY_SERVER_ORIGIN_HOST => (string) $appConfig[A::KEY_APP_ORIGIN_HOST],
120
+                static::KEY_SERVER_ORIGIN_PORT => (string) $appConfig[A::KEY_APP_ORIGIN_PORT],
121 121
             ];
122 122
         }
123 123
 
Please login to merge, or discard this patch.