Few phpDoc fix

And some little mistakes
This commit is contained in:
Jeremy Benoist
2016-01-03 10:59:55 +01:00
parent c5c7f90a81
commit 8eedc8cfac
6 changed files with 27 additions and 16 deletions

View File

@ -18,6 +18,7 @@ class PocketImport implements ImportInterface
private $em;
private $contentProxy;
private $logger;
private $client;
private $consumerKey;
private $skippedEntries = 0;
private $importedEntries = 0;
@ -255,7 +256,7 @@ class PocketImport implements ImportInterface
// flush every 20 entries
if (($i % 20) === 0) {
$em->flush();
$this->em->flush();
}
++$i;
}