diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-07-30 08:27:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-30 08:27:39 +0200 |
commit | 4fc7eba34904a062cddf1e61956c48f27cb2e06c (patch) | |
tree | 151d8899c7fd3dd79fdb27a457c1780e355b1df0 /src/Wallabag/ImportBundle | |
parent | e492f8da132ba5ca2b421f434a1bdf0af23b1783 (diff) | |
parent | 52b84c11a5b5474cd45271d937a46c6adfdf2749 (diff) | |
download | wallabag-4fc7eba34904a062cddf1e61956c48f27cb2e06c.tar.gz wallabag-4fc7eba34904a062cddf1e61956c48f27cb2e06c.tar.zst wallabag-4fc7eba34904a062cddf1e61956c48f27cb2e06c.zip |
Merge pull request #3298 from nclsHart/fix-namespace-phpdoc
Fix some namespaces and phpdoc
Diffstat (limited to 'src/Wallabag/ImportBundle')
-rw-r--r-- | src/Wallabag/ImportBundle/Controller/WallabagController.php | 2 | ||||
-rw-r--r-- | src/Wallabag/ImportBundle/Import/BrowserImport.php | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Controller/WallabagController.php b/src/Wallabag/ImportBundle/Controller/WallabagController.php index 7b61805b..6e6524b4 100644 --- a/src/Wallabag/ImportBundle/Controller/WallabagController.php +++ b/src/Wallabag/ImportBundle/Controller/WallabagController.php | |||
@@ -3,7 +3,9 @@ | |||
3 | namespace Wallabag\ImportBundle\Controller; | 3 | namespace Wallabag\ImportBundle\Controller; |
4 | 4 | ||
5 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | 5 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
6 | use Symfony\Component\HttpFoundation\RedirectResponse; | ||
6 | use Symfony\Component\HttpFoundation\Request; | 7 | use Symfony\Component\HttpFoundation\Request; |
8 | use Symfony\Component\HttpFoundation\Response; | ||
7 | use Wallabag\ImportBundle\Form\Type\UploadImportType; | 9 | use Wallabag\ImportBundle\Form\Type\UploadImportType; |
8 | 10 | ||
9 | /** | 11 | /** |
diff --git a/src/Wallabag/ImportBundle/Import/BrowserImport.php b/src/Wallabag/ImportBundle/Import/BrowserImport.php index 4d3073b7..78077324 100644 --- a/src/Wallabag/ImportBundle/Import/BrowserImport.php +++ b/src/Wallabag/ImportBundle/Import/BrowserImport.php | |||
@@ -4,7 +4,6 @@ namespace Wallabag\ImportBundle\Import; | |||
4 | 4 | ||
5 | use Wallabag\CoreBundle\Entity\Entry; | 5 | use Wallabag\CoreBundle\Entity\Entry; |
6 | use Wallabag\CoreBundle\Event\EntrySavedEvent; | 6 | use Wallabag\CoreBundle\Event\EntrySavedEvent; |
7 | use Wallabag\UserBundle\Entity\User; | ||
8 | 7 | ||
9 | abstract class BrowserImport extends AbstractImport | 8 | abstract class BrowserImport extends AbstractImport |
10 | { | 9 | { |