Skip to content
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

Open
chalasr opened this issue Jan 10, 2025 · 15 comments
Open

[Console] Add support for invokable commands and input attributes #20553

chalasr opened this issue Jan 10, 2025 · 15 comments
Labels
Milestone

Comments

@chalasr
Copy link
Member

chalasr commented Jan 10, 2025

Q A
Feature PR symfony/symfony#59340
PR author(s) @yceruto
Merged in 7.3

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! 😃

@chalasr
Copy link
Member Author

chalasr commented Jan 11, 2025

needs to be taken into account when tackling this:

@xabbuh xabbuh added this to the 7.3 milestone Jan 11, 2025
@chalasr
Copy link
Member Author

chalasr commented Jan 20, 2025

@yceruto
Copy link
Member

yceruto commented Jan 25, 2025

Also symfony/symfony#59565

@tacman
Copy link
Contributor

tacman commented Feb 13, 2025

Until the documentation is written, is there an example of a trivial command using input attributes? Thx.

@chalasr
Copy link
Member Author

chalasr commented Feb 13, 2025

@tacman You can find one in the code PR: symfony/symfony#59340

@tacman
Copy link
Contributor

tacman commented Feb 13, 2025

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

@yceruto
Copy link
Member

yceruto commented Mar 4, 2025

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?

@OskarStark
Copy link
Contributor

I would just add a new one

@alamirault
Copy link
Contributor

I think the new attribute approach will be the new standard right ?
(readonly and final classes, no inheritance, same DX than for controllers)

Newcomers to symfony shouldn't see it first ? (to see how powerfull is it)

@yceruto
Copy link
Member

yceruto commented Mar 19, 2025

I’d go with @alamirault’s view on this, but let’s wait a bit to hear other opinions.

@OskarStark
Copy link
Contributor

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?

@yceruto
Copy link
Member

yceruto commented Mar 19, 2025

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 Command class and explore advanced features like interact when I'm ready for more complexity.

I think this is a great opportunity to enhance the doc around commands and adopt an incremental learning approach.

@chalasr
Copy link
Member Author

chalasr commented Mar 19, 2025

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.

@TomasVotruba
Copy link

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:
rectorphp/rector-symfony#707

It's WIP, so any documentation PR would be helpful to understand the new concept 🙏

@yceruto
Copy link
Member

yceruto commented Mar 29, 2025

Also #20838

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

8 participants