mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
35 lines
567 B
Markdown
35 lines
567 B
Markdown
# IfThisIsMismatch
|
|
|
|
Emitted when the type in `@psalm-if-this-is` annotation cannot be contained by the object's actual type.
|
|
|
|
```php
|
|
<?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();
|
|
``` |