mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
211 B
211 B
OverriddenMethodAccess
Emitted when a method is less accessible than its parent
<?php
class A {
public function foo() : void {}
}
class B extends A {
protected function foo() : void {}
}