Envoyer par mail un lien d'activation du compte utilisateur

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; //use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; use Symfony\Component

0
Problème avec une méthode getLetter "non définie" Doctrine/ORM/Query

Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\DependencyInjection\ContainerInterface; class CalculNutriscoreCommand

1
Symfony2 Crud Problème envoi d'un formulaire

Symfony\Component\HttpFoundation\Request; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; use MonBundle

2
SQLSTATE[42000]: Syntax error or access violation: 1064

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Bridge\Doctrine\Form\Type\EntityType; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\Form\Extension\Core\Type\TextType; class

2
Condition pour faire apparetre les champs twigs

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; class SocieteType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('adresse') ->add('ville

1
crud

Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Request; /** * Commande controller. * */ class CommandeController extends Controller { /** * Lists all commande entities. * */ public function indexAction() { $em = $this->getDoctrine()->getManager(); $commandes = $em->getRepository

2
Probleme d'affichage

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": false, "require": "6.1.*" } }, "require-dev": { "phpunit/phpunit

0
Utlisation knpSnappy

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\HttpFoundation\File\Exception\FileException; use Symfony

0
[résolu] Création d'un type form personnalisé

Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader; use Symfony\Component\Form\Exception\UnexpectedTypeException; use Symfony\Component\OptionsResolver\Options; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Bridge\Doctrine\Form\Type\EntityType; class

1
formulaire synfony 3

Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Session\Session; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Vendor\ConnectUsersBundle\Entity\Users; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony

3