aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/AbstractImport.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-05 09:35:42 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-11 21:58:55 +0200
commit3aca0a9f00417b64203a660dee0a2b4c0fe22ac8 (patch)
tree502decde8d28b6a29e7c3b8fffbc7a44767e3d9d /src/Wallabag/ImportBundle/Import/AbstractImport.php
parent3849a9f3231c0109c87af085452c3ac5e4aed303 (diff)
downloadwallabag-3aca0a9f00417b64203a660dee0a2b4c0fe22ac8.tar.gz
wallabag-3aca0a9f00417b64203a660dee0a2b4c0fe22ac8.tar.zst
wallabag-3aca0a9f00417b64203a660dee0a2b4c0fe22ac8.zip
CS
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/AbstractImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/AbstractImport.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Import/AbstractImport.php b/src/Wallabag/ImportBundle/Import/AbstractImport.php
index b085dc3a..8610062d 100644
--- a/src/Wallabag/ImportBundle/Import/AbstractImport.php
+++ b/src/Wallabag/ImportBundle/Import/AbstractImport.php
@@ -18,6 +18,8 @@ abstract class AbstractImport implements ImportInterface
18 protected $producer; 18 protected $producer;
19 protected $user; 19 protected $user;
20 protected $markAsRead; 20 protected $markAsRead;
21 protected $skippedEntries = 0;
22 protected $importedEntries = 0;
21 23
22 public function __construct(EntityManager $em, ContentProxy $contentProxy) 24 public function __construct(EntityManager $em, ContentProxy $contentProxy)
23 { 25 {