Bram Van der Sype
Bram Van der Sype
@frankdejonge I just noticed how you circumvented the whole "`isNull`returns string" thing in the `FieldIsNotNull` test: ```php return $expr->andX($expr->isNotNull("{$rootAlias}.{$this->field}")); ``` So I could either change that test to return the...
Just to confirm, I am using `doctrine/dbal`. This is my bootstrap file: ```php
Just chiming in, came to this issue after running into a race condition. I was optimistically updating state and navigating away from the page to an updated page slug, but...
Very interested in seeing this merged as well.
Edit: just saw https://github.com/devrnt/react-use-wizard/pull/79, throwing an Exception solves this use case, docs weren't super clear on that for me. Ran into the same issue. We have an async call happening...
What does `http://example.com/en/` do? 404 error or a redirect to `http://example.com/`? The former would mean you need a listener (sorta the reverse of the LocaleChoosingListener for the prefix strategy). The...
Well, as I said: create a listener. Have a look at the [LocaleChoosingListener](https://github.com/schmittjoh/JMSI18nRoutingBundle/blob/master/EventListener/LocaleChoosingListener.php), create a similar one that will check if the first bit of the path is the default...