aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2019-01-28 06:10:26 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-05-28 11:42:27 +0200
commit448d99f84e93697ce49ec31224addb1da1a37a9f (patch)
treedac85bc07ca0e6cf253d90b859811eaff28a4bd4 /src/Wallabag/CoreBundle
parent1048c9c4a811821b00cc04bfec905bebcc22bac4 (diff)
downloadwallabag-448d99f84e93697ce49ec31224addb1da1a37a9f.tar.gz
wallabag-448d99f84e93697ce49ec31224addb1da1a37a9f.tar.zst
wallabag-448d99f84e93697ce49ec31224addb1da1a37a9f.zip
CS
Diffstat (limited to 'src/Wallabag/CoreBundle')
-rw-r--r--src/Wallabag/CoreBundle/Helper/DownloadImages.php2
-rw-r--r--src/Wallabag/CoreBundle/Helper/HttpClientFactory.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/DownloadImages.php b/src/Wallabag/CoreBundle/Helper/DownloadImages.php
index e5749060..7a39a2e4 100644
--- a/src/Wallabag/CoreBundle/Helper/DownloadImages.php
+++ b/src/Wallabag/CoreBundle/Helper/DownloadImages.php
@@ -312,7 +312,7 @@ class DownloadImages
312 * Retrieve and validate the extension from the response of the url of the image. 312 * Retrieve and validate the extension from the response of the url of the image.
313 * 313 *
314 * @param ResponseInterface $res Http Response 314 * @param ResponseInterface $res Http Response
315 * @param string $imagePath Path from the src image from the content (used for log only) 315 * @param string $imagePath Path from the src image from the content (used for log only)
316 * 316 *
317 * @return string|false Extension name or false if validation failed 317 * @return string|false Extension name or false if validation failed
318 */ 318 */
diff --git a/src/Wallabag/CoreBundle/Helper/HttpClientFactory.php b/src/Wallabag/CoreBundle/Helper/HttpClientFactory.php
index 3e19a7be..b8e95381 100644
--- a/src/Wallabag/CoreBundle/Helper/HttpClientFactory.php
+++ b/src/Wallabag/CoreBundle/Helper/HttpClientFactory.php
@@ -6,9 +6,9 @@ use GuzzleHttp\Client as GuzzleClient;
6use GuzzleHttp\Cookie\CookieJar; 6use GuzzleHttp\Cookie\CookieJar;
7use GuzzleHttp\Event\SubscriberInterface; 7use GuzzleHttp\Event\SubscriberInterface;
8use Http\Adapter\Guzzle5\Client as GuzzleAdapter; 8use Http\Adapter\Guzzle5\Client as GuzzleAdapter;
9use Psr\Log\LoggerInterface;
10use Http\Client\HttpClient; 9use Http\Client\HttpClient;
11use Http\HttplugBundle\ClientFactory\ClientFactory; 10use Http\HttplugBundle\ClientFactory\ClientFactory;
11use Psr\Log\LoggerInterface;
12 12
13/** 13/**
14 * Builds and configures the HTTP client. 14 * Builds and configures the HTTP client.