aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/BrowserImport.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-07-30 08:10:50 +0200
committerGitHub <noreply@github.com>2017-07-30 08:10:50 +0200
commite492f8da132ba5ca2b421f434a1bdf0af23b1783 (patch)
tree50a39cd71fd560dff1a05d013b40753e4282b971 /src/Wallabag/ImportBundle/Import/BrowserImport.php
parentd69a66a58e958a5aa426085083bb93637ca3f61f (diff)
parentfe312015d2902dcc2e08b02ab4307da5c206217a (diff)
downloadwallabag-e492f8da132ba5ca2b421f434a1bdf0af23b1783.tar.gz
wallabag-e492f8da132ba5ca2b421f434a1bdf0af23b1783.tar.zst
wallabag-e492f8da132ba5ca2b421f434a1bdf0af23b1783.zip
Merge pull request #3299 from nclsHart/missing-method-prepare-entry
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}