- Get link
- X
- Other Apps
buka file projectName\config\services.yaml # add more service definitions when explicit configuration is needed # please note that last definitions always *replace* previous ones app.event.authentication_success_listener : class : App\EventListener\AuthenticationSuccessListener tags : - { name : kernel.event_listener, event : lexik_jwt_authentication.on_authentication_success, method : onAuthenticationSuccessResponse } arguments : $entityManager : '@doctrine.orm.entity_manager' Lalu tambahkan seperti diatas untuk bagian arguments nah selanjutnya buka file eventListener tambahkan sebagai berikut class AuthenticationSuccessListener { private $em ; public function __construct (EntityManager $entityManager ){ $this -> em = $entityManager ; } untuk pemakain kita tinggal panggil $this->em sekian kali ini