[controller] add missing use statements to stub (#191)

This commit is contained in:
Andy Palmer 2021-07-13 15:47:03 +01:00 committed by GitHub
parent 2992656853
commit 75798144a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,8 @@ namespace Symfony\Bundle\FrameworkBundle\Controller;
use Symfony\Contracts\Service\ServiceSubscriberInterface;
use Psr\Container\ContainerInterface;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormTypeInterface;
class AbstractController implements ServiceSubscriberInterface
{