Erreur "EmptyNode cannot have children" dans EasyAdmin 4.24
tzen,

Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; #[AdminDashboard(routePath: '/admin', routeName: 'admin')] class DashboardController extends AbstractDashboardController { public function index(): Response { //return parent::index(); //Affichage de l'admin

3
Tuto obsolète ?

symfony n'était pas obsolète car symfony 3 est sorti ? Je souhaiterais me mettre a symfony car des amis veulent faire un projet en symfony et je veux les rejoindre

1
Pesonnalisé le select d'un form

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Doctrine\ORM\EntityRepository; use Symfony\Component\DependencyInjection\ContainerInterface as Container; class CompetenceType extends AbstractType { public

4
Security : authentification impossible

Symfony\Component\Routing\Annotation\Route; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\Security\Http\Authentication\AuthenticationUtils; class SecurityController extends AbstractController { /** * @Route("/login", name="login") */ public function login(AuthenticationUtils

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
Bundle de traduction simple & efficace

Symfony 4](https://github.com/weglot/translate-bundle-example-sf4) - [Symfony 3](https://github.com/weglot/translate-bundle-example-sf3) - [Symfony 2](https://github.com/weglot/translate-bundle-example-sf2) Vous pouvez me contacter par [notre support](mailto:support@weglot.com), je m'occuperai de vos messages

0
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
un fatal error avec FrameWork silex

Symfony\Bridge\Twig\Extension\FormExtension::__construct() must be an instance of Symfony\Bridge\Twig\Form\TwigRendererInterface, instance of Symfony\Component\Form\FormRenderer given, called in C:\wamp64\www\stpoSilex\vendor

14
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
Class does not exist sous Linux. SF 2.4

Symfony Standard Edition\" distribution", "extra": { "branch-alias": { "dev-master": "2.4-dev" }, "incenteev-parameters": { "file": "apps/config/parameters.yml" }, "symfony-app-dir": "apps/weby", "symfony-web-dir": "web/forum" }, "license": "MIT", "minimum-stability": "alpha", "name": "symfony/framework-standard-edition

1