mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 10:17:33 +01:00
24 lines
395 B
Markdown
24 lines
395 B
Markdown
# InternalClass
|
|
|
|
Emitted when attempting to access a class marked as internal an unrelated namespace or class, or attempting
|
|
to access a class marked as psalm-internal to a different namespace.
|
|
|
|
```php
|
|
<?php
|
|
|
|
namespace A {
|
|
/**
|
|
* @internal
|
|
*/
|
|
class Foo { }
|
|
}
|
|
|
|
namespace B {
|
|
class Bat {
|
|
public function batBat() {
|
|
$a = new \A\Foo();
|
|
}
|
|
}
|
|
}
|
|
```
|