diff options
author | Thomas Citharel <tcit@tcit.fr> | 2019-01-12 13:09:36 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-02-27 14:29:14 +0100 |
commit | 3784688a88230d9c3aec4ca518be52ea1c70aeb9 (patch) | |
tree | e0bf2cec861ac74ec5e1e4ef482e0506087a545c /src/Wallabag/ImportBundle | |
parent | a86c3f1759a3c0ecbf095888789c2a08d71b5c09 (diff) | |
download | wallabag-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')
-rw-r--r-- | src/Wallabag/ImportBundle/Import/AbstractImport.php | 2 | ||||
-rw-r--r-- | src/Wallabag/ImportBundle/Import/BrowserImport.php | 6 | ||||
-rw-r--r-- | src/Wallabag/ImportBundle/Import/InstapaperImport.php | 2 |
3 files changed, 5 insertions, 5 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 |
diff --git a/src/Wallabag/ImportBundle/Import/BrowserImport.php b/src/Wallabag/ImportBundle/Import/BrowserImport.php index 804bc6cd..178ebe8e 100644 --- a/src/Wallabag/ImportBundle/Import/BrowserImport.php +++ b/src/Wallabag/ImportBundle/Import/BrowserImport.php | |||
@@ -158,13 +158,13 @@ abstract class BrowserImport extends AbstractImport | |||
158 | 158 | ||
159 | foreach ($entries as $importedEntry) { | 159 | foreach ($entries as $importedEntry) { |
160 | if ((array) $importedEntry !== $importedEntry) { | 160 | if ((array) $importedEntry !== $importedEntry) { |
161 | continue; | 161 | break; |
162 | } | 162 | } |
163 | 163 | ||
164 | $entry = $this->parseEntry($importedEntry); | 164 | $entry = $this->parseEntry($importedEntry); |
165 | 165 | ||
166 | if (null === $entry) { | 166 | if (null === $entry) { |
167 | continue; | 167 | break; |
168 | } | 168 | } |
169 | 169 | ||
170 | // @see AbstractImport | 170 | // @see AbstractImport |
@@ -206,7 +206,7 @@ abstract class BrowserImport extends AbstractImport | |||
206 | { | 206 | { |
207 | foreach ($entries as $importedEntry) { | 207 | foreach ($entries as $importedEntry) { |
208 | if ((array) $importedEntry !== $importedEntry) { | 208 | if ((array) $importedEntry !== $importedEntry) { |
209 | continue; | 209 | break; |
210 | } | 210 | } |
211 | 211 | ||
212 | // set userId for the producer (it won't know which user is connected) | 212 | // set userId for the producer (it won't know which user is connected) |
diff --git a/src/Wallabag/ImportBundle/Import/InstapaperImport.php b/src/Wallabag/ImportBundle/Import/InstapaperImport.php index 439c978c..6b6b35af 100644 --- a/src/Wallabag/ImportBundle/Import/InstapaperImport.php +++ b/src/Wallabag/ImportBundle/Import/InstapaperImport.php | |||
@@ -65,7 +65,7 @@ class InstapaperImport extends AbstractImport | |||
65 | $handle = fopen($this->filepath, 'r'); | 65 | $handle = fopen($this->filepath, 'r'); |
66 | while (false !== ($data = fgetcsv($handle, 10240))) { | 66 | while (false !== ($data = fgetcsv($handle, 10240))) { |
67 | if ('URL' === $data[0]) { | 67 | if ('URL' === $data[0]) { |
68 | continue; | 68 | break; |
69 | } | 69 | } |
70 | 70 | ||
71 | // last element in the csv is the folder where the content belong | 71 | // last element in the csv is the folder where the content belong |