webDEVILopers
webDEVILopers
Could you give an example of how to get my custom form working without injecting? Because ``` xml ``` causes the constructor to fail: **Argument 1 passed to Mremi\ContactBundle\Form\Type\ContactType::__construct() must...
Sorry @mremi , I still don't get it. Could you post me the service example I have to use in order to use my own form class and the config...
Same problem here with the following mapping: ```xml ``` Document: ```php use Ramsey\Uuid\Uuid; $this->id = Uuid::uuid4(); ```
Having the same problem with MongoChef: **bytes.length != 16**. A general driver / BSON problem?
I checked our collections with this plugin and MongoChef on our production servers too - same problem. It seems to platform / driver independent. The problem is the BinData for...
Thanks @jmikola for the update! What does this mean for my UUID generation? ```php use Ramsey\Uuid\Uuid; $this->id = Uuid::uuid4(); ``` Any changes I have to make here or do I...
Can I help you w/ any configuration details on our PHP7 servers @ramsey ? The problem we are currently facing is that we have no idea how to update the...
Sorry for the late response @ramsey . I could now successfully use the suggestion by @jmikola as workaround. My value objects hold an `id` which holds the `UUID` generated with...
Just took a look at my collection via RoboMongo and recognized the `UUID` is shown as `LUUID`:  Never recognized the Legacy UUID before.
Just found this @ramsey by @nguyenquyhy: - https://www.nguyenquyhy.com/2016/02/migrating-legacy-uuid-of-mongodb-to-standard-uuid/ The legacy UUID comes from the C# driver: - http://3t.io/blog/best-practices-uuid-mongodb/ Can anyone tell me where to exactely change the configuration of the...