mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 11:31:05 +00:00
CS
This commit is contained in:
parent
3849a9f323
commit
3aca0a9f00
4 changed files with 2 additions and 6 deletions
|
@ -18,6 +18,8 @@ abstract class AbstractImport implements ImportInterface
|
||||||
protected $producer;
|
protected $producer;
|
||||||
protected $user;
|
protected $user;
|
||||||
protected $markAsRead;
|
protected $markAsRead;
|
||||||
|
protected $skippedEntries = 0;
|
||||||
|
protected $importedEntries = 0;
|
||||||
|
|
||||||
public function __construct(EntityManager $em, ContentProxy $contentProxy)
|
public function __construct(EntityManager $em, ContentProxy $contentProxy)
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,8 +14,6 @@ class PocketImport extends AbstractImport
|
||||||
{
|
{
|
||||||
private $client;
|
private $client;
|
||||||
private $consumerKey;
|
private $consumerKey;
|
||||||
private $skippedEntries = 0;
|
|
||||||
private $importedEntries = 0;
|
|
||||||
private $accessToken;
|
private $accessToken;
|
||||||
|
|
||||||
const NB_ELEMENTS = 5000;
|
const NB_ELEMENTS = 5000;
|
||||||
|
|
|
@ -6,8 +6,6 @@ use Wallabag\CoreBundle\Entity\Entry;
|
||||||
|
|
||||||
class ReadabilityImport extends AbstractImport
|
class ReadabilityImport extends AbstractImport
|
||||||
{
|
{
|
||||||
private $skippedEntries = 0;
|
|
||||||
private $importedEntries = 0;
|
|
||||||
private $filepath;
|
private $filepath;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,8 +6,6 @@ use Wallabag\CoreBundle\Entity\Entry;
|
||||||
|
|
||||||
abstract class WallabagImport extends AbstractImport
|
abstract class WallabagImport extends AbstractImport
|
||||||
{
|
{
|
||||||
protected $skippedEntries = 0;
|
|
||||||
protected $importedEntries = 0;
|
|
||||||
protected $filepath;
|
protected $filepath;
|
||||||
// untitled in all languages from v1
|
// untitled in all languages from v1
|
||||||
protected $untitled = [
|
protected $untitled = [
|
||||||
|
|
Loading…
Reference in a new issue