Skip to content

Commit 3abf529

Browse files
Copilotwilr
andauthored
Fix phpcs lint issues (missing newlines, spacing)
Co-authored-by: wilr <101629+wilr@users.noreply.github.com>
1 parent d1165fc commit 3abf529

9 files changed

Lines changed: 9 additions & 9 deletions

src/Forms/CheckoutComponentValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function php($data): bool
4141
$valid = false;
4242
}
4343

44-
if(!$valid) {
44+
if (!$valid) {
4545
$this->form->sessionMessage(
4646
_t(
4747
__CLASS__ . ".InvalidDataMessage",

src/Tasks/CalculateProductPopularity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ public function viasql(): void
5050
DB::query($sql);
5151
}
5252
}
53-
}
53+
}

src/Tasks/CartCleanupTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ protected function log(string $msg): void
7070
{
7171
$this->output->writeln($msg);
7272
}
73-
}
73+
}

src/Tasks/CustomersToGroupTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ protected function execute(InputInterface $input, PolyOutput $output): int
7777
}
7878
return Command::SUCCESS;
7979
}
80-
}
80+
}

src/Tasks/PopulateCartTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ protected function execute(InputInterface $input, PolyOutput $output): int
4949
$output->writeln('Cart populated with ' . $count . ' random products.');
5050
return Command::SUCCESS;
5151
}
52-
}
52+
}

src/Tasks/PopulateShopTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,4 @@ protected function execute(InputInterface $input, PolyOutput $output): int
166166
$this->extend('afterPopulate');
167167
return Command::SUCCESS;
168168
}
169-
}
169+
}

src/Tasks/RecalculateAllOrdersTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ protected function execute(InputInterface $input, PolyOutput $output): int
3939
}
4040
return Command::SUCCESS;
4141
}
42-
}
42+
}

src/Tasks/ShopEmailPreviewTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ protected function execute(InputInterface $input, PolyOutput $output): int
8989

9090
return Command::SUCCESS;
9191
}
92-
}
92+
}

src/Tasks/ShopMigrationTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,4 @@ public function migrateShippingTaxValues(): void
217217
//DB::query("ALTER TABLE \"Order\" CHANGE COLUMN \"Shipping\" \"_obsolete_Shipping\" decimal(9,2)");
218218
//DB::query("ALTER TABLE \"Order\" CHANGE COLUMN \"AddedTax\" \"_obsolete_AddedTax\" decimal(9,2)");
219219
}
220-
}
220+
}

0 commit comments

Comments
 (0)