Merge "Use a faster 7z command line by default"
[lhc/web/wiklou.git] / tests / phpunit / data / helpers / WellProtectedClass.php
1 <?php
2
3 class WellProtectedClass {
4 protected $property;
5
6 public function __construct() {
7 $this->property = 1;
8 }
9
10 protected function incrementPropertyValue() {
11 $this->property++;
12 }
13
14 public function getProperty() {
15 return $this->property;
16 }
17
18 protected function whatSecondArg( $a, $b = false ) {
19 return $b;
20 }
21 }