-
Notifications
You must be signed in to change notification settings - Fork 504
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
Fix analysis on array_map
with named arguments
#3763
base: 2.1.x
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1936,4 +1936,15 @@ public function testBug12051(): void | |
$this->analyse([__DIR__ . '/data/bug-12051.php'], []); | ||
} | ||
|
||
public function testBug12317(): void | ||
{ | ||
if (PHP_VERSION_ID < 80000) { | ||
$this->markTestSkipped('Test requires PHP 8.0.'); | ||
} | ||
|
||
$this->checkExplicitMixed = true; | ||
$this->checkImplicitMixed = true; | ||
$this->analyse([__DIR__ . '/data/bug-12317.php'], []); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be a good idea to add an example that actually produces an error, to verify the args still look like they should. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for your suggestion. I added examples and fixed a bug caught by them. |
||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace Bug12317; | ||
|
||
class Uuid { | ||
public function __construct(public string $uuid) {} | ||
public function __toString() { return $this->uuid; } | ||
} | ||
|
||
class HelloWorld | ||
{ | ||
/** | ||
* @param list<Uuid> $arr | ||
*/ | ||
public function sayHello(array $arr): void | ||
{ | ||
$callback = static fn(Uuid $uuid): string => (string) $uuid; | ||
|
||
array_map(array: $arr, callback: $callback); | ||
array_map(callback: $callback, array: $arr); | ||
array_map($callback, $arr); | ||
array_map($callback, array: $arr); | ||
array_map(static fn (Uuid $u1, Uuid $u2): string => (string) $u1, $arr, $arr); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea what's going on at this line. Please make the code easier to read.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made some refactors.