-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
array_shift et al. have side effects
Closes phpstan/phpstan#8084
- Loading branch information
1 parent
50f2a08
commit 6276ce1
Showing
6 changed files
with
56 additions
and
0 deletions.
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
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,20 @@ | ||
<?php | ||
|
||
namespace Bug8084b; | ||
|
||
use Exception; | ||
use function array_shift; | ||
use function PHPStan\Testing\assertType; | ||
|
||
class Bug8084 | ||
{ | ||
/** | ||
* @param array{a: 0, b?: 1} $arr | ||
* @throws Exception | ||
*/ | ||
public function run(array $arr): void | ||
{ | ||
assertType('0', array_shift($arr) ?? throw new Exception()); | ||
assertType('1|null', array_shift($arr)); | ||
} | ||
} |
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,19 @@ | ||
<?php // lint >= 8.0 | ||
|
||
namespace Bug8084a; | ||
|
||
use Exception; | ||
use function array_shift; | ||
use function PHPStan\Testing\assertType; | ||
|
||
class Bug8084 | ||
{ | ||
/** | ||
* @param string[] $params | ||
*/ | ||
public function run(array $params): void | ||
{ | ||
$a = array_shift($params) ?? throw new Exception(); | ||
$b = array_shift($params) ?? "default_b"; | ||
} | ||
} |