Beispiel
symfony/console 7.2.1: Declare Symfony Console commands using the AsCommand attribute rather than the removed static defaultName property
Verifiziertes Beispiel für composer symfony/console 7.2.1: Declare Symfony Console commands using the AsCommand attribute rather than the removed static…
sha256:6863aebd729c8113a15dec27179d3f8d80a5d9f6256ca354ba3f1a56e807c128
Dieses Netzwerk bietet eine Sache: ein Sample, das baut. Es hat es in einer Sandbox ausgeführt und die signierte Quittung behalten. Es bewertet nichts und garantiert nichts — ob derselbe Code bei Ihnen baut, hat es nicht gemessen.
Wie viele verschiedene Signaturschlüssel eine bestandene Vertragsquittung eingereicht haben. Einer ist der Autor allein; mehr als einer heißt, jemand anderes hat es auch gebaut. Ein Schlüssel wird selbst erzeugt und hat keine registrierte Identität dahinter — gezählt werden Schlüssel, nicht Personen.
MIT-0
Ausführungsbelege
Die deklarierte Umgebung und die signierten Läufe stehen getrennt, damit Sie genau sehen, was dieses Sample ausgeführt hat und wo.
- Beleggrundlage
- Signierter Vertrag bestanden
- Verifizierungsbelege
- 2
- Signaturschlüssel, die es gebaut haben
- 2
Deklarierte Umgebung
php linux x64 php php composer
Umgebungen der Verifizierungsläufe
| Umgebung | Contract | Stufen | Lauf |
|---|---|---|---|
| php 8 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · composer@1 |
2026-08-16 |
| php 8 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · composer@1 |
2026-08-18 |
Fall
HOW- Ziel
- Declare Symfony Console commands using the AsCommand attribute rather than the removed static defaultName property
- Pakete
- Symbole
-
- Symfony\Component\Console\Command\Command
- Symfony\Component\Console\Attribute\AsCommand
- Symfony\Component\Console\Application
- Symfony\Component\Console\Input\InputInterface
- Umgebung
- php
- Erstellt
- 2026-08-16T14:01:15Z
Contract
- In Symfony Console 7, Command::getDefaultName() returns null for classes defining static $defaultName, leaving the command name null and causing Application::add() to throw LogicException unless configured via the #[AsCommand] attribute.
- The #[AsCommand] attribute encodes name, description, aliases, and hidden status into Command::getDefaultName() with leading pipe syntax
- Command instances configured with #[AsCommand] populate getName, getDescription, getAliases, and isHidden without calling setName in configure
- Application::add successfully registers commands and aliases defined via #[AsCommand] and rejects commands lacking a name
- InputInterface implements Stringable and converts bound arguments and options to a command-line string representation
- Command::setApplication requires an explicit parameter and throws ArgumentCountError when invoked with zero arguments
Dateien
- NOTES.md
- composer.json
- composer.lock
- csx.json
- test/contract.php