Passed
Push — master ( ef23e7...786259 )
by Darko
09:23
created
app/Extensions/util/PhpYenc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@
 block discarded – undo
32 32
      * Maps yEnc encoded byte to decoded byte: (byte - 42) % 256
33 33
      * @var array<string, string>|null
34 34
      */
35
-    private static ?array $decodeTable = null;
35
+    private static ? array $decodeTable = null;
36 36
 
37 37
     /**
38 38
      * Pre-computed decode translation table for escaped characters.
39 39
      * Maps yEnc escaped byte to decoded byte: ((byte - 64) - 42) % 256
40 40
      * @var array<string, string>|null
41 41
      */
42
-    private static ?array $escapeDecodeTable = null;
42
+    private static ? array $escapeDecodeTable = null;
43 43
 
44 44
     /**
45 45
      * Initialize the decode translation tables (lazy initialization).
Please login to merge, or discard this patch.
app/Providers/TvProcessingServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function register(): void
14 14
     {
15
-        $this->app->singleton(TvProcessingPipeline::class, function ($app) {
15
+        $this->app->singleton(TvProcessingPipeline::class, function($app) {
16 16
             return TvProcessingPipeline::createDefault();
17 17
         });
18 18
 
Please login to merge, or discard this patch.