aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/WallabagImport.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-02-27 15:31:57 +0100
committerGitHub <noreply@github.com>2019-02-27 15:31:57 +0100
commitfc4c1f50b41f93170bca587730193386b6c2df38 (patch)
tree994fc7fa9e96ef9f15ef311cbc103fab41746e0f /src/Wallabag/ImportBundle/Import/WallabagImport.php
parenta86c3f1759a3c0ecbf095888789c2a08d71b5c09 (diff)
parent8c0ba953070dca22e9a06999cfe355ea01847c64 (diff)
downloadwallabag-fc4c1f50b41f93170bca587730193386b6c2df38.tar.gz
wallabag-fc4c1f50b41f93170bca587730193386b6c2df38.tar.zst
wallabag-fc4c1f50b41f93170bca587730193386b6c2df38.zip
Merge pull request #3857 from wallabag/php73
Replace continue; with break; to avoid PHP 7.3 warnings
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/WallabagImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/WallabagImport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/WallabagImport.php b/src/Wallabag/ImportBundle/Import/WallabagImport.php
index c3a142b9..75a28fbf 100644
--- a/src/Wallabag/ImportBundle/Import/WallabagImport.php
+++ b/src/Wallabag/ImportBundle/Import/WallabagImport.php
@@ -122,7 +122,7 @@ abstract class WallabagImport extends AbstractImport
122 // update entry with content (in case fetching failed, the given entry will be return) 122 // update entry with content (in case fetching failed, the given entry will be return)
123 $this->fetchContent($entry, $data['url'], $data); 123 $this->fetchContent($entry, $data['url'], $data);
124 124
125 if (array_key_exists('tags', $data)) { 125 if (\array_key_exists('tags', $data)) {
126 $this->tagsAssigner->assignTagsToEntry( 126 $this->tagsAssigner->assignTagsToEntry(
127 $entry, 127 $entry,
128 $data['tags'], 128 $data['tags'],