-
Notifications
You must be signed in to change notification settings - Fork 471
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NonexistentOffsetInArrayDimFetchCheck - be less strict about Benevole…
…ntUnionType
- Loading branch information
1 parent
b0cc11f
commit 2abb92e
Showing
3 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Bug5169; | ||
|
||
class HelloWorld | ||
{ | ||
/** | ||
* @param array<mixed> $configs | ||
* | ||
* @return array<mixed> | ||
*/ | ||
protected function merge(array $configs): array | ||
{ | ||
$result = []; | ||
foreach ($configs as $config) { | ||
$result += $config; | ||
|
||
foreach ($config as $name => $dto) { | ||
$result[$name] += $dto; | ||
} | ||
} | ||
|
||
return $result; | ||
} | ||
|
||
public function merge2($mixed): void | ||
{ | ||
$f = $mixed - $mixed; | ||
$f[$mixed] = true; | ||
} | ||
} |