mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 10:17:33 +01:00
26 lines
470 B
Markdown
26 lines
470 B
Markdown
# 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
|
|
<?php
|
|
|
|
namespace A {
|
|
class Foo {
|
|
/**
|
|
* @internal
|
|
*/
|
|
public static function barBar(): void {
|
|
}
|
|
}
|
|
}
|
|
namespace B {
|
|
class Bat {
|
|
public function batBat() {
|
|
\A\Foo::barBar();
|
|
}
|
|
}
|
|
}
|
|
```
|