chriskaya
chriskaya
My PR having been rejected by @dmaicher for reasons I totally understand, I'm now using a custom phpunit extension built on top of doctrine-test-bundle. If you need this, you may...
Hi all I'm currently facing the same issue, for which I'm simply disabling the feature for the class (see #182 ) A way to make it work would be using...
My PR having been rejected by @dmaicher for reasons I totally understand, I'm now using a custom phpunit extension built on top of doctrine-test-bundle. If you need this, you may...
@Sengorius same here My `composer.json`: ``` "require": { "php": "^7.1.3", "ext-iconv": "*", "friendsofsymfony/oauth-server-bundle": "dev-master", "friendsofsymfony/rest-bundle": "^2.3", "jms/serializer-bundle": "^2.3", "symfony/console": "^4.0", "symfony/flex": "^1.0", "symfony/form": "^4.0", "symfony/framework-bundle": "^4.0", "symfony/lts": "^4@dev", "symfony/orm-pack": "^1.0",...
@SebScoFr as you can see above, I already had symfony/templating :/
@Luitame for me `composer require templating` did nothing :/ **EDIT:** my bad, I read too quickly ^^ Unfortunately `composer require template` didn't fix it either, I still need to add...
For people like me having the same issue (123 becomes 1.23) and arriving here: Instead of using `fixedDecimalLength`, you just need to use [`decimalScale`](https://github.com/cchanxzy/react-currency-input-field#decimal-scale-and-decimals-limit)
+1 it seems to me that we should be able to have null as a default value. Make a lot more sense to me than ''
Yes I'm starting to think there is something wrong in my conf... I posted that here because switching to master caused this change in my documentation, and if I comment...
No, here's the full annotation: ``` /** * Creates a transaction * * @SWG\Parameter( * name="transaction", * in="body", * description="All fields are mandatory.", * @Model(type=TransactionCreateType::class) * ) * * @SWG\Parameter(...