Merge "Segregate right to edit sitewide CSS/JS"
[lhc/web/wiklou.git] / tests / phpunit / includes / debug / TestDeprecatedSubclass.php
1 <?php
2
3 class TestDeprecatedSubclass extends TestDeprecatedClass {
4
5 public function getDeprecatedPrivateParentProperty() {
6 return $this->privateDeprecated;
7 }
8
9 public function setDeprecatedPrivateParentProperty( $value ) {
10 $this->privateDeprecated = $value;
11 }
12
13 public function getNondeprecatedPrivateParentProperty() {
14 return $this->privateNonDeprecated;
15 }
16
17 public function setNondeprecatedPrivateParentProperty( $value ) {
18 $this->privateNonDeprecated = $value;
19 }
20
21 }