From: Nicolas Hart Date: Sat, 29 Jul 2017 20:59:11 +0000 (+0200) Subject: Add missing abstract method prepareEntry in BrowserImport X-Git-Tag: 2.3.0~31^2~31^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=fe312015d2902dcc2e08b02ab4307da5c206217a;p=github%2Fwallabag%2Fwallabag.git Add missing abstract method prepareEntry in BrowserImport --- 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 return $importedEntry; } + + abstract protected function prepareEntry(array $entry = []); }