You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
603 B
39 lines
603 B
<?php
|
|
namespace Foo;
|
|
|
|
class CoveredParentClass
|
|
{
|
|
private function privateMethod()
|
|
{
|
|
}
|
|
|
|
protected function protectedMethod()
|
|
{
|
|
$this->privateMethod();
|
|
}
|
|
|
|
public function publicMethod()
|
|
{
|
|
$this->protectedMethod();
|
|
}
|
|
}
|
|
|
|
class CoveredClass extends CoveredParentClass
|
|
{
|
|
private function privateMethod()
|
|
{
|
|
}
|
|
|
|
protected function protectedMethod()
|
|
{
|
|
parent::protectedMethod();
|
|
$this->privateMethod();
|
|
}
|
|
|
|
public function publicMethod()
|
|
{
|
|
parent::publicMethod();
|
|
$this->protectedMethod();
|
|
}
|
|
}
|