aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2019-01-12 13:09:36 +0100
committerThomas Citharel <tcit@tcit.fr>2019-01-12 13:09:36 +0100
commitceddccb736d7c82ffae068df4d9f334a48aff2f4 (patch)
treef079612ca9b3bde8189c8152da0742e63da9bfdc /src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php
parent5c331bf0f9ef679aaf91ef29b13120272fcccbf5 (diff)
downloadwallabag-php73.tar.gz
wallabag-php73.tar.zst
wallabag-php73.zip
Replace continue; with break; to avoid PHP 7.3 warningsphp73
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php')
-rw-r--r--src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php b/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php
index 90e00c62..2e57aac8 100644
--- a/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php
+++ b/src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php
@@ -114,7 +114,7 @@ class GrabySiteConfigBuilder implements SiteConfigBuilder
114 $extraFields = []; 114 $extraFields = [];
115 foreach ($extraFieldsStrings as $extraField) { 115 foreach ($extraFieldsStrings as $extraField) {
116 if (false === strpos($extraField, '=')) { 116 if (false === strpos($extraField, '=')) {
117 continue; 117 break;
118 } 118 }
119 119
120 list($fieldName, $fieldValue) = explode('=', $extraField, 2); 120 list($fieldName, $fieldValue) = explode('=', $extraField, 2);