| 1 | <?php |
||
| 10 | class OtherObjectAccessClass |
||
| 11 | { |
||
| 12 | private $privateProperty = 'privateProperty'; |
||
| 13 | |||
| 14 | protected $protectedProperty = 'protectedProperty'; |
||
| 15 | |||
| 16 | public $publicProperty = 'publicProperty'; |
||
| 17 | |||
| 18 | public function getPrivateProperty(self $other) : string |
||
| 22 | |||
| 23 | public function getProtectedProperty(self $other) : string |
||
| 27 | |||
| 28 | public function getPublicProperty(self $other) : string |
||
| 32 | } |
||
| 33 |