Skip to content

2.64.0

Compare
Choose a tag to compare
@kylekatarnls kylekatarnls released this 26 Nov 17:38
· 902 commits to master since this release
8895464

Complete commits list: 2.63.0...2.64.0

Summary:

⚠️ Breaking change

  • To support named parameters in magic calls which is now a standard feature of PHP 8, we had to change the output of passing explicitly null in add/sub methods (addMonths, subDays, addSeconds, etc.) For instance addMonths(null) now adds 0 months while it previously added 1 month. addMonths() still add 1 month. Note that both usages are strongly discouraged, it's highly recommended to always pass a numeric value to those methods explicitly to have unambiguous expectations.

New Contributors