aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/WallabagV1Import.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-01-03 10:59:55 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-03 11:15:44 +0100
commit8eedc8cfacc07e998f6f0bcdfe5b76496a215ea2 (patch)
tree0468cbda100277f573e4f0f8ce02f8af3f42ccad /src/Wallabag/ImportBundle/Import/WallabagV1Import.php
parentc5c7f90a81d7a2082c7b6dad38c2a6dfdba8d016 (diff)
downloadwallabag-8eedc8cfacc07e998f6f0bcdfe5b76496a215ea2.tar.gz
wallabag-8eedc8cfacc07e998f6f0bcdfe5b76496a215ea2.tar.zst
wallabag-8eedc8cfacc07e998f6f0bcdfe5b76496a215ea2.zip
Few phpDoc fix
And some little mistakes
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/WallabagV1Import.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/WallabagV1Import.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php
index aff5af40..0866ebe9 100644
--- a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php
+++ b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php
@@ -149,7 +149,7 @@ class WallabagV1Import implements ImportInterface
149 149
150 // flush every 20 entries 150 // flush every 20 entries
151 if (($i % 20) === 0) { 151 if (($i % 20) === 0) {
152 $em->flush(); 152 $this->em->flush();
153 } 153 }
154 ++$i; 154 ++$i;
155 } 155 }