mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
354 B
354 B
InvalidClass
Emitted when referencing a class with the wrong casing
<?php
class Foo {}
(new foo());
Could also be an issue in the namespace even if the class has the correct casing
<?php
namespace OneTwo {
class Three {}
}
namespace {
use Onetwo\Three;
// ^ ("t" instead of "T")
$three = new Three();
}