1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/docs/running_psalm/issues/ExtensionRequirementViolation.md

21 lines
361 B
Markdown
Raw Normal View History

# ExtensionRequirementViolation
Emitted when a using class of a trait does not extend the class specified using `@psalm-require-extends`.
```php
<?php
class A { }
/**
* @psalm-require-extends A
*/
trait T { }
class B {
// ExtensionRequirementViolation is emitted, as T requires
// the using class B to extend A, which is not the case
use T;
}
```