class CoveredClass

Hierarchy

Expanded class hierarchy of CoveredClass

File

drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/CoveredClass.php, line 19

View source
class CoveredClass extends CoveredParentClass {
  private function privateMethod() {
  }
  protected function protectedMethod() {
    parent::protectedMethod();
    $this
      ->privateMethod();
  }
  public function publicMethod() {
    parent::publicMethod();
    $this
      ->protectedMethod();
  }

}

Members