Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 216 Bytes

InaccessibleProperty.md

File metadata and controls

13 lines (10 loc) · 216 Bytes

InaccessibleProperty

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

<?php

class A {
    /** @return string */
    protected $foo;
}
echo (new A)->foo;