@@ -57,7 +57,7 @@ |
||
| 57 | 57 | ); |
| 58 | 58 | assert(empty($logFile) === false, "Invalid Logs file name `$logFile`."); |
| 59 | 59 | |
| 60 | - $logPath = $logFolder . DIRECTORY_SEPARATOR . $logFile; |
|
| 60 | + $logPath = $logFolder.DIRECTORY_SEPARATOR.$logFile; |
|
| 61 | 61 | |
| 62 | 62 | return $defaults + [static::KEY_LOG_PATH => $logPath]; |
| 63 | 63 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | public static function configureContainer(LimoncelloContainerInterface $container): void |
| 37 | 37 | { |
| 38 | 38 | $container[CookieJarInterface::class] = |
| 39 | - function (PsrContainerInterface $container): CookieJarInterface { |
|
| 39 | + function(PsrContainerInterface $container): CookieJarInterface { |
|
| 40 | 40 | $settings = $container->get(SettingsProviderInterface::class)->get(CookieSettings::class); |
| 41 | 41 | |
| 42 | 42 | return new CookieJar( |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public static function configureContainer(LimoncelloContainerInterface $container): void |
| 36 | 36 | { |
| 37 | - $container[SessionInterface::class] = function (PsrContainerInterface $container): SessionInterface { |
|
| 37 | + $container[SessionInterface::class] = function(PsrContainerInterface $container): SessionInterface { |
|
| 38 | 38 | /** @var SessionFunctionsInterface $functions */ |
| 39 | 39 | $functions = $container->get(SessionFunctionsInterface::class); |
| 40 | 40 | $session = new Session($functions); |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | return $session; |
| 43 | 43 | }; |
| 44 | 44 | |
| 45 | - $container[SessionFunctionsInterface::class] = function (): SessionFunctionsInterface { |
|
| 45 | + $container[SessionFunctionsInterface::class] = function(): SessionFunctionsInterface { |
|
| 46 | 46 | $functions = new SessionFunctions(); |
| 47 | 47 | |
| 48 | 48 | return $functions; |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | "Invalid Policies folder `$policiesFolder`." |
| 62 | 62 | ); |
| 63 | 63 | assert(empty($policiesFileMask) === false, "Invalid Policies file mask `$policiesFileMask`."); |
| 64 | - $policiesPath = $policiesFolder . DIRECTORY_SEPARATOR . $policiesFileMask; |
|
| 64 | + $policiesPath = $policiesFolder.DIRECTORY_SEPARATOR.$policiesFileMask; |
|
| 65 | 65 | |
| 66 | 66 | $topPolicyName = $defaults[static::KEY_TOP_POLICY_NAME]; |
| 67 | 67 | |