TestDeprecatedSubclass.php 481 B

12345678910111213141516171819202122
  1. <?php
  2. class TestDeprecatedSubclass extends TestDeprecatedClass {
  3. public function getDeprecatedPrivateParentProperty() {
  4. return $this->privateDeprecated;
  5. }
  6. public function setDeprecatedPrivateParentProperty( $value ) {
  7. $this->privateDeprecated = $value;
  8. }
  9. public function getNondeprecatedPrivateParentProperty() {
  10. return $this->privateNonDeprecated;
  11. }
  12. public function setNondeprecatedPrivateParentProperty( $value ) {
  13. $this->privateNonDeprecated = $value;
  14. }
  15. }