Passed
Push — develop ( 095617...cf3a49 )
by yuuki
04:17
created
src/FluentHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * FluentHandler constructor.
38 38
      *
39 39
      * @param LoggerInterface $logger
40
-     * @param bool|int        $level
40
+     * @param integer        $level
41 41
      * @param bool|true       $bubble
42 42
      */
43 43
     public function __construct(LoggerInterface $logger, $level = Logger::DEBUG, $bubble = true)
Please login to merge, or discard this patch.
src/Writer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
     /**
33 33
      * Register a fluent handler.
34 34
      *
35
-     * @param  string  $name
36 35
      * @param  string  $level
37 36
      * @return \Psr\Log\LoggerInterface
38 37
      */
Please login to merge, or discard this patch.
src/LogServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $this->mergeConfigFrom($configPath, 'fluent');
38 38
         $this->publishes([$configPath => config_path('fluent.php')], 'log');
39 39
 
40
-        $this->app->bind('fluent.handler', function ($app) {
40
+        $this->app->bind('fluent.handler', function($app) {
41 41
             return new RegisterPushHandler(
42 42
                 $app['Psr\Log\LoggerInterface'], $app['config']->get('fluent')
43 43
             );
Please login to merge, or discard this patch.