I want to be able to inject into any method/function a specified number of arguments ``` php <?php /** * @provider providerFunction */ function testF($x) { } function providerFunction() { return [1, 2, 3]; } ``` Would love if the "decorator" isn't required
I want to be able to inject into any method/function a specified number of arguments
Would love if the "decorator" isn't required