Completed
Push — master ( 52aff9...2d40fa )
by Darko
38s queued 10s
created
app/Services/TvProcessor.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
 class TvProcessor
14 14
 {
15 15
     // Processing modes
16
-    public const MODE_PIPELINE = 'pipeline';  // Sequential processing (efficient, reduces API calls)
16
+    public const MODE_PIPELINE = 'pipeline'; // Sequential processing (efficient, reduces API calls)
17 17
 
18
-    public const MODE_PARALLEL = 'parallel';  // Parallel processing (faster, more API calls)
18
+    public const MODE_PARALLEL = 'parallel'; // Parallel processing (faster, more API calls)
19 19
 
20 20
     private bool $echooutput;
21 21
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     private function displayHeader(string $guidChar = ''): void
135 135
     {
136
-        if (! $this->echooutput) {
136
+        if (!$this->echooutput) {
137 137
             return;
138 138
         }
139 139
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     private function displayHeaderParallel(string $guidChar = ''): void
159 159
     {
160
-        if (! $this->echooutput) {
160
+        if (!$this->echooutput) {
161 161
             return;
162 162
         }
163 163
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     private function displayProviderHeader(string $providerName, int $step, int $total): void
183 183
     {
184
-        if (! $this->echooutput) {
184
+        if (!$this->echooutput) {
185 185
             return;
186 186
         }
187 187
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
      */
201 201
     private function displayProviderComplete(string $providerName, float $elapsedTime): void
202 202
     {
203
-        if (! $this->echooutput) {
203
+        if (!$this->echooutput) {
204 204
             return;
205 205
         }
206 206
 
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      */
219 219
     private function displaySummary(): void
220 220
     {
221
-        if (! $this->echooutput) {
221
+        if (!$this->echooutput) {
222 222
             return;
223 223
         }
224 224
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     private function displaySummaryParallel(float $totalTime): void
236 236
     {
237
-        if (! $this->echooutput) {
237
+        if (!$this->echooutput) {
238 238
             return;
239 239
         }
240 240
 
Please login to merge, or discard this patch.