2018-07-11 17:34:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class TestDeprecatedSubclass extends TestDeprecatedClass {
|
|
|
|
|
|
2019-04-19 07:36:33 +00:00
|
|
|
private $subclassPrivateNondeprecated = 1;
|
|
|
|
|
|
2018-07-11 17:34:26 +00:00
|
|
|
public function getDeprecatedPrivateParentProperty() {
|
|
|
|
|
return $this->privateDeprecated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setDeprecatedPrivateParentProperty( $value ) {
|
|
|
|
|
$this->privateDeprecated = $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getNondeprecatedPrivateParentProperty() {
|
|
|
|
|
return $this->privateNonDeprecated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setNondeprecatedPrivateParentProperty( $value ) {
|
|
|
|
|
$this->privateNonDeprecated = $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|