Passed
Push — master ( c92243...00f051 )
by Kirill
05:50 queued 12s
created
src/Dumper/src/Dumper.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * Directives for dump output forwarding.
31 31
      */
32 32
     public const OUTPUT            = 0;
33
-    public const RETURN            = 1;
33
+    public const return            = 1;
34 34
     public const LOGGER            = 2;
35 35
     public const ERROR_LOG         = 3;
36 36
     public const OUTPUT_CLI        = 4;
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         self::OUTPUT            => HtmlRenderer::class,
50 50
         self::OUTPUT_CLI        => PlainRenderer::class,
51 51
         self::OUTPUT_CLI_COLORS => ConsoleRenderer::class,
52
-        self::RETURN            => HtmlRenderer::class,
52
+        self::return            => HtmlRenderer::class,
53 53
         self::LOGGER            => PlainRenderer::class,
54 54
         self::ERROR_LOG         => PlainRenderer::class,
55 55
         self::ROADRUNNER        => PlainRenderer::class,
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                 break;
95 95
 
96 96
             case self::ROADRUNNER:
97
-            case self::RETURN:
97
+            case self::return:
98 98
                 return $dump;
99 99
 
100 100
             case self::LOGGER:
Please login to merge, or discard this patch.