@@ -80,13 +80,13 @@ |
||
| 80 | 80 | function cleanFormattedContent(): void |
| 81 | 81 | { |
| 82 | 82 | cleanOneTable('product', [ |
| 83 | - 'description' => fn ($v) => cleanRichText($v), |
|
| 84 | - 'content' => fn ($v) => strip_tags($v), |
|
| 83 | + 'description' => fn($v) => cleanRichText($v), |
|
| 84 | + 'content' => fn($v) => strip_tags($v), |
|
| 85 | 85 | ]); |
| 86 | 86 | |
| 87 | 87 | cleanOneTable('news', [ |
| 88 | - 'description' => fn ($v) => strip_tags($v), |
|
| 89 | - 'content' => fn ($v) => cleanRichText($v), |
|
| 88 | + 'description' => fn($v) => strip_tags($v), |
|
| 89 | + 'content' => fn($v) => cleanRichText($v), |
|
| 90 | 90 | ]); |
| 91 | 91 | } |
| 92 | 92 | |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | Helper::throwIfDenied(new Order(), 'create'); |
| 40 | 40 | |
| 41 | 41 | $input = $args['input']; |
| 42 | - $input['orderLines'] = array_map(fn ($line) => Utility::entityIdToModel($line), $input['orderLines']); |
|
| 42 | + $input['orderLines'] = array_map(fn($line) => Utility::entityIdToModel($line), $input['orderLines']); |
|
| 43 | 43 | $input['country'] = isset($input['country']) ? $input['country']->getEntity() : null; |
| 44 | 44 | |
| 45 | 45 | /** @var Invoicer $invoicer */ |
@@ -32,6 +32,4 @@ |
||
| 32 | 32 | user.subscription_type = IF(user.subscription_type IN ('paper', 'both'), 'both', 'digital') |
| 33 | 33 | STRING; |
| 34 | 34 | |
| 35 | - $connection->executeUpdate($sqlUpgrade); |
|
| 36 | - } |
|
| 37 | -} |
|
| 35 | + $connection->executeUpdate($sqlUpgrade |
|
| 38 | 36 | \ No newline at end of file |
@@ -32,6 +32,4 @@ |
||
| 32 | 32 | user.subscription_type = IF(user.subscription_type IN ('paper', 'both'), 'both', 'digital') |
| 33 | 33 | STRING; |
| 34 | 34 | |
| 35 | - $connection->executeUpdate($sqlUpgrade); |
|
| 36 | - } |
|
| 37 | -} |
|
| 35 | + $connection->executeUpdate($sqlUpgrade |
|
| 38 | 36 | \ No newline at end of file |