Jáchym Toušek

Results 257 comments of Jáchym Toušek

@CZechBoY No, that's not what @JanTvrdik meant. Only the configuration file for cleaner should be stored somewhere. That way you can figure out the changes in the configuration when you...

just ran into this as well... what's the current status? is it fixed in master already? if so, when can we expect a release?

The problem is that version is fetched from a different byte between the [Guid Fields](https://github.com/ramsey/uuid/blob/e5b3699bbe04e18794a3b6e6e1e0443a9742e4ad/src/Guid/Fields.php#L181) implementation and [normal Fields](https://github.com/ramsey/uuid/blob/e5b3699bbe04e18794a3b6e6e1e0443a9742e4ad/src/Rfc4122/Fields.php#L183) implementation. This difference is however not addressed in [UuidFactory](https://github.com/ramsey/uuid/blob/e5b3699bbe04e18794a3b6e6e1e0443a9742e4ad/src/UuidFactory.php#L477). As a...

I ran into this issue as well today while using Symfony, Doctrine and Postgres. The error was thrown when inserting a row into a table with `Ramsey\Uuid\Doctrine\UuidBinaryOrderedTimeType`. When I switched...

You don't need Laravel to reproduce it. You can just use Symfony + Doctrine + Postgres, define a doctrine entity with binary uuid field and try to insert something. I...

@ramsey Making framework-independent script is a little more complicated. Not sure when or if I'll have time for that.

In that case we just need to add `getBindingType` method to the binary types in ramsey/uuid-doctrine. https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Types/BinaryType.php#L74-L77 I will try to test it tomorrow and send a PR if it...

@mvrhov Yeah, I wrote the same thing [here](https://github.com/ramsey/uuid-doctrine/issues/47#issuecomment-342748828).

@ramsey It's not fixed. The bug just doesn't always appear, it's random. I posted more details in the separate issue: https://github.com/ramsey/uuid/issues/314#issuecomment-734339547