Alexander Miertsch
Alexander Miertsch
new dev versions of event machine and skeleton released so we have a new base for further work. - [ ] Add JSON Schema title as summary - [ ]...
@enumag `unset($this->{$property})` is brilliant. Of course I thought about magic `__get` and `__set` but this hack did not come to mind. Also thought about a way to disable the mechanism...
I would not pass a mutable version of the object into the function. Are the properties of `ZipCodeState` mutable or immutable? Mixing both is confusing and could lead to new...
> I still don't like your usage of arrays though since IDE won't be able to suggest the keys. I use constants to get around both: typos and missing IDE...
Had this issue today, too. If the backend returns a 202 response Nginx does not add the header. So I've added a CORS middleware in the PHP backend which solved...
I can take a look
Details can be discussed as soon as someone wants to take over the exercise.
@shulard That's cool and if you get this feature in then you're the new prooph-do hero :1st_place_medal: First we need to think about the requirements. We should start as simple...
great. Option 2 is my favorite, too. @shulard Good point regarding 2FA. That is an interesting feature and a good exercise once we have the Identity aggregate. Side notes: I...
@oqq Good catch, so we need to switch the order? 1. `AddIdentityForNewUser` command (later we will also have a `AddIdentityForExistingUser` command). Then the Identity takes over the task to hash...