Completed
Push — master ( 8e829c...fc40f2 )
by Neomerx
01:53
created
src/Packages/Monolog/MonologFileSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Packages/Cookies/CookieContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.
src/Packages/Session/SessionContainerConfigurator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Packages/Authorization/AuthorizationSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.