You are here

class ParentClassWithProtectedAttributes in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/tests/_files/ClassWithNonPublicAttributes.php \ParentClassWithProtectedAttributes

Hierarchy

Expanded class hierarchy of ParentClassWithProtectedAttributes

File

vendor/phpunit/phpunit/tests/_files/ClassWithNonPublicAttributes.php, line 8

View source
class ParentClassWithProtectedAttributes extends ParentClassWithPrivateAttributes {
  protected static $protectedStaticParentAttribute = 'foo';
  protected $protectedParentAttribute = 'bar';

}

Members