mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 18:48:03 +01:00
470 B
470 B
InternalMethod
Emitted when attempting to access a method marked as internal an unrelated namespace or class, or attempting to access a method marked as psalm-internal to a different namespace.
<?php
namespace A {
class Foo {
/**
* @internal
*/
public static function barBar(): void {
}
}
}
namespace B {
class Bat {
public function batBat() {
\A\Foo::barBar();
}
}
}