Frederik Bosch

Results 110 comments of Frederik Bosch
trafficstars

Why don't we merge the proposed code (after review) of @srjlewis, tag v6 beta 1, let people use that if they want to use PHP 8.4 from today? Investigate the...

So, we will work from this PR, remove psalm in 8.4 and now we are at it, I would also like to move the default PHP version for Psalm and...

Could you add a phpbench run to a new file bench.yml?

Great work, thanks @ruudk

I don't know if I like the feature itself nor the implemented solution. With regards to the implemented solution, I rather have zero checks in all methods than the current...

I dont understand any of your comments. Why not skipping currency check all together when the amount is zero, and make it a noop as suggested in the example above?

It might be okay to allow adding zero of any amount - I am not fully sure - but I am pretty convinced it's not a good idea to return...

@Ocramius do you mind if I ask your opinion on this one? The question basically is whether we want to allow the following. ```php Money::EUR(0)->add(Money::USD(1)); // Money::USD(1), no exception Money::EUR(1)->add(Money::USD(0));...

I can see that. Can't we then start with allowing zero of any currency in `Money::sum`, `Money::avg`, `Money::min` and `Money::max`? I still feel that we should not return a new...