aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.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/CoreBundle/Helper/RuleBasedTagger.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/CoreBundle/Helper/RuleBasedTagger.php')
-rw-r--r--src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php b/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php
index 63f65067..da02fbee 100644
--- a/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php
+++ b/src/Wallabag/CoreBundle/Helper/RuleBasedTagger.php
@@ -36,7 +36,7 @@ class RuleBasedTagger
36 36
37 foreach ($rules as $rule) { 37 foreach ($rules as $rule) {
38 if (!$this->rulerz->satisfies($entry, $rule->getRule())) { 38 if (!$this->rulerz->satisfies($entry, $rule->getRule())) {
39 continue; 39 break;
40 } 40 }
41 41
42 $this->logger->info('Matching rule.', [ 42 $this->logger->info('Matching rule.', [