aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/AbstractImport.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2019-01-12 13:09:36 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-02-27 14:29:14 +0100
commit3784688a88230d9c3aec4ca518be52ea1c70aeb9 (patch)
treee0bf2cec861ac74ec5e1e4ef482e0506087a545c /src/Wallabag/ImportBundle/Import/AbstractImport.php
parenta86c3f1759a3c0ecbf095888789c2a08d71b5c09 (diff)
downloadwallabag-3784688a88230d9c3aec4ca518be52ea1c70aeb9.tar.gz
wallabag-3784688a88230d9c3aec4ca518be52ea1c70aeb9.tar.zst
wallabag-3784688a88230d9c3aec4ca518be52ea1c70aeb9.zip
Replace continue; with break; to avoid PHP 7.3 warnings
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/AbstractImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/AbstractImport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/AbstractImport.php b/src/Wallabag/ImportBundle/Import/AbstractImport.php
index d39d71b6..5ae4aa8d 100644
--- a/src/Wallabag/ImportBundle/Import/AbstractImport.php
+++ b/src/Wallabag/ImportBundle/Import/AbstractImport.php
@@ -169,7 +169,7 @@ abstract class AbstractImport implements ImportInterface
169 $entry = $this->parseEntry($importedEntry); 169 $entry = $this->parseEntry($importedEntry);
170 170
171 if (null === $entry) { 171 if (null === $entry) {
172 continue; 172 break;
173 } 173 }
174 174
175 // store each entry to be flushed so we can trigger the entry.saved event for each of them 175 // store each entry to be flushed so we can trigger the entry.saved event for each of them