Skip to content

Commit

Permalink
bug #39932 [Console] [Command] Fix Closure code binding when it is a …
Browse files Browse the repository at this point in the history
…static anonymous function (fancyweb)

This PR was merged into the 4.4 branch.

Discussion
----------

[Console] [Command] Fix Closure code binding when it is a static anonymous function

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

I'm building a single command application and I did:
```php
->setCode(static function (InputInterface $input, OutputInterface $output): void {
    // my code
})
```
and it results in a warning `Cannot bind an instance to a static closure` + an exception `You must override the execute() method in the concrete command class.` I guess we should silently fail here if the Closure is not bindable.

Commits
-------

18d426871e [Console][Command] Fix Closure code binding when it is a static anonymous function
  • Loading branch information
chalasr committed Jan 22, 2021
2 parents ed39fc8 + 30830fe commit 492097a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Command/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,14 @@ public function setCode(callable $code)
if ($code instanceof \Closure) {
$r = new \ReflectionFunction($code);
if (null === $r->getClosureThis()) {
$code = \Closure::bind($code, $this);
set_error_handler(static function () {});
try {
if ($c = \Closure::bind($code, $this)) {
$code = $c;
}
} finally {
restore_error_handler();
}
}
}

Expand Down
12 changes: 12 additions & 0 deletions Tests/Command/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,18 @@ public function callableMethodCommand(InputInterface $input, OutputInterface $ou
{
$output->writeln('from the code...');
}

public function testSetCodeWithStaticAnonymousFunction()
{
$command = new \TestCommand();
$command->setCode(static function (InputInterface $input, OutputInterface $output) {
$output->writeln(isset($this) ? 'bound' : 'not bound');
});
$tester = new CommandTester($command);
$tester->execute([]);

$this->assertEquals('interact called'.\PHP_EOL.'not bound'.\PHP_EOL, $tester->getDisplay());
}
}

// In order to get an unbound closure, we should create it outside a class
Expand Down

0 comments on commit 492097a

Please sign in to comment.