Merge pull request #3298 from nclsHart/fix-namespace-phpdoc

Fix some namespaces and phpdoc
This commit is contained in:
Jérémy Benoist
2017-07-30 08:27:39 +02:00
committed by GitHub
9 changed files with 17 additions and 8 deletions

View File

@ -3,7 +3,9 @@
namespace Wallabag\ImportBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Wallabag\ImportBundle\Form\Type\UploadImportType;
/**

View File

@ -4,7 +4,6 @@ namespace Wallabag\ImportBundle\Import;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Event\EntrySavedEvent;
use Wallabag\UserBundle\Entity\User;
abstract class BrowserImport extends AbstractImport
{