mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
34 lines
584 B
Markdown
34 lines
584 B
Markdown
|
# ConflictingReferenceConstraint
|
||
|
|
||
|
Emitted when a by-ref variable is set in two different branches of an if to different types.
|
||
|
|
||
|
```php
|
||
|
class A {
|
||
|
/** @var int */
|
||
|
private $foo;
|
||
|
|
||
|
public function __construct(int &$foo) {
|
||
|
$this->foo = &$foo;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class B {
|
||
|
/** @var string */
|
||
|
private $bar;
|
||
|
|
||
|
public function __construct(string &$bar) {
|
||
|
$this->bar = &$bar;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (rand(0, 1)) {
|
||
|
$v = 5;
|
||
|
$c = (new A($v)); // $v is constrained to an int
|
||
|
} else {
|
||
|
$v = "hello";
|
||
|
$c = (new B($v)); // $v is constrained to a string
|
||
|
}
|
||
|
|
||
|
$v = 8;
|
||
|
```
|