-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ef4883
commit d7579c4
Showing
4 changed files
with
157 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php // lint >= 8.0 | ||
|
||
namespace PureConstructor; | ||
|
||
class Foo | ||
{ | ||
|
||
private string $prop; | ||
|
||
public static $staticProp = 1; | ||
|
||
/** @phpstan-pure */ | ||
public function __construct( | ||
public int $test, | ||
string $prop, | ||
) | ||
{ | ||
$this->prop = $prop; | ||
self::$staticProp++; | ||
} | ||
|
||
} | ||
|
||
class Bar | ||
{ | ||
|
||
private string $prop; | ||
|
||
/** @phpstan-impure */ | ||
public function __construct( | ||
public int $test, | ||
string $prop, | ||
) | ||
{ | ||
$this->prop = $prop; | ||
} | ||
|
||
} |
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