-
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.
PropertyReflectionFinder - fixed #2745
- Loading branch information
1 parent
2b0013f
commit d4bfc70
Showing
3 changed files
with
36 additions
and
4 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
26 changes: 26 additions & 0 deletions
26
tests/PHPStan/Analyser/data/property-assign-intersection-static-type-bug.php
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,26 @@ | ||
<?php | ||
|
||
namespace PropertyAssignIntersectionStaticTypeBug; | ||
|
||
abstract class Base | ||
{ | ||
/** @var string */ | ||
private $foo; | ||
|
||
public function __construct(string $foo) | ||
{ | ||
\assert($this instanceof Frontend || $this instanceof Backend); | ||
|
||
$this->foo = $foo; | ||
} | ||
} | ||
|
||
class Frontend extends Base | ||
{ | ||
|
||
} | ||
|
||
class Backend extends Base | ||
{ | ||
|
||
} |