diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-07-30 08:10:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-30 08:10:50 +0200 |
commit | e492f8da132ba5ca2b421f434a1bdf0af23b1783 (patch) | |
tree | 50a39cd71fd560dff1a05d013b40753e4282b971 /src | |
parent | d69a66a58e958a5aa426085083bb93637ca3f61f (diff) | |
parent | fe312015d2902dcc2e08b02ab4307da5c206217a (diff) | |
download | wallabag-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')
-rw-r--r-- | src/Wallabag/ImportBundle/Import/BrowserImport.php | 2 |
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 | } |