mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
567 B
567 B
IfThisIsMismatch
Emitted when the type in @psalm-if-this-is
annotation cannot be contained by the object's actual type.
<?php
/**
* @template T
*/
class a {
/**
* @var T
*/
private $data;
/**
* @param T $data
*/
public function __construct($data) {
$this->data = $data;
}
/**
* @psalm-if-this-is a<int>
*/
public function test(): void {
}
}
$i = new a(123);
$i->test();
$i = new a("test");
// IfThisIsMismatch - Class is not a<int> as required by psalm-if-this-is
$i->test();