wiki.techinc.nl/tests/phpunit/includes/debug/TestDeprecatedSubclass.php
Gergő Tisza 4aedefdbfd
Add helper trait for deprecating properties
Change-Id: I83e6ee4e8eedd49acef2b5d92132d37af715bff3
2018-07-18 15:15:46 +02:00

21 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;
}
}