aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/InstapaperImport.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/InstapaperImport.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/InstapaperImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/InstapaperImport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/InstapaperImport.php b/src/Wallabag/ImportBundle/Import/InstapaperImport.php
index e113ba00..60da7751 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, 'rb'); 65 $handle = fopen($this->filepath, 'rb');
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