Merge "maintenance: Script to rename titles for Unicode uppercasing changes"
[lhc/web/wiklou.git] / tests / phpunit / includes / debug / TestDeprecatedSubclass.php
1 <?php
2
3 class TestDeprecatedSubclass extends TestDeprecatedClass {
4
5 private $subclassPrivateNondeprecated = 1;
6
7 public function getDeprecatedPrivateParentProperty() {
8 return $this->privateDeprecated;
9 }
10
11 public function setDeprecatedPrivateParentProperty( $value ) {
12 $this->privateDeprecated = $value;
13 }
14
15 public function getNondeprecatedPrivateParentProperty() {
16 return $this->privateNonDeprecated;
17 }
18
19 public function setNondeprecatedPrivateParentProperty( $value ) {
20 $this->privateNonDeprecated = $value;
21 }
22
23 }