zenstruck / console-extra

A modular set of features to reduce configuration boilerplate for your Symfony commands.
MIT License
78 stars 3 forks source link

fix: autowiring non-service arguments #60

Closed kbond closed 8 months ago

kbond commented 8 months ago

Before this fix, the following didn't work:

public function __invoke(
    #[Autowire('%kernel.debug%')]
    bool $debug,
)