]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #3299 from nclsHart/missing-method-prepare-entry
authorJérémy Benoist <j0k3r@users.noreply.github.com>
Sun, 30 Jul 2017 06:10:50 +0000 (08:10 +0200)
committerGitHub <noreply@github.com>
Sun, 30 Jul 2017 06:10:50 +0000 (08:10 +0200)
Add missing abstract method prepareEntry in BrowserImport

src/Wallabag/ImportBundle/Import/BrowserImport.php

index f11958247e4f3ac8622add715c59ab1e1c583eab..4d3073b727724f61dd9862c578a732f53c93e5be 100644 (file)
@@ -232,4 +232,6 @@ abstract class BrowserImport extends AbstractImport
 
         return $importedEntry;
     }
+
+    abstract protected function prepareEntry(array $entry = []);
 }