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
committerThomas Citharel <tcit@tcit.fr>2019-01-12 13:09:36 +0100
commitceddccb736d7c82ffae068df4d9f334a48aff2f4 (patch)
treef079612ca9b3bde8189c8152da0742e63da9bfdc /src/Wallabag/ImportBundle/Import/AbstractImport.php
parent5c331bf0f9ef679aaf91ef29b13120272fcccbf5 (diff)
downloadwallabag-ceddccb736d7c82ffae068df4d9f334a48aff2f4.tar.gz
wallabag-ceddccb736d7c82ffae068df4d9f334a48aff2f4.tar.zst
wallabag-ceddccb736d7c82ffae068df4d9f334a48aff2f4.zip
Replace continue; with break; to avoid PHP 7.3 warningsphp73
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 58a234f4..ea86c528 100644
--- a/src/Wallabag/ImportBundle/Import/AbstractImport.php
+++ b/src/Wallabag/ImportBundle/Import/AbstractImport.php
@@ -156,7 +156,7 @@ abstract class AbstractImport implements ImportInterface
156 $entry = $this->parseEntry($importedEntry); 156 $entry = $this->parseEntry($importedEntry);
157 157
158 if (null === $entry) { 158 if (null === $entry) {
159 continue; 159 break;
160 } 160 }
161 161
162 // store each entry to be flushed so we can trigger the entry.saved event for each of them 162 // store each entry to be flushed so we can trigger the entry.saved event for each of them