Roni Saha

Results 24 comments of Roni Saha

The bundle is not tightly coupled with Doctrine. Could you please provide your use case.

You can add as many row as you need in your audit entity. And use pre-persist listener to filled the data like [this](https://github.com/xiidea/EasyAuditBundle/blob/master/Resources/doc/pre-persist-listener.md) Or you can use your own entity...

You can check sample implementation to store the changed data. You can create your own entity event resolver following that sample.

The class definition was not the reason for previous error. The previous error happen if there is problem in yaml formating. The class namespace should use \ instead of /....

Do you have sample project that i can check? Another thing, if you are using autowire configuration with latest version of symfony, you may need to add `public: true` parameter...

Check the code [here](https://github.com/xiidea/EasyAuditBundle/blob/master/Resolver/EntityEventResolver.php#L83). By calling this function you can get the change set. And in the [sample event resolver you can see](https://gist.github.com/ronisaha/ce070f32575e15283af5#file-entityeventresolver-php-L34-L37) the exta fields. you have to add...

On create operation there is no change set, the full object data is new. if you like to store that also you can store the full data by accessing the...

Its nothing to do with symfony or this library, you can store serialize string of the entity object. you can implement your serialize method, __toString method, or [jms serializer](https://jmsyst.com/libs/serializer) library...

Hi @pribeirojtm , I think there is no problem using php serialize for change set. even the [example](https://gist.github.com/ronisaha/ce070f32575e15283af5#file-entityeventresolver-php-L76) i've provided used serialize function to convert change set to string. But...

Hi @pribeirojtm , Could you please create another issue with the delete functionality. I'll try to look into that. It would be helpful if you could provide a sample code...