Completed
Pull Request — master (#18)
by yuuki
03:11
created
src/FluentHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Please login to merge, or discard this patch.
src/Writer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Please login to merge, or discard this patch.
src/LogServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         /**
37 37
          * for package configure
38 38
          */
39
-        $configPath = __DIR__ . '/config/fluent.php';
39
+        $configPath = __DIR__.'/config/fluent.php';
40 40
         $this->mergeConfigFrom($configPath, 'fluent');
41 41
         $this->publishes([$configPath => config_path('fluent.php')], 'log');
42 42
         parent::register();
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         }
76 76
         $log->useFluentLogger(
77 77
             $configure['host'] ?? FluentLogger::DEFAULT_ADDRESS,
78
-            (int)$configure['port'] ?? FluentLogger::DEFAULT_LISTEN_PORT,
78
+            (int) $configure['port'] ?? FluentLogger::DEFAULT_LISTEN_PORT,
79 79
             $configure['options'] ?? [],
80 80
             $configure['tagFormat'] ?? null
81 81
         );
Please login to merge, or discard this patch.