summaryrefslogtreecommitdiff
path: root/tests/phpunit/data/helpers/WellProtectedClass.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/data/helpers/WellProtectedClass.php')
-rw-r--r--tests/phpunit/data/helpers/WellProtectedClass.php29
1 files changed, 28 insertions, 1 deletions
diff --git a/tests/phpunit/data/helpers/WellProtectedClass.php b/tests/phpunit/data/helpers/WellProtectedClass.php
index 99c7f642..a45cfbbf 100644
--- a/tests/phpunit/data/helpers/WellProtectedClass.php
+++ b/tests/phpunit/data/helpers/WellProtectedClass.php
@@ -1,20 +1,47 @@
<?php
-class WellProtectedClass {
+class WellProtectedParentClass {
+ private $privateParentProperty;
+
+ public function __construct() {
+ $this->privateParentProperty = 9000;
+ }
+
+ private function incrementPrivateParentPropertyValue() {
+ $this->privateParentProperty++;
+ }
+
+ public function getPrivateParentProperty() {
+ return $this->privateParentProperty;
+ }
+}
+
+class WellProtectedClass extends WellProtectedParentClass {
protected $property;
+ private $privateProperty;
public function __construct() {
+ parent::__construct();
$this->property = 1;
+ $this->privateProperty = 42;
}
protected function incrementPropertyValue() {
$this->property++;
}
+ private function incrementPrivatePropertyValue() {
+ $this->privateProperty++;
+ }
+
public function getProperty() {
return $this->property;
}
+ public function getPrivateProperty() {
+ return $this->privateProperty;
+ }
+
protected function whatSecondArg( $a, $b = false ) {
return $b;
}