Mathieu
Mathieu
I investigated this some times ago and it felt like it would be complicated to add to the core. On the other hand, one could implement its own services to...
@Philosoft it seems you use the term “query” too broadly: in CQS terminology your `DeleteProductQuery` would probably be a command. Also your example does not handle missing keys (which would...
I guess this comes from https://github.com/symfony/symfony/blob/e54dd3818dc5e5012efc439b238e4f7539804e6a/src/Symfony/Component/Form/Extension/Core/DataTransformer/ValueToDuplicatesTransformer.php#L71 Sadly I don’t think data transformers can access form options :grimacing:
:+1: @kriswallsmith I really need this for work, if you don't plan to implement it can you suggest a workaround? Thanks!
I forgot to tell I'm using Twig tags, I don't know how I'm supposed to use your script :disappointed:
I have one global less file and one more per view and all these use a variable definitions less file. As this issue isn't resolved I have to use `@import`...
> I want to try to maintain the same version number as Google's libphonenumber Do you mean you cannot tag your own releases? Anyways I can provide a PR in...
If `giggsey/locale` is only suggested then it should be used if the user requested it. composer.json would look like this ```diff "require": { "php": ">=5.3.2", "ext-mbstring": "*", - "giggsey/locale": "^1.2"...
I think it's perfectly fine. The only case an exception would be thrown is if both intl and `giggsey/locale` are missing so the message would be something like "The intl...
A runtime exception isn't a bad thing. Look at [commerceguys/addressing](https://github.com/commerceguys/addressing/blob/v1.0.0-beta4/src/Country/CountryRepository.php#L39) for example. This is the best way to handle this type of situation.