Alexandre Lemaire

Results 18 comments of Alexandre Lemaire

Similarly, I'd love to have a means to tell it not to use Safari's cookie jar. --no-cookies

Related, unrelated -- is the delay in seconds? -h only writes: ``` Web page functionality: --delay=DELAY delay between page load finishing and screenshot ``` Would be a kind specification! :)

@fabiang Thanks for the tip above, saved a ton of time digging in the code.

A+ on that last change, thanks for saving me some digging.

Hey! I wrote this mud for fun, but it's definitely got legs. I contributed to a C++ mud long ago (Duris/Sojourn/Basternae) - and wanted to see if the concept could...

Hello! The relationship on the User entity would look something like this: ``` /** * @ORM\OneToMany(targetEntity="CirclicalUser\Entity\UserApiToken", mappedBy="user", cascade={"all"}); */ private $api_tokens; ``` You would also likely build some getters/setters on...

Hey @CreativeNative! Wanted to check in to see if this helped! Cheers!

Validation depends on context. We have a large application that uses this lib, and we've extended the mapper to suit a multitude of interesting use cases, but validation can be...

Regarding your mapper error, the AbstractDoctrineMapper in this library would never be used directly. It is extended by your own mappers - check out AbstractDoctrineMapperFactory's canCreate method. You will see...

If you can share a rudimentary repo to reproduce the issue I’d gladly help out!