Completed
Pull Request — master (#24)
by
unknown
05:51 queued 03:23
created
src/LogServiceProvider.php 1 patch
Spacing   +2 added lines, -2 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
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         /**
35 35
          * for package configure
36 36
          */
37
-        $configPath = __DIR__ . '/config/fluent.php';
37
+        $configPath = __DIR__.'/config/fluent.php';
38 38
         $this->mergeConfigFrom($configPath, 'fluent');
39 39
         $this->publishes([$configPath => config_path('fluent.php')], 'log');
40 40
         parent::register();
Please login to merge, or discard this patch.
src/CreateFluentLogger.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,6 @@
 block discarded – undo
105 105
     /**
106 106
      * Parse the string level into a Monolog constant.
107 107
      *
108
-     * @param array $config
109 108
      *
110 109
      * @throws \InvalidArgumentException
111 110
      *
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
  * Created by PhpStorm.
5 5
  * User: christopherfuchs
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     protected function formatter() : FormatterInterface
101 101
     {
102
-        return tap(new LineFormatter(null, null, true, true), function ($formatter) {
102
+        return tap(new LineFormatter(null, null, true, true), function($formatter) {
103 103
             $formatter->includeStacktraces();
104 104
         });
105 105
     }
Please login to merge, or discard this patch.