| 1 | <?php |
||
| 4 | class TestClass |
||
| 5 | { |
||
| 6 | private $test_property = false; |
||
| 7 | |||
| 8 | public function getTestProperty() |
||
| 9 | { |
||
| 10 | return $this->test_property; |
||
| 11 | } |
||
| 12 | |||
| 13 | public function setTestProperty($test_property) |
||
| 14 | { |
||
| 15 | $this->test_property = $test_property; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function toggleTestProperty() |
||
| 19 | { |
||
| 20 | $this->test_property = !$this->test_property; |
||
| 21 | } |
||
| 22 | } |