OneupUploaderBundle upload picture but doesn't call EventListener
问题 I have this Bundle working on my Symfony2 app. Images are well uploaded, but the listener for persist the filename to the SQL table is not called on method onUpload. Is strange, because all looks to be in order... This is my services.yml services: luisma.upload_listener: class: "LuismaBundle\Services\UploadListener" arguments: [@doctrine] tags: - { name: 'kernel.event_listener', event: oneup_uploader.post_persist, method: onUpload } And this is my Listener: <?php namespace LuismaBundle