wiki.techinc.nl/tests/phpunit/includes/debug/TestDeprecatedSubclass.php

24 lines
526 B
PHP
Raw Normal View History

<?php
class TestDeprecatedSubclass extends TestDeprecatedClass {
private $subclassPrivateNondeprecated = 1;
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;
}
}