Koen Punt
Koen Punt
Here you go: ``` Caused by: java.lang.IllegalStateException: Cannot set property name because no setter, no wither and it's not part of the persistence constructor public oopen.timemachine.entities.CustomerDetails(java.lang.String,java.lang.String,com.google.i18n.phonenumbers.Phonenumber$PhoneNumber,java.util.UUID,boolean,java.util.UUID,boolean) at org.springframework.data.mapping.model.InstantiationAwarePropertyAccessor.setProperty(InstantiationAwarePropertyAccessor.java:93) at org.springframework.data.mapping.model.ConvertingPropertyAccessor.setProperty(ConvertingPropertyAccessor.java:60)...
Just found out that it doesn't throw an exception when making the `CustomerDetails` entity a `data class`, but we're not sure what side effects that could have.
For completeness, the pair class implements an interface, and doesn't inherit from a class; ```kt data class CustomerDetailsPair( override val relationId: UUID, @Embedded.Empty override val entity: CustomerDetails, ) : EntityPair...
@mp911de I noticed you assigned yourself; do you maybe have an update regarding this?
Since bower is becoming obsolete I would not recommend using that as a dependency manager. That said, the easiest is probably to download the latest release from the [releases page](https://github.com/koenpunt/chosen/releases),...
`git push` is a git internal, `git deploy *` are custom methods.
It's not for nothing I labeled this PR "work in progress" ;)
And I'm not a fan of using `sleep` in tests. It's probably faster to set the date explicitly (untested): ``` php $author = new Author(); $updated_at = $author->updated_at = new...
What problem does this solve? Also please add a test that clarifies the problem you're experiencing.
Like I said before, what problem does it solve, apart from the strict comparison? Also bugging maintainers like this most of the time results in the adverse effect.