aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/BrowserImport.php
diff options
context:
space:
mode:
authorNicolas Hart <contact@nclshart.net>2017-07-29 22:59:11 +0200
committerNicolas Hart <contact@nclshart.net>2017-07-29 22:59:11 +0200
commitfe312015d2902dcc2e08b02ab4307da5c206217a (patch)
tree50a39cd71fd560dff1a05d013b40753e4282b971 /src/Wallabag/ImportBundle/Import/BrowserImport.php
parentd69a66a58e958a5aa426085083bb93637ca3f61f (diff)
downloadwallabag-fe312015d2902dcc2e08b02ab4307da5c206217a.tar.gz
wallabag-fe312015d2902dcc2e08b02ab4307da5c206217a.tar.zst
wallabag-fe312015d2902dcc2e08b02ab4307da5c206217a.zip
Add missing abstract method prepareEntry in BrowserImport
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/BrowserImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/BrowserImport.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Import/BrowserImport.php b/src/Wallabag/ImportBundle/Import/BrowserImport.php
index f1195824..4d3073b7 100644
--- a/src/Wallabag/ImportBundle/Import/BrowserImport.php
+++ b/src/Wallabag/ImportBundle/Import/BrowserImport.php
@@ -232,4 +232,6 @@ abstract class BrowserImport extends AbstractImport
232 232
233 return $importedEntry; 233 return $importedEntry;
234 } 234 }
235
236 abstract protected function prepareEntry(array $entry = []);
235} 237}