Ben Ramsey
Ben Ramsey
Can you show an example of your code?
Without seeing your full controller code, it's hard to tell what's missing. It sounds like you haven't defined the `$request` parameter in your controller action's method signature. This might help......
I think the best approach would be to override the `map()` method on the `Set` class, rather than introducing the protected `$collection` property. That said, `map()` returns a `CollectionInterface`. It's...
> we would simply ensure the correct behavior Is the correct behavior for the map function to always return the same type of collection?
Sorry for the delay. I've been dealing with some rough issues in my personal life, most notably, I'm unemployed at the moment, so every waking hour is spent job-searching, and...
Thank you for contributing! 🎉
1. Are these UUIDs all generated on the same machine? Are they generated within the same process? 2. Are you able to consistently reproduce this issue with a short snippet...
@rogervila Thanks for the PR. Unfortunately, I'm unemployed without any income, and I'm spending every waking minute on job searching, so I'll be unable to give this much attention until...
Can you provide some more details on when a user might use `fromStrictString()` instead of `fromString()`? I've read #531, but it sounds like an application-specific or domain-specific problem, rather than...
The validator expects the UUID to be formatted as a UUID string (including dashes): https://github.com/ramsey/uuid/blob/758682d84769871f3808d4fb1f64d7d2350175a8/src/Validator/GenericValidator.php#L32 While the `fromString()` method (by default) uses `StringCodec::getBytes()` to parse the string into bytes, and...