22 lines
481 B
PHP
22 lines
481 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class TestDeprecatedSubclass extends TestDeprecatedClass {
|
||
|
|
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|