| 1 | <?php |
||
| 16 | class DummyObject |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $property1 = ''; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $secret = 'secret string'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | public $property2 = ''; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $property3 = ''; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | public $text = ''; |
||
| 42 | |||
| 43 | public function getProperty1() |
||
| 44 | { |
||
| 45 | return $this->property1; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function setProperty1($property1) |
||
| 49 | { |
||
| 50 | $this->property1 = $property1; |
||
| 51 | } |
||
| 52 | } |
||
| 53 |