Skip to content

Commit 423bfdf

Browse files
kpodemskicoffrep
andauthored
Apply suggestions from code review
Co-authored-by: Patrick Coffre <103060695+coffrep@users.noreply.github.com>
1 parent 0f46703 commit 423bfdf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This devblog also hosts How-Tos on certain features, before they find their way
5252

5353
Any change you perform on your data will be updated almost instantly.
5454

55-
### Launching the site with docker
55+
### Launching the site with Docker
5656

5757
1. Make sure you're at the root of the project.
5858

content/news/posts/2025/breaking-change-guzzle-removal-v9.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Since PrestaShop no longer relies on Guzzle, keeping it in the core is unnecessa
2222

2323
With Guzzle no longer available by default, you must adjust your module. Here are a few solutions to replace it effectively.
2424

25-
### Use Symfony HTTP Client (recommended)
25+
### Use Symfony HTTP client (recommended)
2626

27-
The best way to avoid conflicts is to minimize external dependencies and rely on core libraries whenever possible. Since Symfony is the foundation of PrestaShop and will continue to be so in the future, it's a safe and stable dependency that won't be removed.
27+
The best way to avoid conflicts is to minimize external dependencies and rely on core libraries whenever possible. Since Symfony is the foundation of PrestaShop and will continue to be in the future, it's a safe and stable dependency that won't be removed.
2828

29-
Symfony includes an HTTP client component, which has been integrated into PrestaShop since version 1.7.7. If your module targets PrestaShop 1.7.7 or later, you can safely use the Symfony HTTP Client. You can find more details on how to implement it in the [Symfony documentation](https://symfony.com/doc/current/http_client.html).
29+
Symfony includes an HTTP client component, which has been integrated into PrestaShop since version 1.7.7. If your module targets PrestaShop 1.7.7 or later, you can safely use the Symfony HTTP client. You can find more details on how to implement it in the [Symfony documentation](https://symfony.com/doc/current/http_client.html).
3030

3131
```php
3232
use Symfony\Component\HttpClient\HttpClient;
@@ -51,7 +51,7 @@ If you're developing a custom module for a specific shop with a controlled envir
5151

5252
## What if I want my module to work across multiple PrestaShop versions?
5353

54-
Since the Symfony HTTP Client is only available from PrestaShop 1.7.7 onward, you'll need to adapt your code based on the PrestaShop version your module is running on.
54+
Since the Symfony HTTP client is only available from PrestaShop 1.7.7 onward, you'll need to adapt your code based on the PrestaShop version your module is running on.
5555

5656
Here's a very quick and simple example:
5757

0 commit comments

Comments
 (0)