Impossible d'installer les annotations

Symfony et j'ai un petit problème. Avec le code suivant : ```

2
Ratchet (Websocket sur Infomaniak)

Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class WebSocketServerCommand extends Command { protected static $defaultName = "run:websocket-server"; protected function execute

0
PHPUnit et GitLab CI/CD

symfony-cmd", "assets:install %PUBLIC_DIR%": "symfony-cmd" }, "post-install-cmd": [ "@auto-scripts" ], "post-update-cmd": [ "@auto-scripts" ] }, "conflict": { "symfony/symfony": "*" }, "extra": { "symfony": { "allow-contrib": true, "require": "5.2.*" } } } ``` ### Ce que je veux

2
Page avec 6 boutons submit

Symfony ... ### Ce que je fais Voilà le code mon controller ```

12
Cannot autowire service "App\Controller...

Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class PropertyController extends AbstractController { /** * @var PropertyRepository */ private $repository; /** * @var ObjectManager */ public function __construct(PropertyRepository

2
Validation avec UniqueEntity Constraint

Symfony\Component\Validator\Constraints as Assert; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; /** * @ORM\Entity(repositoryClass=UserRepository

3
Did you forget a "use" statement for another namespace?

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; class MiseAJourCSVController extends AbstractController { ``` Chemin du fichier "vendor\sunra\php-simple-html-dom-parser

1
Erreur EntityManager#remove()

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\HttpFoundation\Request; use App\Entity\SuiviFrais; use Doctrine\Persistence\ManagerRegistry; use App\Entity

25
Comment organiser mon CRUD Form ?

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Doctrine\Persistence\ManagerRegistry; class ArticleController extends AbstractController { #[Route

0
problème JWT - swagger

Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto' App\Entity\User: 'auto' enable_authenticator_manager: true # https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider providers: # used to reload user from session & other features (e.g. switch_user

0