Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 207 Bytes

InaccessibleMethod.md

File metadata and controls

12 lines (9 loc) · 207 Bytes

InaccessibleMethod

Emitted when attempting to access a protected/private method from outside its available scope

<?php

class A {
    protected function foo() : void {}
}
echo (new A)->foo();