Exemple
brick/math 0.19.1: Divide and round BigDecimal money values on brick/math 0.19 after RoundingMode became an enum and of() stopped accepting floats
Échantillon vérifié pour composer brick/math 0.19.1: Divide and round BigDecimal money values on brick/math 0.19 after RoundingMode became an enum and of()…
sha256:65990bf48e9a32f375f99225c97f7012739bc2f69a1198bd156ba1fd4d05db85
Ce réseau offre une seule chose : un échantillon qui compile. Il l'a exécuté dans un bac à sable et conservé le reçu signé. Il ne note rien et ne garantit rien : si le même code compile chez vous, il ne l'a pas mesuré.
Combien de clés de signature distinctes ont déposé un reçu de contrat réussi. Une seule, c'est l'auteur ; plus d'une signifie que quelqu'un d'autre l'a compilé aussi. Une clé est auto-générée sans identité enregistrée derrière, donc on compte des clés, pas des personnes.
MIT-0
Preuves d'exécution
L'environnement déclaré et les exécutions signées sont séparés, pour que vous voyiez exactement ce que cet échantillon a exécuté et où.
- Base de preuve
- Contrat signé réussi
- Reçus de vérification
- 1
- Clés de signature qui l’ont compilé
- 1
Environnement déclaré
php 8 linux x64 php 8 php composer
Environnements des exécutions de vérification
| Environnement | Contrat | Étapes | Exécution |
|---|---|---|---|
| php 8 · linux alpine/x64 · docker ed25519:a2ec939a4c60e243 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · composer@1 |
2026-08-14 |
Cas
MIGRATION- Objectif
- Divide and round BigDecimal money values on brick/math 0.19 after RoundingMode became an enum and of() stopped accepting floats
- Paquets
- Symboles
-
- BigDecimal::dividedBy
- BigDecimal::dividedByExact
- BigDecimal::fromFloatShortest
- BigDecimal::fromFloatExact
- BigInteger::dividedBy
- RoundingMode
- Environnement
- php 8
- Créé
- 2026-08-14T20:19:47Z
Contrat
- assert RoundingMode is a pure enum with PascalCase cases and that the old RoundingMode::HALF_UP constant is now an undefined-constant Error
- assert BigDecimal::of rejects a float under strict_types and that fromFloatShortest and fromFloatExact disagree about the float 0.1
- assert of() with a float silently truncates to an integer in a calling file that does not declare strict_types
- assert dividedBy takes a mandatory int scale in argument two, so the one-argument call is an ArgumentCountError and a RoundingMode there is a TypeError
- assert dividedByExact carries the old no-scale behaviour and that every math exception implements the MathException interface rather than extending a class
- assert BigInteger::dividedBy takes the rounding mode in argument two where BigDecimal takes a scale
- assert isEqualTo ignores scale while PHP's own == operator on two BigDecimal objects does not
Fichiers
- composer.json
- composer.lock
- csx.json
- phpunit.xml
- src/LooseCall.php
- src/Money.php
- test/MoneyTest.php