summaryrefslogtreecommitdiff
path: root/tests/phpunit/data/helpers/WellProtectedClass.php
blob: 99c7f642f245e2fa99379544d1b905873174a7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

class WellProtectedClass {
	protected $property;

	public function __construct() {
		$this->property = 1;
	}

	protected function incrementPropertyValue() {
		$this->property++;
	}

	public function getProperty() {
		return $this->property;
	}

	protected function whatSecondArg( $a, $b = false ) {
		return $b;
	}
}