mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 03:21:01 +00:00
Merge pull request #6808 from yguedidi/make-importcontroller-extends-abstractcontroller
Make ImportController extends AbstractController
This commit is contained in:
commit
65915004e0
1 changed files with 2 additions and 2 deletions
|
@ -4,13 +4,13 @@ namespace Wallabag\ImportBundle\Controller;
|
||||||
|
|
||||||
use Craue\ConfigBundle\Util\Config;
|
use Craue\ConfigBundle\Util\Config;
|
||||||
use Predis\Client;
|
use Predis\Client;
|
||||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
use Symfony\Component\Routing\Annotation\Route;
|
use Symfony\Component\Routing\Annotation\Route;
|
||||||
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
|
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
|
||||||
use Wallabag\ImportBundle\Consumer\RabbitMQConsumerTotalProxy;
|
use Wallabag\ImportBundle\Consumer\RabbitMQConsumerTotalProxy;
|
||||||
use Wallabag\ImportBundle\Import\ImportChain;
|
use Wallabag\ImportBundle\Import\ImportChain;
|
||||||
|
|
||||||
class ImportController extends Controller
|
class ImportController extends AbstractController
|
||||||
{
|
{
|
||||||
private RabbitMQConsumerTotalProxy $rabbitMQConsumerTotalProxy;
|
private RabbitMQConsumerTotalProxy $rabbitMQConsumerTotalProxy;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue