-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Console] Add support for invokable commands and input attributes #20553
Comments
needs to be taken into account when tackling this: |
Until the documentation is written, is there an example of a trivial command using input attributes? Thx. |
@tacman You can find one in the code PR: symfony/symfony#59340 |
Here's a working example: symfony new --version=next --webapp test-console7.3 && cd test-console7.3
bin/console make:command lucky:number
cat > src/Command/LuckyNumberCommand.php <<'END'
<?php
namespace App\Command;
use Symfony\Component\Console\Attribute\Argument;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Attribute\Option;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Style\SymfonyStyle;
#[AsCommand(name: 'lucky:number')]
class LuckyNumberCommand extends Command
{
public function __construct(
)
{
parent::__construct();
}
public function __invoke(SymfonyStyle $io,
#[Argument] string $name,
#[Option] bool $formal=true): void
{
$io->title(sprintf('%s %s!', $formal ? 'Hello' : 'Hey', ucfirst($name)));
$io->success(sprintf('Today\'s Lucky Number: %d', rand(0, 400)));
}
}
END
bin/console lucky:number bob |
I've started looking into this and have a question: should we replace the old signature everywhere or just add a new section for the new one? |
I would just add a new one |
I think the new attribute approach will be the new standard right ? Newcomers to symfony shouldn't see it first ? (to see how powerfull is it) |
I’d go with @alamirault’s view on this, but let’s wait a bit to hear other opinions. |
It is not feature complete now compared to the old way, so I would still propose the old version first. @chalasr what do you think? |
As a newcomer, I'd prefer to start learning from simple examples and basic features (which is exactly what the new version offers), then once I'm comfortable, I can extend the I think this is a great opportunity to enhance the doc around commands and adopt an incremental learning approach. |
The invokable approach improves a lot both DX and implementations’ design so I’d make it first-class citizen in docs. Of course regular commands and their specifics should keep being documented as it’s what people are using today and possibly for long. |
Love this feature, amazing work @yceruto 👏 @chalasr thanks for sharing your slides, that got me into this :) FYI, I'm working on @rectorphp rule, so people can use the day Symfony 7.3 is out: It's WIP, so any documentation PR would be helpful to understand the new concept 🙏 |
Also #20838 |
We created this issue to not forget to document this new feature. We would really appreciate if you can help us with this task. If you are not sure how to do it, please ask us and we will help you.
To fix this issue, please create a PR against the 7.3 branch in the symfony-docs repository.
Thank you! 😃
The text was updated successfully, but these errors were encountered: