@@ -32,14 +32,14 @@ |
||
| 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). |
@@ -12,7 +12,7 @@ |
||
| 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 | |