mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 18:48:03 +01:00
172 B
172 B
MissingDependency
Emitted when referencing a class that doesn’t exist
<?php
/**
* @psalm-suppress UndefinedClass
*/
class A extends B {}
$a = new A();